diff --git a/3rdparty b/3rdparty index 63cb2847921d668c2b48b572872cfddbcf41bea4..a13af72fbe8983686fc47489a750e60319f68ac2 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 63cb2847921d668c2b48b572872cfddbcf41bea4 +Subproject commit a13af72fbe8983686fc47489a750e60319f68ac2 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1de46ac8b80acf0049dd0f107a807013a658acb7..3f3cf20e9a59c7bd44db857abae8bba8adf74bb2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,13 +3,20 @@ If you have questions about how to use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. ### Guidelines +* Please search the existing issues first, it's likely that your issue was already reported. * [Report the issue](https://github.com/owncloud/core/issues/new) using our [template][template], it includes all the informations we need to track down the issue. * This repository is *only* for issues within the ownCloud core code. Issues in other compontents should be reported in their own repositores: - [Android client](https://github.com/owncloud/android/issues) - [iOS client](https://github.com/owncloud/ios-issues/issues) - [Desktop client](https://github.com/owncloud/mirall/issues) - - [ownCloud apps](https://github.com/owncloud/apps/issues) (e.g. Calendar, Contacts...) -* Search the existing issues first, it's likely that your issue was already reported. + - Apps: + - [Bookmarks](https://github.com/owncloud/bookmarks/issues) + - [Calendar](https://github.com/owncloud/calendar/issues) + - [Mail](https://github.com/owncloud/mail/issues) + - [News](https://github.com/owncloud/news/issues) + - [Notes](https://github.com/owncloud/notes/issues) + - [Shorty](https://github.com/owncloud/shorty/issues) + - [other apps](https://github.com/owncloud/apps/issues) (e.g. Contacts, Pictures, Music, ...) If your issue appears to be a bug, and hasn't been reported, open a new issue. diff --git a/apps/files/ajax/delete.php b/apps/files/ajax/delete.php index da7e9d6b2aa2858b4be3e9db49ed09ab4fc19f2f..5f4856ec790a64f8dc52f6bb86b42266945afe5d 100644 --- a/apps/files/ajax/delete.php +++ b/apps/files/ajax/delete.php @@ -8,7 +8,7 @@ OCP\JSON::callCheck(); // Get data $dir = stripslashes($_POST["dir"]); -$files = isset($_POST["file"]) ? stripslashes($_POST["file"]) : stripslashes($_POST["files"]); +$files = isset($_POST["file"]) ? $_POST["file"] : $_POST["files"]; $files = json_decode($files); $filesWithError = ''; diff --git a/apps/files/ajax/upload.php b/apps/files/ajax/upload.php index b9eea2fea624fb8a720985e5f26c1295ecb64c3c..e1263744e1b454680347ab672f201c247701487e 100644 --- a/apps/files/ajax/upload.php +++ b/apps/files/ajax/upload.php @@ -71,6 +71,7 @@ if (strpos($dir, '..') === false) { 'size' => $meta['size'], 'id' => $meta['fileid'], 'name' => basename($target), + 'originalname'=>$files['name'][$i], 'uploadMaxFilesize' => $maxUploadFilesize, 'maxHumanFilesize' => $maxHumanFilesize ); diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 6535a9b7baa39023f8ed10278898aea778d8fd4e..703b1c7cb6cd3c235010c6707336f7f83dabfcde 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -12,3 +12,10 @@ OCP\App::addNavigationEntry( array( "id" => "files_index", "name" => $l->t("Files") )); OC_Search::registerProvider('OC_Search_Provider_File'); + +// cache hooks must be connected before all other apps. +// since 'files' is always loaded first the hooks need to be connected here +\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); +\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); +\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); +\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); \ No newline at end of file diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 4d2b16e6f1c2f4cefbbf04410e8678f5f7adeb68..ec323915b4431a6b67b979f0f2b863a39fc61557 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -45,7 +45,11 @@ } #uploadprogresswrapper { float: right; position: relative; } -#uploadprogresswrapper #uploadprogressbar { position:relative; display:inline-block; width:10em; height:1.5em; top:.4em; } +#uploadprogresswrapper #uploadprogressbar { + position:relative; float: right; + margin-left: 12px; width:10em; height:1.5em; top:.4em; + display:inline-block; +} /* FILE TABLE */ @@ -84,7 +88,7 @@ table td.filename input.filename { width:100%; cursor:text; } table td.filename a, table td.login, table td.logout, table td.download, table td.upload, table td.create, table td.delete { padding:.2em .5em .5em 0; } table td.filename .nametext, .uploadtext, .modified { float:left; padding:.3em 0; } /* TODO fix usability bug (accidental file/folder selection) */ -table td.filename .nametext { overflow:hidden; text-overflow:ellipsis; } +table td.filename .nametext { overflow:hidden; text-overflow:ellipsis; max-width:800px; } table td.filename .uploadtext { font-weight:normal; margin-left:.5em; } table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 1db54f45bb82839d86cc41ec6f68a16178de636f..b1e9a885063e735d1f394a0750c4922bce4ebbb7 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -88,17 +88,17 @@ var FileList={ $('#permissions').val() ); - FileList.insertElement(name, 'file', tr.attr('data-file',name)); - var row = $('tr').filterAttr('data-file',name); + FileList.insertElement(name, 'file', tr); if(loading){ - row.data('loading',true); + tr.data('loading',true); }else{ - row.find('td.filename').draggable(dragOptions); + tr.find('td.filename').draggable(dragOptions); } if (hidden) { - row.hide(); + tr.hide(); } - FileActions.display(row.find('td.filename')); + FileActions.display(tr.find('td.filename')); + return tr; }, addDir:function(name,size,lastModified,hidden){ @@ -113,13 +113,14 @@ var FileList={ ); FileList.insertElement(name,'dir',tr); - var row = $('tr').filterAttr('data-file',name); - row.find('td.filename').draggable(dragOptions); - row.find('td.filename').droppable(folderDropOptions); + var td = tr.find('td.filename'); + td.draggable(dragOptions); + td.droppable(folderDropOptions); if (hidden) { - row.hide(); + tr.hide(); } - FileActions.display(row.find('td.filename')); + FileActions.display(tr.find('td.filename')); + return tr; }, refresh:function(data) { var result = jQuery.parseJSON(data.responseText); @@ -319,9 +320,9 @@ var FileList={ } for (var i=0; i'; - deleteAction[0].outerHTML = newHTML; + deleteAction.html(newHTML); } // Finish any existing actions if (FileList.lastAction) { @@ -343,7 +344,7 @@ var FileList={ } else { $.each(files,function(index,file) { var deleteAction = $('tr').filterAttr('data-file',file).children("td.date").children(".move2trash"); - deleteAction[0].outerHTML = oldHTML; + deleteAction.html(oldHTML); }); } }); @@ -351,6 +352,148 @@ var FileList={ }; $(document).ready(function(){ + + // handle upload events + var file_upload_start = $('#file_upload_start'); + file_upload_start.on('fileuploaddrop', function(e, data) { + // only handle drop to dir if fileList exists + if ($('#fileList').length > 0) { + var dropTarget = $(e.originalEvent.target).closest('tr'); + if(dropTarget && dropTarget.data('type') === 'dir') { // drag&drop upload to folder + var dirName = dropTarget.data('file'); + // update folder in form + data.formData = function(form) { + var formArray = form.serializeArray(); + // array index 0 contains the max files size + // array index 1 contains the request token + // array index 2 contains the directory + var parentDir = formArray[2]['value']; + if (parentDir === '/') { + formArray[2]['value'] += dirName; + } else { + formArray[2]['value'] += '/'+dirName; + } + return formArray; + } + } + } + }); + file_upload_start.on('fileuploadadd', function(e, data) { + // only add to fileList if it exists + if ($('#fileList').length > 0) { + + if(FileList.deleteFiles && FileList.deleteFiles.indexOf(data.files[0].name)!=-1){//finish delete if we are uploading a deleted file + FileList.finishDelete(null, true); //delete file before continuing + } + + // add ui visualization to existing folder or as new stand-alone file? + var dropTarget = $(e.originalEvent.target).closest('tr'); + if(dropTarget && dropTarget.data('type') === 'dir') { + // add to existing folder + var dirName = dropTarget.data('file'); + + // set dir context + data.context = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName); + + // update upload counter ui + var uploadtext = data.context.find('.uploadtext'); + var currentUploads = parseInt(uploadtext.attr('currentUploads')); + currentUploads += 1; + uploadtext.attr('currentUploads', currentUploads); + if(currentUploads === 1) { + var img = OC.imagePath('core', 'loading.gif'); + data.context.find('td.filename').attr('style','background-image:url('+img+')'); + uploadtext.text(t('files', '1 file uploading')); + uploadtext.show(); + } else { + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); + } + } else { + // add as stand-alone row to filelist + var uniqueName = getUniqueName(data.files[0].name); + var size=t('files','Pending'); + if(data.files[0].size>=0){ + size=data.files[0].size; + } + var date=new Date(); + // create new file context + data.context = FileList.addFile(uniqueName,size,date,true,false); + + } + } + }); + file_upload_start.on('fileuploaddone', function(e, data) { + // only update the fileList if it exists + if ($('#fileList').length > 0) { + var response; + if (typeof data.result === 'string') { + response = data.result; + } else { + // fetch response from iframe + response = data.result[0].body.innerText; + } + var result=$.parseJSON(response); + + if(typeof result[0] !== 'undefined' && result[0].status === 'success') { + var file = result[0]; + + if (data.context.data('type') === 'file') { + // update file data + data.context.attr('data-mime',file.mime).attr('data-id',file.id); + var size = data.context.data('size'); + if(size!=file.size){ + data.context.attr('data-size', file.size); + data.context.find('td.filesize').text(humanFileSize(file.size)); + } + if (FileList.loadingDone) { + FileList.loadingDone(file.name, file.id); + } + } else { + // update upload counter ui + var uploadtext = data.context.find('.uploadtext'); + var currentUploads = parseInt(uploadtext.attr('currentUploads')); + currentUploads -= 1; + uploadtext.attr('currentUploads', currentUploads); + if(currentUploads === 0) { + var img = OC.imagePath('core', 'filetypes/folder.png'); + data.context.find('td.filename').attr('style','background-image:url('+img+')'); + uploadtext.text(''); + uploadtext.hide(); + } else { + uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); + } + + // update folder size + var size = parseInt(data.context.data('size')); + size += parseInt(file.size) ; + data.context.attr('data-size', size); + data.context.find('td.filesize').text(humanFileSize(size)); + + } + } + } + }); + file_upload_start.on('fileuploadfail', function(e, data) { + // only update the fileList if it exists + // cleanup files, error notification has been shown by fileupload code + var tr = data.context; + if (typeof tr === 'undefined') { + tr = $('tr').filterAttr('data-file', data.files[0].name); + } + if (tr.attr('data-type') === 'dir') { + //cleanup uploading to a dir + var uploadtext = tr.find('.uploadtext'); + var img = OC.imagePath('core', 'filetypes/folder.png'); + tr.find('td.filename').attr('style','background-image:url('+img+')'); + uploadtext.text(''); + uploadtext.hide(); //TODO really hide already + } else { + //remove file + tr.fadeOut(); + tr.remove(); + } + }); + $('#notification').hide(); $('#notification').on('click', '.undo', function(){ if (FileList.deleteFiles) { diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 6c5536aafab7db669a06fc13e5425c287c5ebfe1..a2d17fae7d2f48d207f4eb74ac07d957fe272834 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -247,254 +247,151 @@ $(document).ready(function() { }); if ( document.getElementById('data-upload-form') ) { - $(function() { - $('#file_upload_start').fileupload({ - dropZone: $('#content'), // restrict dropZone to content div - add: function(e, data) { - var files = data.files; - var totalSize=0; - if(files){ - if (FileList.lastAction) { - FileList.lastAction(); + $(function() { + $('#file_upload_start').fileupload({ + dropZone: $('#content'), // restrict dropZone to content div + //singleFileUploads is on by default, so the data.files array will always have length 1 + add: function(e, data) { + + if(data.files[0].type === '' && data.files[0].size == 4096) + { + data.textStatus = 'dirorzero'; + data.errorThrown = t('files','Unable to upload your file as it is a directory or has 0 bytes'); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + return true; //don't upload this file but go on with next in queue } - for(var i=0;i$('#max_upload').val()){ - $( '#uploadsize-message' ).dialog({ - modal: true, - buttons: { - Close: { - text:t('files', 'Close'), - click:function() { - $( this ).dialog( 'close' ); - } - } - } + + var totalSize=0; + $.each(data.originalFiles, function(i,file){ + totalSize+=file.size; }); - }else{ - var dropTarget = $(e.originalEvent.target).closest('tr'); - if(dropTarget && dropTarget.attr('data-type') === 'dir') { // drag&drop upload to folder - var dirName = dropTarget.attr('data-file') + + if(totalSize>$('#max_upload').val()){ + data.textStatus = 'notenoughspace'; + data.errorThrown = t('files','Not enough space available'); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + return false; //don't upload anything } - var date=new Date(); - if(files){ - for(var i=0;i0){ - var size=files[i].size; - }else{ - var size=t('files','Pending'); - } - if(files && !dirName){ - var uniqueName = getUniqueName(files[i].name); - if (uniqueName != files[i].name) { - FileList.checkName(uniqueName, files[i].name, true); - var hidden = true; - } else { - var hidden = false; - } - FileList.addFile(uniqueName,size,date,true,hidden); - } else if(dirName) { - var uploadtext = $('tr').filterAttr('data-type', 'dir').filterAttr('data-file', dirName).find('.uploadtext') - var currentUploads = parseInt(uploadtext.attr('currentUploads')); - currentUploads += 1; - uploadtext.attr('currentUploads', currentUploads); - if(currentUploads === 1) { - var img = OC.imagePath('core', 'loading.gif'); - var tr=$('tr').filterAttr('data-file',dirName); - tr.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text(t('files', '1 file uploading')); - uploadtext.show(); - } else { - uploadtext.text(t('files', '{count} files uploading', {count: currentUploads})); - } - } + // start the actual file upload + var jqXHR = data.submit(); + + // remember jqXHR to show warning to user when he navigates away but an upload is still in progress + if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { + var dirName = data.context.data('file'); + if(typeof uploadingFiles[dirName] === 'undefined') { + uploadingFiles[dirName] = {}; } - }else{ - var filename=this.value.split('\\').pop(); //ie prepends C:\fakepath\ in front of the filename - var uniqueName = getUniqueName(filename); - if (uniqueName != filename) { - FileList.checkName(uniqueName, filename, true); - var hidden = true; + uploadingFiles[dirName][data.files[0].name] = jqXHR; + } else { + uploadingFiles[data.files[0].name] = jqXHR; + } + + //show cancel button + if($('html.lte9').length === 0 && data.dataType !== 'iframe') { + $('#uploadprogresswrapper input.stop').show(); + } + }, + /** + * called after the first add, does NOT have the data param + * @param e + */ + start: function(e) { + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); + }, + fail: function(e, data) { + if (typeof data.textStatus !== 'undefined' && data.textStatus !== 'success' ) { + if (data.textStatus === 'abort') { + $('#notification').text(t('files', 'Upload cancelled.')); } else { - var hidden = false; + // HTTP connection problem + $('#notification').text(data.errorThrown); } - FileList.addFile(uniqueName,'Pending',date,true,hidden); + $('#notification').fadeIn(); + //hide notification after 5 sec + setTimeout(function() { + $('#notification').fadeOut(); + }, 5000); } - if($.support.xhrFileUpload) { - for(var i=0;i tr').not('[data-mime]').fadeOut(); - $('#fileList > tr').not('[data-mime]').remove(); - } - }) - .error(function(jqXHR, textStatus, errorThrown) { - if(errorThrown === 'abort') { - Files.cancelUpload(this.files[0].name); - OC.Notification.show(t('files', 'Upload cancelled.')); - } - }); - uploadingFiles[uniqueName] = jqXHR; - } + delete uploadingFiles[data.files[0].name]; + }, + progress: function(e, data) { + // TODO: show nice progress bar in file row + }, + progressall: function(e, data) { + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + var progress = (data.loaded/data.total)*100; + $('#uploadprogressbar').progressbar('value',progress); + }, + /** + * called for every successful upload + * @param e + * @param data + */ + done:function(e, data) { + // handle different responses (json or body from iframe for ie) + var response; + if (typeof data.result === 'string') { + response = data.result; + } else { + //fetch response from iframe + response = data.result[0].body.innerText; + } + var result=$.parseJSON(response); + + if(typeof result[0] !== 'undefined' && result[0].status === 'success') { + var file = result[0]; + } else { + data.textStatus = 'servererror'; + data.errorThrown = t('files', result.data.message); + var fu = $(this).data('blueimp-fileupload') || $(this).data('fileupload'); + fu._trigger('fail', e, data); + } + + var filename = result[0].originalname; + + // delete jqXHR reference + if (typeof data.context !== 'undefined' && data.context.data('type') === 'dir') { + var dirName = data.context.data('file'); + delete uploadingFiles[dirName][filename]; + if ($.assocArraySize(uploadingFiles[dirName]) == 0) { + delete uploadingFiles[dirName]; } - }else{ - data.submit().success(function(data, status) { - // in safari data is a string - response = jQuery.parseJSON(typeof data === 'string' ? data : data[0].body.innerText); - Files.updateMaxUploadFilesize(response); - 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).data('id',file.id); - var size = $('tr').filterAttr('data-file',file.name).find('td.filesize').text(); - if(size==t('files','Pending')){ - var sizeElement = $('tr').filterAttr('data-file',file.name).find('td.filesize'); - sizeElement.text(simpleFileSize(file.size)); - sizeElement.attr('title',humanFileSize(file.size)); - } - //TODO update file upload size limit - FileList.loadingDone(file.name, file.id); - } else { - //TODO Files.cancelUpload(/*where do we get the filename*/); - OC.Notification.show(t('files', response.data.message)); - $('#fileList > tr').not('[data-mime]').fadeOut(); - $('#fileList > tr').not('[data-mime]').remove(); - } - }); + } else { + delete uploadingFiles[filename]; } - } - }, - fail: function(e, data) { - // TODO: cancel upload & display error notification - }, - progress: function(e, data) { - // TODO: show nice progress bar in file row - }, - progressall: function(e, data) { - //IE < 10 does not fire the necessary events for the progress bar. - if($.browser.msie && parseInt($.browser.version) < 10) { - return; - } - var progress = (data.loaded/data.total)*100; - $('#uploadprogressbar').progressbar('value',progress); - }, - start: function(e, data) { - //IE < 10 does not fire the necessary events for the progress bar. - if($.browser.msie && parseInt($.browser.version) < 10) { - return; - } - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - if(data.dataType != 'iframe ') { - $('#upload input.stop').show(); - } - }, - stop: function(e, data) { - if(data.dataType != 'iframe ') { - $('#upload input.stop').hide(); - } - //IE < 10 does not fire the necessary events for the progress bar. - if($.browser.msie && parseInt($.browser.version) < 10) { - return; - } - $('#uploadprogressbar').progressbar('value',100); - $('#uploadprogressbar').fadeOut(); - } - }) - }); + }, + /** + * called after last upload + * @param e + * @param data + */ + stop: function(e, data) { + if(data.dataType !== 'iframe') { + $('#uploadprogresswrapper input.stop').hide(); + } + + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } + + $('#uploadprogressbar').progressbar('value',100); + $('#uploadprogressbar').fadeOut(); + } + }) + }); } $.assocArraySize = function(obj) { // http://stackoverflow.com/a/6700/11236 @@ -615,7 +512,7 @@ $(document).ready(function() { tr.find('td.filename').attr('style','background-image:url('+path+')'); }); } else { - OC.dialogs.alert(result.data.message, 'Error'); + OC.dialogs.alert(result.data.message, t('core', 'Error')); } } ); @@ -631,7 +528,7 @@ $(document).ready(function() { var tr=$('tr').filterAttr('data-file',name); tr.attr('data-id', result.data.id); } else { - OC.dialogs.alert(result.data.message, 'Error'); + OC.dialogs.alert(result.data.message, t('core', 'Error')); } } ); @@ -651,7 +548,7 @@ $(document).ready(function() { } localName = getUniqueName(localName); //IE < 10 does not fire the necessary events for the progress bar. - if($.browser.msie && parseInt($.browser.version) < 10) { + if($('html.lte9').length > 0) { } else { $('#uploadprogressbar').progressbar({value:0}); $('#uploadprogressbar').fadeIn(); @@ -659,7 +556,8 @@ $(document).ready(function() { var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); eventSource.listen('progress',function(progress){ - if($.browser.msie && parseInt($.browser.version) < 10) { + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { } else { $('#uploadprogressbar').progressbar('value',progress); } @@ -859,9 +757,9 @@ var createDragShadow = function(event){ var dir=$('#dir').val(); $(selectedFiles).each(function(i,elem){ - var newtr = $('' - +''+elem.name+''+humanFileSize(elem.size)+'' - +''); + var newtr = $('').attr('data-dir', dir).attr('data-filename', elem.name); + newtr.append($('').addClass('filename').text(elem.name)); + newtr.append($('').addClass('size').text(humanFileSize(elem.size))); tbody.append(newtr); if (elem.type === 'dir') { newtr.find('td.filename').attr('style','background-image:url('+OC.imagePath('core', 'filetypes/folder.png')+')'); @@ -885,7 +783,7 @@ var dragOptions={ } } // sane browsers support using the distance option -if ( ! $.browser.msie) { +if ( $('html.ie').length === 0) { dragOptions['distance'] = 20; } @@ -920,7 +818,7 @@ var folderDropOptions={ $('#notification').fadeIn(); } } else { - OC.dialogs.alert(t('Error moving file')); + OC.dialogs.alert(t('Error moving file'), t('core', 'Error')); } }); }); @@ -958,7 +856,7 @@ var crumbDropOptions={ $('#notification').fadeIn(); } } else { - OC.dialogs.alert(t('Error moving file')); + OC.dialogs.alert(t('Error moving file'), t('core', 'Error')); } }); }); diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index aa005913a9e42aa156d4b77b9d1863fc0c5708ee..41e6a225a2b745a9ca7021306b51e48542a515e7 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", "undo" => "تراجع", "perform delete operation" => "جاري تنفيذ عملية الحذف", +"1 file uploading" => "جاري رفع 1 ملف", "'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", "File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", @@ -31,14 +32,11 @@ "Your storage is almost full ({usedSpacePercent}%)" => "مساحتك التخزينية امتلأت تقريبا ", "Your download is being prepared. This might take some time if the files are big." => "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير.", "Unable to upload your file as it is a directory or has 0 bytes" => "فشل في رفع ملفاتك , إما أنها مجلد أو حجمها 0 بايت", -"Upload Error" => "خطأ في رفع الملفات", -"Close" => "إغلق", -"1 file uploading" => "جاري رفع 1 ملف", -"{count} files uploading" => "جاري رفع {count} ملفات", "Upload cancelled." => "تم إلغاء عملية رفع الملفات .", "File upload is in progress. Leaving the page now will cancel the upload." => "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات.", "URL cannot be empty." => "عنوان ال URL لا يجوز أن يكون فارغا.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام", +"Error" => "خطأ", "Name" => "الاسم", "Size" => "حجم", "Modified" => "معدل", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index a4d23e5afb54e317b8a7b15ddd8aea2f343de914..c4bbca36f47b830fe0d3a4e39271f2185583dd64 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -10,9 +10,8 @@ "replace" => "препокриване", "cancel" => "отказ", "undo" => "възтановяване", -"Upload Error" => "Възникна грешка при качването", -"Close" => "Затвори", "Upload cancelled." => "Качването е спряно.", +"Error" => "Грешка", "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index aec5d7f9d9215e934c10358d6e782ad844d5c4b4..640430716fe3b3a7dab2f94af55316d98b1cfb53 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -21,18 +21,17 @@ "cancel" => "বাতিল", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "undo" => "ক্রিয়া প্রত্যাহার", +"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", "Unable to upload your file as it is a directory or has 0 bytes" => "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট", -"Upload Error" => "আপলোড করতে সমস্যা ", -"Close" => "বন্ধ", -"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", -"{count} files uploading" => "{count} টি ফাইল আপলোড করা হচ্ছে", +"Not enough space available" => "যথেষ্ঠ পরিমাণ স্থান নেই", "Upload cancelled." => "আপলোড বাতিল করা হয়েছে।", "File upload is in progress. Leaving the page now will cancel the upload." => "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।", "URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।", +"Error" => "সমস্যা", "Name" => "নাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 43aaea31e8a722e7268338990b0e9fe610752ef7..d92dbeef67cec056c069065f86cd06c5e610c653 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "s'ha substituït {old_name} per {new_name}", "undo" => "desfés", "perform delete operation" => "executa d'operació d'esborrar", +"1 file uploading" => "1 fitxer pujant", +"files uploading" => "fitxers pujant", "'.' is an invalid file name." => "'.' és un nom no vàlid per un fitxer.", "File name cannot be empty." => "El nom del fitxer no pot ser buit.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "El nóm no és vàlid, '\\', '/', '<', '>', ':', '\"', '|', '?' i '*' no estan permesos.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "El vostre espai d'emmagatzemament és gairebé ple ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans.", "Unable to upload your file as it is a directory or has 0 bytes" => "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes", -"Upload Error" => "Error en la pujada", -"Close" => "Tanca", -"1 file uploading" => "1 fitxer pujant", -"{count} files uploading" => "{count} fitxers en pujada", +"Not enough space available" => "No hi ha prou espai disponible", "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à.", "URL cannot be empty." => "La URL no pot ser buida", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud", +"Error" => "Error", "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index 48b60bfb7118c7f8e3cb82e1118369bdf8682930..66c748fbaa07480c88003eb400fd9fffe4a7550e 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "undo" => "zpět", "perform delete operation" => "provést smazání", +"1 file uploading" => "odesílá se 1 soubor", +"files uploading" => "soubory se odesílají", "'.' is an invalid file name." => "'.' je neplatným názvem souboru.", "File name cannot be empty." => "Název souboru nemůže být prázdný řetězec.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat.", "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í", -"Close" => "Zavřít", -"1 file uploading" => "odesílá se 1 soubor", -"{count} files uploading" => "odesílám {count} souborů", +"Not enough space available" => "Nedostatek dostupného místa", "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í.", "URL cannot be empty." => "URL nemůže být prázdná", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud", +"Error" => "Chyba", "Name" => "Název", "Size" => "Velikost", "Modified" => "Změněno", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..f56d357362b1e112d6ad56dedd7301984ad76277 --- /dev/null +++ b/apps/files/l10n/cy_GB.php @@ -0,0 +1,73 @@ + "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", +"Could not move %s" => "Methwyd symud %s", +"Unable to rename file" => "Methu ailenwi ffeil", +"No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", +"There is no error, the file uploaded with success" => "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML", +"The uploaded file was only partially uploaded" => "Dim ond yn rhannol y llwythwyd y ffeil i fyny", +"No file was uploaded" => "Ni lwythwyd ffeil i fyny", +"Missing a temporary folder" => "Plygell dros dro yn eisiau", +"Failed to write to disk" => "Methwyd ysgrifennu i'r ddisg", +"Not enough storage available" => "Dim digon o le storio ar gael", +"Invalid directory." => "Cyfeiriadur annilys.", +"Files" => "Ffeiliau", +"Delete permanently" => "Dileu'n barhaol", +"Delete" => "Dileu", +"Rename" => "Ailenwi", +"Pending" => "I ddod", +"{new_name} already exists" => "{new_name} yn bodoli'n barod", +"replace" => "amnewid", +"suggest name" => "awgrymu enw", +"cancel" => "diddymu", +"replaced {new_name} with {old_name}" => "newidiwyd {new_name} yn lle {old_name}", +"undo" => "dadwneud", +"perform delete operation" => "cyflawni gweithred dileu", +"1 file uploading" => "1 ffeil yn llwytho i fyny", +"files uploading" => "ffeiliau'n llwytho i fyny", +"'.' is an invalid file name." => "Mae '.' yn enw ffeil annilys.", +"File name cannot be empty." => "Does dim hawl cael enw ffeil gwag.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'.", +"Your storage is full, files can not be updated or synced anymore!" => "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!", +"Your storage is almost full ({usedSpacePercent}%)" => "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit", +"Not enough space available" => "Dim digon o le ar gael", +"Upload cancelled." => "Diddymwyd llwytho i fyny.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses.", +"URL cannot be empty." => "Does dim hawl cael URL gwag.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud", +"Error" => "Gwall", +"Name" => "Enw", +"Size" => "Maint", +"Modified" => "Addaswyd", +"1 folder" => "1 blygell", +"{count} folders" => "{count} plygell", +"1 file" => "1 ffeil", +"{count} files" => "{count} ffeil", +"Upload" => "Llwytho i fyny", +"File handling" => "Trafod ffeiliau", +"Maximum upload size" => "Maint mwyaf llwytho i fyny", +"max. possible: " => "mwyaf. posib:", +"Needed for multi-file and folder downloads." => "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd.", +"Enable ZIP-download" => "Galluogi llwytho i lawr ZIP", +"0 is unlimited" => "0 yn ddiderfyn", +"Maximum input size for ZIP files" => "Maint mewnbynnu mwyaf ffeiliau ZIP", +"Save" => "Cadw", +"New" => "Newydd", +"Text file" => "Ffeil destun", +"Folder" => "Plygell", +"From link" => "Dolen o", +"Deleted files" => "Ffeiliau ddilewyd", +"Cancel upload" => "Diddymu llwytho i fyny", +"You don’t have write permissions here." => "Nid oes gennych hawliau ysgrifennu fan hyn.", +"Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!", +"Download" => "Llwytho i lawr", +"Unshare" => "Dad-rannu", +"Upload too large" => "Maint llwytho i fyny'n rhy fawr", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn.", +"Files are being scanned, please wait." => "Arhoswch, mae ffeiliau'n cael eu sganio.", +"Current scanning" => "Sganio cyfredol", +"Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..." +); diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index c147c939f847bd96768e18ca3850777ab187d883..7c065952aeaeab8b707e711777a7744e6eba7cf0 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "erstattede {new_name} med {old_name}", "undo" => "fortryd", "perform delete operation" => "udfør slet operation", +"1 file uploading" => "1 fil uploades", "'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldigt navn, '\\', '/', '<', '>', ':' | '?', '\"', '', og '*' er ikke tilladt.", @@ -31,14 +32,11 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Din opbevaringsplads er næsten fyldt op ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Dit download forberedes. Dette kan tage lidt tid ved større filer.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kunne ikke uploade din fil, da det enten er en mappe eller er tom", -"Upload Error" => "Fejl ved upload", -"Close" => "Luk", -"1 file uploading" => "1 fil uploades", -"{count} files uploading" => "{count} filer uploades", "Upload cancelled." => "Upload afbrudt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fil upload kører. Hvis du forlader siden nu, vil uploadet blive annuleret.", "URL cannot be empty." => "URLen kan ikke være tom.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud", +"Error" => "Fejl", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 53427503f4c0ac790c3a126e1705d99b7f2efded..34f02334866b3bf0f1a2f913a3860d1f85c57e34 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{old_name} ersetzt durch {new_name}", "undo" => "rückgängig machen", "perform delete operation" => "Löschvorgang ausführen", +"1 file uploading" => "Eine Datei wird hoch geladen", +"files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name, '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicherplatz ist fast aufgebraucht ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern.", "Unable to upload your file as it is a directory or has 0 bytes" => "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist.", -"Upload Error" => "Fehler beim Upload", -"Close" => "Schließen", -"1 file uploading" => "Eine Datei wird hoch geladen", -"{count} files uploading" => "{count} Dateien werden hochgeladen", +"Not enough space available" => "Nicht genug Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen.", "URL cannot be empty." => "Die URL darf nicht leer sein.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten.", +"Error" => "Fehler", "Name" => "Name", "Size" => "Größe", "Modified" => "Bearbeitet", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 8a34e24c207cfa30286118e7a0cb76b01d009664..8fc1c106d0175cb8f7d26c8172cc9d587f6de901 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", "perform delete operation" => "führe das Löschen aus", +"1 file uploading" => "1 Datei wird hochgeladen", +"files uploading" => "Dateien werden hoch geladen", "'.' is an invalid file name." => "'.' ist kein gültiger Dateiname.", "File name cannot be empty." => "Der Dateiname darf nicht leer sein.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ungültiger Name! Die Zeichen '\\', '/', '<', '>', ':', '\"', '|', '?' und '*' sind nicht zulässig.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Ihr Speicher ist fast voll ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern.", "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", -"Close" => "Schließen", -"1 file uploading" => "1 Datei wird hochgeladen", -"{count} files uploading" => "{count} Dateien wurden hochgeladen", +"Not enough space available" => "Nicht genügend Speicherplatz verfügbar", "Upload cancelled." => "Upload abgebrochen.", "File upload is in progress. Leaving the page now will cancel the upload." => "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen.", "URL cannot be empty." => "Die URL darf nicht leer sein.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten", +"Error" => "Fehler", "Name" => "Name", "Size" => "Größe", "Modified" => "Bearbeitet", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 7682ae24b09670ddd951c9cb89838accd85af8ed..60d63c41429113e220f2e456ff33dc2c2acd686a 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -4,7 +4,7 @@ "Unable to rename file" => "Αδυναμία μετονομασίας αρχείου", "No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", -"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:", +"The uploaded file exceeds the 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" => "Κανένα αρχείο δεν στάλθηκε", @@ -23,22 +23,22 @@ "cancel" => "ακύρωση", "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "undo" => "αναίρεση", -"perform delete operation" => "εκτέλεση διαδικασία διαγραφής", +"perform delete operation" => "εκτέλεση της διαδικασίας διαγραφής", +"1 file uploading" => "1 αρχείο ανεβαίνει", +"files uploading" => "αρχεία ανεβαίνουν", "'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", -"File name cannot be empty." => "Το όνομα αρχείου δεν πρέπει να είναι κενό.", +"File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Μη έγκυρο όνομα, '\\', '/', '<', '>', ':', '\"', '|', '?' και '*' δεν επιτρέπονται.", "Your storage is full, files can not be updated or synced anymore!" => "Ο αποθηκευτικός σας χώρος είναι γεμάτος, τα αρχεία δεν μπορούν να ενημερωθούν ή να συγχρονιστούν πια!", "Your storage is almost full ({usedSpacePercent}%)" => "Ο αποθηκευτικός χώρος είναι σχεδόν γεμάτος ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος.", "Unable to upload your file as it is a directory or has 0 bytes" => "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes", -"Upload Error" => "Σφάλμα Αποστολής", -"Close" => "Κλείσιμο", -"1 file uploading" => "1 αρχείο ανεβαίνει", -"{count} files uploading" => "{count} αρχεία ανεβαίνουν", +"Not enough space available" => "Δεν υπάρχει αρκετός διαθέσιμος χώρος", "Upload cancelled." => "Η αποστολή ακυρώθηκε.", "File upload is in progress. Leaving the page now will cancel the upload." => "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή.", -"URL cannot be empty." => "Η URL δεν πρέπει να είναι κενή.", +"URL cannot be empty." => "Η URL δεν μπορεί να είναι κενή.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud", +"Error" => "Σφάλμα", "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", @@ -62,12 +62,12 @@ "Deleted files" => "Διαγραμμένα αρχεία", "Cancel upload" => "Ακύρωση αποστολής", "You don’t have write permissions here." => "Δεν έχετε δικαιώματα εγγραφής εδώ.", -"Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Μεταφορτώστε κάτι!", +"Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!", "Download" => "Λήψη", "Unshare" => "Διακοπή κοινής χρήσης", "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" => "Τρέχουσα αναζήτηση ", -"Upgrading filesystem cache..." => "Αναβάθμιση μνήμης cache του συστήματος αρχείων..." +"Files are being scanned, please wait." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.", +"Current scanning" => "Τρέχουσα ανίχνευση", +"Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." ); diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 225408f9a76e8ef9b664bc1e25e18572016cb8f1..3435f430597429fc4bff0d84ad7e73d6621e55b9 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -21,19 +21,18 @@ "cancel" => "nuligi", "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "undo" => "malfari", +"1 file uploading" => "1 dosiero estas alŝutata", "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", "File name cannot be empty." => "Dosiernomo devas ne malpleni.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nevalida nomo: “\\”, “/”, “<”, “>”, “:”, “\"”, “|”, “?” kaj “*” ne permesatas.", "Your download is being prepared. This might take some time if the files are big." => "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn", -"Upload Error" => "Alŝuta eraro", -"Close" => "Fermi", -"1 file uploading" => "1 dosiero estas alŝutata", -"{count} files uploading" => "{count} dosieroj alŝutatas", +"Not enough space available" => "Ne haveblas sufiĉa spaco", "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.", "URL cannot be empty." => "URL ne povas esti malplena.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud.", +"Error" => "Eraro", "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index f702a5b513d4d89ea35f2771074255e14f61627d..e231abe42902d88b475aa79251003afe274ee0ef 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "undo" => "deshacer", "perform delete operation" => "Eliminar", +"1 file uploading" => "subiendo 1 archivo", +"files uploading" => "subiendo archivos", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre Invalido, \"\\\", \"/\", \"<\", \">\", \":\", \"\", \"|\" \"?\" y \"*\" no están permitidos ", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Su almacenamiento esta lleno en un ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes.", "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", -"Close" => "cerrrar", -"1 file uploading" => "subiendo 1 archivo", -"{count} files uploading" => "Subiendo {count} archivos", +"Not enough space available" => "No hay suficiente espacio disponible", "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.", "URL cannot be empty." => "La URL no puede estar vacía.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud", +"Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 6cd7c026922271c7ac57df15ae3ffb23964dfd0b..25c2f4ff6992e3823585d38ae002123258630fe4 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "undo" => "deshacer", "perform delete operation" => "Eliminar", +"1 file uploading" => "Subiendo 1 archivo", +"files uploading" => "Subiendo archivos", "'.' is an invalid file name." => "'.' es un nombre de archivo inválido.", "File name cannot be empty." => "El nombre del archivo no puede quedar vacío.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nombre invalido, '\\', '/', '<', '>', ':', '\"', '|', '?' y '*' no están permitidos.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "El almacenamiento está casi lleno ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes.", "Unable to upload your file as it is a directory or has 0 bytes" => "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes", -"Upload Error" => "Error al subir el archivo", -"Close" => "Cerrar", -"1 file uploading" => "Subiendo 1 archivo", -"{count} files uploading" => "Subiendo {count} archivos", +"Not enough space available" => "No hay suficiente espacio disponible", "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á.", "URL cannot be empty." => "La URL no puede estar vacía", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud", +"Error" => "Error", "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index f1c94e93aab7a02334a4f41f10c0f0f1d38cff6c..64a2f71b2715e74bddebbcf6bc1f6ef563409823 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,8 +1,10 @@ "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", "Unable to rename file" => "Faili ümbernimetamine ebaõnnestus", "No file was uploaded. Unknown error" => "Ühtegi faili ei laetud üles. Tundmatu viga", "There is no error, the file uploaded with success" => "Ühtegi viga pole, fail on üles laetud", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Üles laetud faili suurus ületab HTML vormis määratud upload_max_filesize suuruse", "The uploaded file was only partially uploaded" => "Fail laeti üles ainult osaliselt", "No file was uploaded" => "Ühtegi faili ei laetud üles", @@ -21,17 +23,22 @@ "cancel" => "loobu", "replaced {new_name} with {old_name}" => "asendas nime {old_name} nimega {new_name}", "undo" => "tagasi", +"perform delete operation" => "teosta kustutamine", +"1 file uploading" => "1 faili üleslaadimisel", +"files uploading" => "failide üleslaadimine", "'.' is an invalid file name." => "'.' on vigane failinimi.", "File name cannot be empty." => "Faili nimi ei saa olla tühi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatud.", +"Your storage is full, files can not be updated or synced anymore!" => "Sinu andmemaht on täis! Faile ei uuendata ja sünkroniseerimist ei toimu!", +"Your storage is almost full ({usedSpacePercent}%)" => "Su andmemaht on peaaegu täis ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Valmistatakse allalaadimist. See võib võtta veidi aega kui on tegu suurte failidega. ", "Unable to upload your file as it is a directory or has 0 bytes" => "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti", -"Upload Error" => "Üleslaadimise viga", -"Close" => "Sulge", -"1 file uploading" => "1 faili üleslaadimisel", -"{count} files uploading" => "{count} faili üleslaadimist", +"Not enough space available" => "Pole piisavalt ruumi", "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.", "URL cannot be empty." => "URL ei saa olla tühi.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt.", +"Error" => "Viga", "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", @@ -52,12 +59,15 @@ "Text file" => "Tekstifail", "Folder" => "Kaust", "From link" => "Allikast", +"Deleted files" => "Kustutatud failid", "Cancel upload" => "Tühista üleslaadimine", +"You don’t have write permissions here." => "Siin puudvad Sul kirjutamisõigused.", "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", "Unshare" => "Lõpeta jagamine", "Upload too large" => "Üleslaadimine on liiga suur", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse.", "Files are being scanned, please wait." => "Faile skannitakse, palun oota", -"Current scanning" => "Praegune skannimine" +"Current scanning" => "Praegune skannimine", +"Upgrading filesystem cache..." => "Uuendan failisüsteemi puhvrit..." ); diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 63c62ce9a55d92e747edcdd88cde30a3ad92d0ff..8c244babf0808ab2984547661259419665b754be 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => " {new_name}-k {old_name} ordezkatu du", "undo" => "desegin", "perform delete operation" => "Ezabatu", +"1 file uploading" => "fitxategi 1 igotzen", "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "IZen aliogabea, '\\', '/', '<', '>', ':', '\"', '|', '?' eta '*' ez daude baimenduta.", @@ -31,14 +32,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Zure biltegiratzea nahiko beterik dago (%{usedSpacePercent})", "Your download is being prepared. This might take some time if the files are big." => "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. ", "Unable to upload your file as it is a directory or has 0 bytes" => "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu", -"Upload Error" => "Igotzean errore bat suertatu da", -"Close" => "Itxi", -"1 file uploading" => "fitxategi 1 igotzen", -"{count} files uploading" => "{count} fitxategi igotzen", +"Not enough space available" => "Ez dago leku nahikorik.", "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.", "URL cannot be empty." => "URLa ezin da hutsik egon.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du", +"Error" => "Errorea", "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index e507ee715c5d2697f2637de79fa868fdd46cd9f8..13ef465199dbb8ac2d4fbd85261825148de69084 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", "undo" => "بازگشت", "perform delete operation" => "انجام عمل حذف", +"1 file uploading" => "1 پرونده آپلود شد.", +"files uploading" => "بارگذاری فایل ها", "'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", "File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "نام نامعتبر ، '\\', '/', '<', '>', ':', '\"', '|', '?' و '*' مجاز نمی باشند.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "فضای ذخیره ی شما تقریبا پر است ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد.", "Unable to upload your file as it is a directory or has 0 bytes" => "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد", -"Upload Error" => "خطا در بار گذاری", -"Close" => "بستن", -"1 file uploading" => "1 پرونده آپلود شد.", -"{count} files uploading" => "{ شمار } فایل های در حال آپلود", +"Not enough space available" => "فضای کافی در دسترس نیست", "Upload cancelled." => "بار گذاری لغو شد", "File upload is in progress. Leaving the page now will cancel the upload." => "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. ", "URL cannot be empty." => "URL نمی تواند خالی باشد.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است.", +"Error" => "خطا", "Name" => "نام", "Size" => "اندازه", "Modified" => "تغییر یافته", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 6eb891d29d3b5b902b9090b93c21130f4c0c605b..b797273d51449ebce4593a7ceefe16f51e1f161f 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -29,11 +29,11 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Tallennustila on melkein loppu ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan.", "Unable to upload your file as it is a directory or has 0 bytes" => "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio", -"Upload Error" => "Lähetysvirhe.", -"Close" => "Sulje", +"Not enough space available" => "Tilaa ei ole riittävästi", "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.", "URL cannot be empty." => "Verkko-osoite ei voi olla tyhjä", +"Error" => "Virhe", "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muutettu", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index 5e53f5ab024df370b33d76e2d8fc18202c9009eb..093a0b891ce77e66a0b144101a29cf7c9c89cc4d 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{new_name} a été remplacé par {old_name}", "undo" => "annuler", "perform delete operation" => "effectuer l'opération de suppression", +"1 file uploading" => "1 fichier en cours de téléchargement", +"files uploading" => "fichiers en cours de téléchargement", "'.' is an invalid file name." => "'.' n'est pas un nom de fichier valide.", "File name cannot be empty." => "Le nom de fichier ne peut être vide.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nom invalide, les caractères '\\', '/', '<', '>', ':', '\"', '|', '?' et '*' ne sont pas autorisés.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Votre espace de stockage est presque plein ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux.", "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", -"Close" => "Fermer", -"1 file uploading" => "1 fichier en cours de téléchargement", -"{count} files uploading" => "{count} fichiers téléversés", +"Not enough space available" => "Espace disponible insuffisant", "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.", "URL cannot be empty." => "L'URL ne peut-être vide", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud", +"Error" => "Erreur", "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index d48839d0b6022788f0243af3f1054f1469ede71a..14992f5838537a56f7385c960b91d33c37913c8e 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "substituír {new_name} por {old_name}", "undo" => "desfacer", "perform delete operation" => "realizar a operación de eliminación", +"1 file uploading" => "Enviándose 1 ficheiro", +"files uploading" => "ficheiros enviándose", "'.' is an invalid file name." => "«.» é un nome de ficheiro incorrecto", "File name cannot be empty." => "O nome de ficheiro non pode estar baleiro", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome incorrecto, non se permite «\\», «/», «<», «>», «:», «\"», «|», «?» e «*».", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "O seu espazo de almacenamento está case cheo ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes.", "Unable to upload your file as it is a directory or has 0 bytes" => "Non foi posíbel enviar o ficheiro pois ou é un directorio ou ten 0 bytes", -"Upload Error" => "Produciuse un erro no envío", -"Close" => "Pechar", -"1 file uploading" => "Enviándose 1 ficheiro", -"{count} files uploading" => "Enviandose {count} ficheiros", +"Not enough space available" => "O espazo dispoñíbel é insuficiente", "Upload cancelled." => "Envío cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío.", "URL cannot be empty." => "O URL non pode quedar baleiro.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud", +"Error" => "Erro", "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 9d6b411c415d826adc98c0f95df0b74cb83a1ab7..36ba7cc5de243e65f1df707a88a6a48e88d5aea1 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -18,15 +18,13 @@ "cancel" => "ביטול", "replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}", "undo" => "ביטול", +"1 file uploading" => "קובץ אחד נשלח", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", "Unable to upload your file as it is a directory or has 0 bytes" => "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים", -"Upload Error" => "שגיאת העלאה", -"Close" => "סגירה", -"1 file uploading" => "קובץ אחד נשלח", -"{count} files uploading" => "{count} קבצים נשלחים", "Upload cancelled." => "ההעלאה בוטלה.", "File upload is in progress. Leaving the page now will cancel the upload." => "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה.", "URL cannot be empty." => "קישור אינו יכול להיות ריק.", +"Error" => "שגיאה", "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index 3516ab8c1e6a76377ca949e19c217fe8013a5ef4..a6b83b3d67c0d0be9c6482694802d03d388dcc1a 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -13,12 +13,11 @@ "suggest name" => "predloži ime", "cancel" => "odustani", "undo" => "vrati", -"Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", -"Upload Error" => "Pogreška pri slanju", -"Close" => "Zatvori", "1 file uploading" => "1 datoteka se učitava", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nemoguće poslati datoteku jer je prazna ili je direktorij", "Upload cancelled." => "Slanje poništeno.", "File upload is in progress. Leaving the page now will cancel the upload." => "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje.", +"Error" => "Greška", "Name" => "Naziv", "Size" => "Veličina", "Modified" => "Zadnja promjena", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 54d5033f907d1cdce3825039c6a6877bce46befc..103523b65f438de5cbc8c1523cae093591f0a745 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{new_name} fájlt kicseréltük ezzel: {old_name}", "undo" => "visszavonás", "perform delete operation" => "a törlés végrehajtása", +"1 file uploading" => "1 fájl töltődik föl", +"files uploading" => "fájl töltődik föl", "'.' is an invalid file name." => "'.' fájlnév érvénytelen.", "File name cannot be empty." => "A fájlnév nem lehet semmi.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Érvénytelen elnevezés. Ezek a karakterek nem használhatók: '\\', '/', '<', '>', ':', '\"', '|', '?' és '*'", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "A tároló majdnem tele van ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű", -"Upload Error" => "Feltöltési hiba", -"Close" => "Bezárás", -"1 file uploading" => "1 fájl töltődik föl", -"{count} files uploading" => "{count} fájl töltődik föl", +"Not enough space available" => "Nincs elég szabad hely", "Upload cancelled." => "A feltöltést megszakítottuk.", "File upload is in progress. Leaving the page now will cancel the upload." => "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést.", "URL cannot be empty." => "Az URL nem lehet semmi.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges.", +"Error" => "Hiba", "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", diff --git a/apps/files/l10n/hy.php b/apps/files/l10n/hy.php index 29c0cd8b8d0627dcd2b067b297f902c626f162ef..22edf32c6e68ed17c7a4c3761d4b0006f4f496bc 100644 --- a/apps/files/l10n/hy.php +++ b/apps/files/l10n/hy.php @@ -1,6 +1,5 @@ "Ջնջել", -"Close" => "Փակել", "Save" => "Պահպանել", "Download" => "Բեռնել" ); diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index ae614c1bf5dadfa661d90da8ee0f64f4ae35df75..b3233cc37d08da4fbb17678b4e18654064c41ce3 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -4,7 +4,6 @@ "Missing a temporary folder" => "Manca un dossier temporari", "Files" => "Files", "Delete" => "Deler", -"Close" => "Clauder", "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index aff1933e569e9d3b801b5769dcf8d083dbfadf7c..3894ce0de9c25c05fd67745afdbc16b327e460d3 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -1,46 +1,73 @@ "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", +"Could not move %s" => "Tidak dapat memindahkan %s", +"Unable to rename file" => "Tidak dapat mengubah nama berkas", +"No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal", "There is no error, the file uploaded with success" => "Tidak ada galat, berkas sukses diunggah", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML.", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML.", "The uploaded file was only partially uploaded" => "Berkas hanya diunggah sebagian", "No file was uploaded" => "Tidak ada berkas yang diunggah", -"Missing a temporary folder" => "Kehilangan folder temporer", +"Missing a temporary folder" => "Folder sementara tidak ada", "Failed to write to disk" => "Gagal menulis ke disk", +"Not enough storage available" => "Ruang penyimpanan tidak mencukupi", +"Invalid directory." => "Direktori tidak valid.", "Files" => "Berkas", +"Delete permanently" => "Hapus secara permanen", "Delete" => "Hapus", +"Rename" => "Ubah nama", "Pending" => "Menunggu", -"replace" => "mengganti", +"{new_name} already exists" => "{new_name} sudah ada", +"replace" => "ganti", +"suggest name" => "sarankan nama", "cancel" => "batalkan", -"undo" => "batal dikerjakan", -"Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte", -"Upload Error" => "Terjadi Galat Pengunggahan", -"Close" => "tutup", +"replaced {new_name} with {old_name}" => "mengganti {new_name} dengan {old_name}", +"undo" => "urungkan", +"perform delete operation" => "Lakukan operasi penghapusan", +"1 file uploading" => "1 berkas diunggah", +"files uploading" => "berkas diunggah", +"'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", +"File name cannot be empty." => "Nama berkas tidak boleh kosong.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan.", +"Your storage is full, files can not be updated or synced anymore!" => "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!", +"Your storage is almost full ({usedSpacePercent}%)" => "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Gagal mengunggah berkas Anda karena berupa direktori atau ukurannya 0 byte", +"Not enough space available" => "Ruang penyimpanan tidak mencukupi", "Upload cancelled." => "Pengunggahan dibatalkan.", -"URL cannot be empty." => "tautan tidak boleh kosong", +"File upload is in progress. Leaving the page now will cancel the upload." => "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses.", +"URL cannot be empty." => "URL tidak boleh kosong", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud.", +"Error" => "Galat", "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", -"1 folder" => "1 map", -"{count} folders" => "{count} map", +"1 folder" => "1 folder", +"{count} folders" => "{count} folder", "1 file" => "1 berkas", "{count} files" => "{count} berkas", "Upload" => "Unggah", "File handling" => "Penanganan berkas", -"Maximum upload size" => "Ukuran unggah maksimum", -"max. possible: " => "Kemungkinan maks:", -"Needed for multi-file and folder downloads." => "Dibutuhkan untuk multi-berkas dan unduhan folder", +"Maximum upload size" => "Ukuran pengunggahan maksimum", +"max. possible: " => "Kemungkinan maks.:", +"Needed for multi-file and folder downloads." => "Dibutuhkan untuk pengunduhan multi-berkas dan multi-folder", "Enable ZIP-download" => "Aktifkan unduhan ZIP", -"0 is unlimited" => "0 adalah tidak terbatas", -"Maximum input size for ZIP files" => "Ukuran masukan maksimal untuk berkas ZIP", -"Save" => "simpan", +"0 is unlimited" => "0 berarti tidak terbatas", +"Maximum input size for ZIP files" => "Ukuran masukan maksimum untuk berkas ZIP", +"Save" => "Simpan", "New" => "Baru", "Text file" => "Berkas teks", "Folder" => "Folder", -"Cancel upload" => "Batal mengunggah", +"From link" => "Dari tautan", +"Deleted files" => "Berkas yang dihapus", +"Cancel upload" => "Batal pengunggahan", +"You don’t have write permissions here." => "Anda tidak memiliki izin menulis di sini.", "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Download" => "Unduh", -"Unshare" => "batalkan berbagi", +"Unshare" => "Batalkan berbagi", "Upload too large" => "Unggahan terlalu besar", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini.", -"Files are being scanned, please wait." => "Berkas sedang dipindai, silahkan tunggu.", -"Current scanning" => "Sedang memindai" +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini.", +"Files are being scanned, please wait." => "Berkas sedang dipindai, silakan tunggu.", +"Current scanning" => "Yang sedang dipindai", +"Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..." ); diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 9d735c3c5411ab29e43c2d0cde6f7c5290b09612..c7c8e9ccdb79472cd687dbba1e86545d573ade6f 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -21,18 +21,17 @@ "cancel" => "hætta við", "replaced {new_name} with {old_name}" => "yfirskrifaði {new_name} með {old_name}", "undo" => "afturkalla", +"1 file uploading" => "1 skrá innsend", "'.' is an invalid file name." => "'.' er ekki leyfilegt nafn.", "File name cannot be empty." => "Nafn skráar má ekki vera tómt", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ógilt nafn, táknin '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' eru ekki leyfð.", "Unable to upload your file as it is a directory or has 0 bytes" => "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti.", -"Upload Error" => "Villa við innsendingu", -"Close" => "Loka", -"1 file uploading" => "1 skrá innsend", -"{count} files uploading" => "{count} skrár innsendar", +"Not enough space available" => "Ekki nægt pláss tiltækt", "Upload cancelled." => "Hætt við innsendingu.", "File upload is in progress. Leaving the page now will cancel the upload." => "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast.", "URL cannot be empty." => "Vefslóð má ekki vera tóm.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud", +"Error" => "Villa", "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 2aac4ef20f532176aa0fccbf4433ff377866aead..20819e256406c52647bc4f4949714f80286339b4 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "sostituito {new_name} con {old_name}", "undo" => "annulla", "perform delete operation" => "esegui l'operazione di eliminazione", +"1 file uploading" => "1 file in fase di caricamento", +"files uploading" => "caricamento file", "'.' is an invalid file name." => "'.' non è un nome file valido.", "File name cannot be empty." => "Il nome del file non può essere vuoto.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome non valido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' non sono consentiti.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Lo spazio di archiviazione è quasi pieno ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi.", "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", -"Close" => "Chiudi", -"1 file uploading" => "1 file in fase di caricamento", -"{count} files uploading" => "{count} file in fase di caricamentoe", +"Not enough space available" => "Spazio disponibile insufficiente", "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.", "URL cannot be empty." => "L'URL non può essere vuoto.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud", +"Error" => "Errore", "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 88349d1ba4022e84598b962386581d5188e5c24a..402a9f33b394e3465dbd512946cc5cd347d8f0b5 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "undo" => "元に戻す", "perform delete operation" => "削除を実行", +"1 file uploading" => "ファイルを1つアップロード中", +"files uploading" => "ファイルをアップロード中", "'.' is an invalid file name." => "'.' は無効なファイル名です。", "File name cannot be empty." => "ファイル名を空にすることはできません。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "無効な名前、'\\', '/', '<', '>', ':', '\"', '|', '?', '*' は使用できません。", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "あなたのストレージはほぼ一杯です({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。", "Unable to upload your file as it is a directory or has 0 bytes" => "ディレクトリもしくは0バイトのファイルはアップロードできません", -"Upload Error" => "アップロードエラー", -"Close" => "閉じる", -"1 file uploading" => "ファイルを1つアップロード中", -"{count} files uploading" => "{count} ファイルをアップロード中", +"Not enough space available" => "利用可能なスペースが十分にありません", "Upload cancelled." => "アップロードはキャンセルされました。", "File upload is in progress. Leaving the page now will cancel the upload." => "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。", "URL cannot be empty." => "URLは空にできません。", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。", +"Error" => "エラー", "Name" => "名前", "Size" => "サイズ", "Modified" => "更新日時", @@ -55,7 +55,7 @@ "0 is unlimited" => "0を指定した場合は無制限", "Maximum input size for ZIP files" => "ZIPファイルへの最大入力サイズ", "Save" => "保存", -"New" => "新規", +"New" => "新規作成", "Text file" => "テキストファイル", "Folder" => "フォルダ", "From link" => "リンク", diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index 421c720a330024db5d36e0e4ac8eb5322695d234..6ea75a2ea92371bf0a37326cc9ec6610e5c1d4dd 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -1,11 +1,19 @@ "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს", +"Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", +"Unable to rename file" => "ფაილის სახელის გადარქმევა ვერ მოხერხდა", +"No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა", "There is no error, the file uploaded with success" => "ჭოცდომა არ დაფიქსირდა, ფაილი წარმატებით აიტვირთა", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "ატვირთული ფაილი აჭარბებს MAX_FILE_SIZE დირექტივას, რომელიც მითითებულია HTML ფორმაში", "The uploaded file was only partially uploaded" => "ატვირთული ფაილი მხოლოდ ნაწილობრივ აიტვირთა", "No file was uploaded" => "ფაილი არ აიტვირთა", "Missing a temporary folder" => "დროებითი საქაღალდე არ არსებობს", "Failed to write to disk" => "შეცდომა დისკზე ჩაწერისას", +"Not enough storage available" => "საცავში საკმარისი ადგილი არ არის", +"Invalid directory." => "დაუშვებელი დირექტორია.", "Files" => "ფაილები", +"Delete permanently" => "სრულად წაშლა", "Delete" => "წაშლა", "Rename" => "გადარქმევა", "Pending" => "მოცდის რეჟიმში", @@ -15,13 +23,22 @@ "cancel" => "უარყოფა", "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "undo" => "დაბრუნება", -"Unable to upload your file as it is a directory or has 0 bytes" => "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს", -"Upload Error" => "შეცდომა ატვირთვისას", -"Close" => "დახურვა", +"perform delete operation" => "მიმდინარეობს წაშლის ოპერაცია", "1 file uploading" => "1 ფაილის ატვირთვა", -"{count} files uploading" => "{count} ფაილი იტვირთება", +"files uploading" => "ფაილები იტვირთება", +"'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", +"File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული.", +"Your storage is full, files can not be updated or synced anymore!" => "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!", +"Your storage is almost full ({usedSpacePercent}%)" => "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის.", +"Unable to upload your file as it is a directory or has 0 bytes" => "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს", +"Not enough space available" => "საკმარისი ადგილი არ არის", "Upload cancelled." => "ატვირთვა შეჩერებულ იქნა.", "File upload is in progress. Leaving the page now will cancel the upload." => "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას", +"URL cannot be empty." => "URL არ შეიძლება იყოს ცარიელი.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ", +"Error" => "შეცდომა", "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", @@ -41,12 +58,16 @@ "New" => "ახალი", "Text file" => "ტექსტური ფაილი", "Folder" => "საქაღალდე", +"From link" => "მისამართიდან", +"Deleted files" => "წაშლილი ფაილები", "Cancel upload" => "ატვირთვის გაუქმება", +"You don’t have write permissions here." => "თქვენ არ გაქვთ ჩაწერის უფლება აქ.", "Nothing in here. Upload something!" => "აქ არაფერი არ არის. ატვირთე რამე!", "Download" => "ჩამოტვირთვა", "Unshare" => "გაზიარების მოხსნა", "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" => "მიმდინარე სკანირება" +"Current scanning" => "მიმდინარე სკანირება", +"Upgrading filesystem cache..." => "ფაილური სისტემის ქეშის განახლება...." ); diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index ba45bdaa5d7f2b479f15f10354434d1b489560cf..88378bb486f866e5ebd0c6d497935ff693117537 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -21,6 +21,7 @@ "cancel" => "취소", "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "undo" => "실행 취소", +"1 file uploading" => "파일 1개 업로드 중", "'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "폴더 이름이 올바르지 않습니다. 이름에 문자 '\\', '/', '<', '>', ':', '\"', '|', '? ', '*'는 사용할 수 없습니다.", @@ -28,14 +29,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "저장 공간이 거의 가득 찼습니다 ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다.", "Unable to upload your file as it is a directory or has 0 bytes" => "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다", -"Upload Error" => "업로드 오류", -"Close" => "닫기", -"1 file uploading" => "파일 1개 업로드 중", -"{count} files uploading" => "파일 {count}개 업로드 중", +"Not enough space available" => "여유 공간이 부족합니다", "Upload cancelled." => "업로드가 취소되었습니다.", "File upload is in progress. Leaving the page now will cancel the upload." => "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다.", "URL cannot be empty." => "URL을 입력해야 합니다.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "폴더 이름이 유효하지 않습니다. ", +"Error" => "오류", "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 5c5a3d6bd8fae6d14a19fb6084aac33e367ba13d..7b36c3b710b7a426734832e0aea9cb8dd7888603 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,6 +1,6 @@ "داخستن", "URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", +"Error" => "هه‌ڵه", "Name" => "ناو", "Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index b052da3a027c540e4535f6ba41352bfcccaae3f5..6533a123083549f0184b1db5fe25417321c47bb6 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -11,10 +11,9 @@ "cancel" => "ofbriechen", "undo" => "réckgängeg man", "Unable to upload your file as it is a directory or has 0 bytes" => "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass.", -"Upload Error" => "Fehler beim eroplueden", -"Close" => "Zoumaachen", "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.", +"Error" => "Fehler", "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 2f16fc224200fe36a54171ea990ab6a02c9220ce..750500a3d543924f12b6dab12a982c1a1fdb9bba 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -15,13 +15,11 @@ "cancel" => "atšaukti", "replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", "undo" => "anuliuoti", -"Unable to upload your file as it is a directory or has 0 bytes" => "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas", -"Upload Error" => "Įkėlimo klaida", -"Close" => "Užverti", "1 file uploading" => "įkeliamas 1 failas", -"{count} files uploading" => "{count} įkeliami failai", +"Unable to upload your file as it is a directory or has 0 bytes" => "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas", "Upload cancelled." => "Įkėlimas atšauktas.", "File upload is in progress. Leaving the page now will cancel the upload." => "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks.", +"Error" => "Klaida", "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index a7a9284c6512fa1661554d042198dcfa1d742f11..1292514547bad878f11f1d5781d294ca34c1a9b5 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "aizvietoja {new_name} ar {old_name}", "undo" => "atsaukt", "perform delete operation" => "veikt dzēšanas darbību", +"1 file uploading" => "Augšupielādē 1 datni", "'.' is an invalid file name." => "'.' ir nederīgs datnes nosaukums.", "File name cannot be empty." => "Datnes nosaukums nevar būt tukšs.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nederīgs nosaukums, nav atļauti '\\', '/', '<', '>', ':', '\"', '|', '?' un '*'.", @@ -31,14 +32,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Jūsu krātuve ir gandrīz pilna ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nevar augšupielādēt jūsu datni, jo tā ir direktorija vai arī tās izmērs ir 0 baiti", -"Upload Error" => "Kļūda augšupielādējot", -"Close" => "Aizvērt", -"1 file uploading" => "Augšupielādē 1 datni", -"{count} files uploading" => "augšupielādē {count} datnes", +"Not enough space available" => "Nepietiek brīvas vietas", "Upload cancelled." => "Augšupielāde ir atcelta.", "File upload is in progress. Leaving the page now will cancel the upload." => "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde.", "URL cannot be empty." => "URL nevar būt tukšs.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam.", +"Error" => "Kļūda", "Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Mainīts", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index cf9ad8abafc75fdcf85a367e91786d0155dd62ca..78fed25cf9234dfae9994084db9e79708ab55249 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -17,15 +17,13 @@ "cancel" => "откажи", "replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}", "undo" => "врати", +"1 file uploading" => "1 датотека се подига", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти", -"Upload Error" => "Грешка при преземање", -"Close" => "Затвои", -"1 file uploading" => "1 датотека се подига", -"{count} files uploading" => "{count} датотеки се подигаат", "Upload cancelled." => "Преземањето е прекинато.", "File upload is in progress. Leaving the page now will cancel the upload." => "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине.", "URL cannot be empty." => "Адресата неможе да биде празна.", +"Error" => "Грешка", "Name" => "Име", "Size" => "Големина", "Modified" => "Променето", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index b15a9111e70475f697e409c700c650d4e55f456a..a390288b365a55d4caa3e0855ee6858951c1fb6f 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -12,9 +12,8 @@ "replace" => "ganti", "cancel" => "Batal", "Unable to upload your file as it is a directory or has 0 bytes" => "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes", -"Upload Error" => "Muat naik ralat", -"Close" => "Tutup", "Upload cancelled." => "Muatnaik dibatalkan.", +"Error" => "Ralat", "Name" => "Nama ", "Size" => "Saiz", "Modified" => "Dimodifikasi", diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index d9972feb6a585c8bde21be9082311499f3db0126..54042c91243c5efa3336c91b4832ed8977bc4de3 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -17,15 +17,13 @@ "cancel" => "avbryt", "replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}", "undo" => "angre", +"1 file uploading" => "1 fil lastes opp", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ugyldig navn, '\\', '/', '<', '>', ':', '\"', '|', '?' og '*' er ikke tillatt.", "Unable to upload your file as it is a directory or has 0 bytes" => "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes", -"Upload Error" => "Opplasting feilet", -"Close" => "Lukk", -"1 file uploading" => "1 fil lastes opp", -"{count} files uploading" => "{count} filer laster opp", "Upload cancelled." => "Opplasting avbrutt.", "File upload is in progress. Leaving the page now will cancel the upload." => "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen.", "URL cannot be empty." => "URL-en kan ikke være tom.", +"Error" => "Feil", "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 6af7edf2501836bf3ba9dc6d8f7dc497af5464d0..38b55d34d9583668de10395590aac77133ab4d84 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "verving {new_name} met {old_name}", "undo" => "ongedaan maken", "perform delete operation" => "uitvoeren verwijderactie", +"1 file uploading" => "1 bestand wordt ge-upload", +"files uploading" => "bestanden aan het uploaden", "'.' is an invalid file name." => "'.' is een ongeldige bestandsnaam.", "File name cannot be empty." => "Bestandsnaam kan niet leeg zijn.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Onjuiste naam; '\\', '/', '<', '>', ':', '\"', '|', '?' en '*' zijn niet toegestaan.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Uw opslagruimte zit bijna vol ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden.", "Unable to upload your file as it is a directory or has 0 bytes" => "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes", -"Upload Error" => "Upload Fout", -"Close" => "Sluit", -"1 file uploading" => "1 bestand wordt ge-upload", -"{count} files uploading" => "{count} bestanden aan het uploaden", +"Not enough space available" => "Niet genoeg ruimte beschikbaar", "Upload cancelled." => "Uploaden geannuleerd.", "File upload is in progress. Leaving the page now will cancel the upload." => "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload.", "URL cannot be empty." => "URL kan niet leeg zijn.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud", +"Error" => "Fout", "Name" => "Naam", "Size" => "Bestandsgrootte", "Modified" => "Laatst aangepast", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 8a4ab91ea7ec74d9cc21fdfad63d5545ba76d78b..8f32dc012e35a9214de0bd04d0bd16cb36394409 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -6,7 +6,7 @@ "Missing a temporary folder" => "Manglar ei mellombels mappe", "Files" => "Filer", "Delete" => "Slett", -"Close" => "Lukk", +"Error" => "Feil", "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 7a39e9399f5c3d7e49ff2af9d07c645996d74a7c..b1ef6216585a7158391eda412cc7c600f7b30ac1 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -13,11 +13,11 @@ "suggest name" => "nom prepausat", "cancel" => "anulla", "undo" => "defar", -"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", "1 file uploading" => "1 fichièr al amontcargar", +"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 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. ", +"Error" => "Error", "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index 89eb3421291944cdec37b27f1d8506c94c08d258..e9a78e2f442e182594197cb413cc21ec2b9992d4 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "zastąpiono {new_name} przez {old_name}", "undo" => "cofnij", "perform delete operation" => "wykonaj operację usunięcia", +"1 file uploading" => "1 plik wczytywany", +"files uploading" => "pliki wczytane", "'.' is an invalid file name." => "„.” jest nieprawidłową nazwą pliku.", "File name cannot be empty." => "Nazwa pliku nie może być pusta.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nieprawidłowa nazwa. Znaki '\\', '/', '<', '>', ':', '\"', '|', '?' oraz '*' są niedozwolone.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Twój magazyn jest prawie pełny ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nie można wczytać pliku, ponieważ jest on katalogiem lub ma 0 bajtów", -"Upload Error" => "Błąd wczytywania", -"Close" => "Zamknij", -"1 file uploading" => "1 plik wczytywany", -"{count} files uploading" => "Ilość przesyłanych plików: {count}", +"Not enough space available" => "Za mało miejsca", "Upload cancelled." => "Wczytywanie anulowane.", "File upload is in progress. Leaving the page now will cancel the upload." => "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane.", "URL cannot be empty." => "URL nie może być pusty.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud", +"Error" => "Błąd", "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 3bebb68227113e7e01b39f667e072fd70608fdac..ad8f37c24f63069e3fee818eebb490569cbc2380 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "Substituído {old_name} por {new_name} ", "undo" => "desfazer", "perform delete operation" => "realizar operação de exclusão", +"1 file uploading" => "enviando 1 arquivo", +"files uploading" => "enviando arquivos", "'.' is an invalid file name." => "'.' é um nome de arquivo inválido.", "File name cannot be empty." => "O nome do arquivo não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome inválido, '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Seu armazenamento está quase cheio ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes.", "Unable to upload your file as it is a directory or has 0 bytes" => "Impossível enviar seus arquivo por ele ser um diretório ou ter 0 bytes.", -"Upload Error" => "Erro de envio", -"Close" => "Fechar", -"1 file uploading" => "enviando 1 arquivo", -"{count} files uploading" => "Enviando {count} arquivos", +"Not enough space available" => "Espaço de armazenamento insuficiente", "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.", "URL cannot be empty." => "URL não pode ficar em branco", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud", +"Error" => "Erro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 7162517e8162dcff122399c849521733ad5a79b1..c06108cf2b32baad1ba369c37a3d85b1463c9329 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "substituido {new_name} por {old_name}", "undo" => "desfazer", "perform delete operation" => "Executar a tarefa de apagar", +"1 file uploading" => "A enviar 1 ficheiro", +"files uploading" => "A enviar os ficheiros", "'.' is an invalid file name." => "'.' não é um nome de ficheiro válido!", "File name cannot be empty." => "O nome do ficheiro não pode estar vazio.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nome Inválido, os caracteres '\\', '/', '<', '>', ':', '\"', '|', '?' e '*' não são permitidos.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "O seu espaço de armazenamento está quase cheiro ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes.", "Unable to upload your file as it is a directory or has 0 bytes" => "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes", -"Upload Error" => "Erro no envio", -"Close" => "Fechar", -"1 file uploading" => "A enviar 1 ficheiro", -"{count} files uploading" => "A carregar {count} ficheiros", +"Not enough space available" => "Espaço em disco insuficiente!", "Upload cancelled." => "Envio cancelado.", "File upload is in progress. Leaving the page now will cancel the upload." => "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora.", "URL cannot be empty." => "O URL não pode estar vazio.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud", +"Error" => "Erro", "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index 153caba2291e8938db91e0e8d0f3316f993df763..e3cab80fbc2515819bee397746037c736c67c177 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -21,19 +21,18 @@ "cancel" => "anulare", "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "undo" => "Anulează ultima acțiune", +"1 file uploading" => "un fișier se încarcă", "'.' is an invalid file name." => "'.' este un nume invalid de fișier.", "File name cannot be empty." => "Numele fișierului nu poate rămâne gol.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nume invalid, '\\', '/', '<', '>', ':', '\"', '|', '?' si '*' nu sunt permise.", "Your download is being prepared. This might take some time if the files are big." => "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari.", "Unable to upload your file as it is a directory or has 0 bytes" => "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes.", -"Upload Error" => "Eroare la încărcare", -"Close" => "Închide", -"1 file uploading" => "un fișier se încarcă", -"{count} files uploading" => "{count} fisiere incarcate", +"Not enough space available" => "Nu este suficient spațiu disponibil", "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.", "URL cannot be empty." => "Adresa URL nu poate fi goală.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Ownclou", +"Error" => "Eroare", "Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index cf8ee7c6c75693c0bda14776b6f5372b6af9533c..37f2e083c4cc306b2dba6e9a97247144ba836722 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "undo" => "отмена", "perform delete operation" => "выполняется операция удаления", +"1 file uploading" => "загружается 1 файл", "'.' is an invalid file name." => "'.' - неправильное имя файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправильное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' недопустимы.", @@ -31,14 +32,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти заполнено ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Загрузка началась. Это может потребовать много времени, если файл большого размера.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не удается загрузить файл размером 0 байт в каталог", -"Upload Error" => "Ошибка загрузки", -"Close" => "Закрыть", -"1 file uploading" => "загружается 1 файл", -"{count} files uploading" => "{count} файлов загружается", +"Not enough space available" => "Недостаточно свободного места", "Upload cancelled." => "Загрузка отменена.", "File upload is in progress. Leaving the page now will cancel the upload." => "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку.", "URL cannot be empty." => "Ссылка не может быть пустой.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неправильное имя каталога. Имя 'Shared' зарезервировано.", +"Error" => "Ошибка", "Name" => "Название", "Size" => "Размер", "Modified" => "Изменён", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php index 054ed8094db1b6d74d861565689a47aa736dc615..a7c6c83fde00329726970467fcef757b76951b93 100644 --- a/apps/files/l10n/ru_RU.php +++ b/apps/files/l10n/ru_RU.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "заменено {новое_имя} с {старое_имя}", "undo" => "отменить действие", "perform delete operation" => "выполняется процесс удаления", +"1 file uploading" => "загрузка 1 файла", "'.' is an invalid file name." => "'.' является неверным именем файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Некорректное имя, '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не допустимы.", @@ -31,14 +32,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Ваше хранилище почти полно ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Идёт подготовка к скачке Вашего файла. Это может занять некоторое время, если фалы большие.", "Unable to upload your file as it is a directory or has 0 bytes" => "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией", -"Upload Error" => "Ошибка загрузки", -"Close" => "Закрыть", -"1 file uploading" => "загрузка 1 файла", -"{count} files uploading" => "{количество} загружено файлов", +"Not enough space available" => "Не достаточно свободного места", "Upload cancelled." => "Загрузка отменена", "File upload is in progress. Leaving the page now will cancel the upload." => "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена.", "URL cannot be empty." => "URL не должен быть пустым.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неверное имя папки. Использование наименования 'Опубликовано' зарезервировано Owncloud", +"Error" => "Ошибка", "Name" => "Имя", "Size" => "Размер", "Modified" => "Изменен", diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index de2b89068451e83d9833f7ec8494fea9b853bb54..dfcca6f689baf80ae82c4f931f43f3c3974d0ed4 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -13,12 +13,11 @@ "suggest name" => "නමක් යෝජනා කරන්න", "cancel" => "අත් හරින්න", "undo" => "නිෂ්ප්‍රභ කරන්න", -"Upload Error" => "උඩුගත කිරීමේ දෝශයක්", -"Close" => "වසන්න", "1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", "Upload cancelled." => "උඩුගත කිරීම අත් හරින්න ලදී", "File upload is in progress. Leaving the page now will cancel the upload." => "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත", "URL cannot be empty." => "යොමුව හිස් විය නොහැක", +"Error" => "දෝෂයක්", "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index a6cb2909111d3e9183acae000e50453492db5e89..ee89a4c7d630043eb71ec5d9cb854b6f33ae89e3 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "prepísaný {new_name} súborom {old_name}", "undo" => "vrátiť", "perform delete operation" => "vykonať zmazanie", +"1 file uploading" => "1 súbor sa posiela ", +"files uploading" => "nahrávanie súborov", "'.' is an invalid file name." => "'.' je neplatné meno súboru.", "File name cannot be empty." => "Meno súboru nemôže byť prázdne", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Nesprávne meno, '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nie sú povolené hodnoty.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložisko je takmer plné ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, 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 odosielania", -"Close" => "Zavrieť", -"1 file uploading" => "1 súbor sa posiela ", -"{count} files uploading" => "{count} súborov odosielaných", +"Not enough space available" => "Nie je k dispozícii dostatok miesta", "Upload cancelled." => "Odosielanie 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.", "URL cannot be empty." => "URL nemôže byť prázdne", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud", +"Error" => "Chyba", "Name" => "Meno", "Size" => "Veľkosť", "Modified" => "Upravené", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 01405530ffad019de2b6447a9e55ee9cb8843b07..65d463e13d4269db9aff6ae5497841099841dcc5 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "preimenovano ime {new_name} z imenom {old_name}", "undo" => "razveljavi", "perform delete operation" => "izvedi opravilo brisanja", +"1 file uploading" => "Pošiljanje 1 datoteke", +"files uploading" => "poteka pošiljanje datotek", "'.' is an invalid file name." => "'.' je neveljavno ime datoteke.", "File name cannot be empty." => "Ime datoteke ne sme biti prazno polje.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neveljavno ime, znaki '\\', '/', '<', '>', ':', '\"', '|', '?' in '*' niso dovoljeni.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Mesto za shranjevanje je skoraj polno ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika.", "Unable to upload your file as it is a directory or has 0 bytes" => "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov.", -"Upload Error" => "Napaka med pošiljanjem", -"Close" => "Zapri", -"1 file uploading" => "Pošiljanje 1 datoteke", -"{count} files uploading" => "pošiljanje {count} datotek", +"Not enough space available" => "Na voljo ni dovolj prostora.", "Upload cancelled." => "Pošiljanje je preklicano.", "File upload is in progress. Leaving the page now will cancel the upload." => "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano.", "URL cannot be empty." => "Naslov URL ne sme biti prazna vrednost.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud.", +"Error" => "Napaka", "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..57c21ba002c7a3d3e470458d87544540bfeb1baf --- /dev/null +++ b/apps/files/l10n/sq.php @@ -0,0 +1,73 @@ + "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër", +"Could not move %s" => "%s nuk u spostua", +"Unable to rename file" => "Nuk është i mundur riemërtimi i skedarit", +"No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur", +"There is no error, the file uploaded with success" => "Nuk pati veprime të gabuara, skedari u ngarkua me sukses", +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Skedari i ngarkuar tejkalon udhëzimin MAX_FILE_SIZE të specifikuar në formularin HTML", +"The uploaded file was only partially uploaded" => "Skedari i ngarkuar u ngarkua vetëm pjesërisht", +"No file was uploaded" => "Nuk u ngarkua asnjë skedar", +"Missing a temporary folder" => "Një dosje e përkohshme nuk u gjet", +"Failed to write to disk" => "Ruajtja në disk dështoi", +"Not enough storage available" => "Nuk ka mbetur hapësirë memorizimi e mjaftueshme", +"Invalid directory." => "Dosje e pavlefshme.", +"Files" => "Skedarët", +"Delete permanently" => "Elimino përfundimisht", +"Delete" => "Elimino", +"Rename" => "Riemërto", +"Pending" => "Pezulluar", +"{new_name} already exists" => "{new_name} ekziston", +"replace" => "zëvëndëso", +"suggest name" => "sugjero një emër", +"cancel" => "anulo", +"replaced {new_name} with {old_name}" => "U zëvëndësua {new_name} me {old_name}", +"undo" => "anulo", +"perform delete operation" => "ekzekuto operacionin e eliminimit", +"1 file uploading" => "Po ngarkohet 1 skedar", +"files uploading" => "po ngarkoj skedarët", +"'.' is an invalid file name." => "'.' është emër i pavlefshëm.", +"File name cannot be empty." => "Emri i skedarit nuk mund të jetë bosh.", +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Emër i pavlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen.", +"Your storage is full, files can not be updated or synced anymore!" => "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sinkronizoni më skedarët.", +"Your storage is almost full ({usedSpacePercent}%)" => "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj.", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nuk është i mundur ngarkimi i skedarit tuaj sepse është dosje ose ka dimension 0 byte", +"Not enough space available" => "Nuk ka hapësirë memorizimi e mjaftueshme", +"Upload cancelled." => "Ngarkimi u anulua.", +"File upload is in progress. Leaving the page now will cancel the upload." => "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet.", +"URL cannot be empty." => "URL-i nuk mund të jetë bosh.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i.", +"Error" => "Veprim i gabuar", +"Name" => "Emri", +"Size" => "Dimensioni", +"Modified" => "Modifikuar", +"1 folder" => "1 dosje", +"{count} folders" => "{count} dosje", +"1 file" => "1 skedar", +"{count} files" => "{count} skedarë", +"Upload" => "Ngarko", +"File handling" => "Trajtimi i skedarit", +"Maximum upload size" => "Dimensioni maksimal i ngarkimit", +"max. possible: " => "maks. i mundur:", +"Needed for multi-file and folder downloads." => "Duhet për shkarkimin e dosjeve dhe të skedarëve", +"Enable ZIP-download" => "Aktivizo shkarkimin e ZIP-eve", +"0 is unlimited" => "0 është i pakufizuar", +"Maximum input size for ZIP files" => "Dimensioni maksimal i ngarkimit të skedarëve ZIP", +"Save" => "Ruaj", +"New" => "I ri", +"Text file" => "Skedar teksti", +"Folder" => "Dosje", +"From link" => "Nga lidhja", +"Deleted files" => "Skedarë të eliminuar", +"Cancel upload" => "Anulo ngarkimin", +"You don’t have write permissions here." => "Nuk keni të drejta për të shkruar këtu.", +"Nothing in here. Upload something!" => "Këtu nuk ka asgjë. Ngarkoni diçka!", +"Download" => "Shkarko", +"Unshare" => "Hiq ndarjen", +"Upload too large" => "Ngarkimi është shumë i madh", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server.", +"Files are being scanned, please wait." => "Skedarët po analizohen, ju lutemi pritni.", +"Current scanning" => "Analizimi aktual", +"Upgrading filesystem cache..." => "Po përmirësoj memorjen e filesystem-it..." +); diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index fe71ee9c90d1b05bcd9712f9b5ca340dd0157d43..50d587ebb26255b12c7fb20b81b1d298502feabb 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -1,4 +1,8 @@ "Не могу да преместим %s – датотека с овим именом већ постоји", +"Could not move %s" => "Не могу да преместим %s", +"Unable to rename file" => "Не могу да преименујем датотеку", +"No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", "There is no error, the file uploaded with success" => "Није дошло до грешке. Датотека је успешно отпремљена.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Отпремљена датотека прелази смерницу upload_max_filesize у датотеци php.ini:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Отпремљена датотека прелази смерницу MAX_FILE_SIZE која је наведена у HTML обрасцу", @@ -6,7 +10,10 @@ "No file was uploaded" => "Датотека није отпремљена", "Missing a temporary folder" => "Недостаје привремена фасцикла", "Failed to write to disk" => "Не могу да пишем на диск", +"Not enough storage available" => "Нема довољно простора", +"Invalid directory." => "неисправна фасцикла.", "Files" => "Датотеке", +"Delete permanently" => "Обриши за стално", "Delete" => "Обриши", "Rename" => "Преименуј", "Pending" => "На чекању", @@ -16,14 +23,22 @@ "cancel" => "откажи", "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "undo" => "опозови", +"perform delete operation" => "обриши", +"1 file uploading" => "Отпремам 1 датотеку", +"files uploading" => "датотеке се отпремају", +"'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", +"File name cannot be empty." => "Име датотеке не може бити празно.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неисправан назив. Следећи знакови нису дозвољени: \\, /, <, >, :, \", |, ? и *.", +"Your storage is full, files can not be updated or synced anymore!" => "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване.", +"Your storage is almost full ({usedSpacePercent}%)" => "Ваше складиште је скоро па пуно ({usedSpacePercent}%)", +"Your download is being prepared. This might take some time if the files are big." => "Припремам преузимање. Ово може да потраје ако су датотеке велике.", "Unable to upload your file as it is a directory or has 0 bytes" => "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова", -"Upload Error" => "Грешка при отпремању", -"Close" => "Затвори", -"1 file uploading" => "Отпремам 1 датотеку", -"{count} files uploading" => "Отпремам {count} датотеке/а", +"Not enough space available" => "Нема довољно простора", "Upload cancelled." => "Отпремање је прекинуто.", "File upload is in progress. Leaving the page now will cancel the upload." => "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање.", +"URL cannot be empty." => "Адреса не може бити празна.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud.", +"Error" => "Грешка", "Name" => "Назив", "Size" => "Величина", "Modified" => "Измењено", @@ -44,12 +59,15 @@ "Text file" => "текстуална датотека", "Folder" => "фасцикла", "From link" => "Са везе", +"Deleted files" => "Обрисане датотеке", "Cancel upload" => "Прекини отпремање", +"You don’t have write permissions here." => "Овде немате дозволу за писање.", "Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!", "Download" => "Преузми", "Unshare" => "Укини дељење", "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" => "Тренутно скенирање" +"Current scanning" => "Тренутно скенирање", +"Upgrading filesystem cache..." => "Дограђујем кеш система датотека…" ); diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 0fda24532dca3d034d3b4cc57968d59ddd6cb9a0..fb08bca2cae91733e2c1501ed3bace48110858ec 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -6,7 +6,6 @@ "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", "Delete" => "Obriši", -"Close" => "Zatvori", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index ca9610a33c7766bb746df9c14008180b134b41fd..125788ad13dc5dcae062d374fb4caba27f14aa0e 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "ersatt {new_name} med {old_name}", "undo" => "ångra", "perform delete operation" => "utför raderingen", +"1 file uploading" => "1 filuppladdning", "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", "File name cannot be empty." => "Filnamn kan inte vara tomt.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Ogiltigt namn, '\\', '/', '<', '>', ':', '\"', '|', '?' och '*' är inte tillåtet.", @@ -31,14 +32,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Ditt lagringsutrymme är nästan fullt ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Din nedladdning förbereds. Det kan ta tid om det är stora filer.", "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", -"Close" => "Stäng", -"1 file uploading" => "1 filuppladdning", -"{count} files uploading" => "{count} filer laddas upp", +"Not enough space available" => "Inte tillräckligt med utrymme tillgängligt", "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.", "URL cannot be empty." => "URL kan inte vara tom.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud", +"Error" => "Fel", "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 304453f1290b87b5b30e3df562bf0c77488625ef..b88379043d09416438d87d8da0e670d4fdd49b93 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -16,15 +16,13 @@ "cancel" => "இரத்து செய்க", "replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது", "undo" => "முன் செயல் நீக்கம் ", +"1 file uploading" => "1 கோப்பு பதிவேற்றப்படுகிறது", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", "Unable to upload your file as it is a directory or has 0 bytes" => "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை", -"Upload Error" => "பதிவேற்றல் வழு", -"Close" => "மூடுக", -"1 file uploading" => "1 கோப்பு பதிவேற்றப்படுகிறது", -"{count} files uploading" => "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது", "Upload cancelled." => "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது", "File upload is in progress. Leaving the page now will cancel the upload." => "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்.", "URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", +"Error" => "வழு", "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index 174b9022471bbfca6406bfb346c1479d6192dfb8..b280200d30a37f9eb1fb3b3f37689962dc46880e 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -2,7 +2,7 @@ "Delete permanently" => "శాశ్వతంగా తొలగించు", "Delete" => "తొలగించు", "cancel" => "రద్దుచేయి", -"Close" => "మూసివేయి", +"Error" => "పొరపాటు", "Name" => "పేరు", "Size" => "పరిమాణం", "Save" => "భద్రపరచు" diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index 2353501b4782dfe8ba4649a43ef9dabf282ea3e4..0e7d32bf12da1273a38f1690887f0f3554b9001b 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -23,6 +23,7 @@ "replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", "undo" => "เลิกทำ", "perform delete operation" => "ดำเนินการตามคำสั่งลบ", +"1 file uploading" => "กำลังอัพโหลดไฟล์ 1 ไฟล์", "'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", "File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "ชื่อที่ใช้ไม่ถูกต้อง, '\\', '/', '<', '>', ':', '\"', '|', '?' และ '*' ไม่ได้รับอนุญาตให้ใช้งานได้", @@ -30,14 +31,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "พื้นที่จัดเก็บข้อมูลของคุณใกล้เต็มแล้ว ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่", "Unable to upload your file as it is a directory or has 0 bytes" => "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์", -"Upload Error" => "เกิดข้อผิดพลาดในการอัพโหลด", -"Close" => "ปิด", -"1 file uploading" => "กำลังอัพโหลดไฟล์ 1 ไฟล์", -"{count} files uploading" => "กำลังอัพโหลด {count} ไฟล์", +"Not enough space available" => "มีพื้นที่เหลือไม่เพียงพอ", "Upload cancelled." => "การอัพโหลดถูกยกเลิก", "File upload is in progress. Leaving the page now will cancel the upload." => "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก", "URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น", +"Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "ปรับปรุงล่าสุด", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 547b490330a93a616df4bb208f62f8635eddd5ff..84da59cee082201b7e48d84ad744f14d357ba7f9 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "{new_name} ismi {old_name} ile değiştirildi", "undo" => "geri al", "perform delete operation" => "Silme işlemini gerçekleştir", +"1 file uploading" => "1 dosya yüklendi", +"files uploading" => "Dosyalar yükleniyor", "'.' is an invalid file name." => "'.' geçersiz dosya adı.", "File name cannot be empty." => "Dosya adı boş olamaz.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Geçersiz isim, '\\', '/', '<', '>', ':', '\"', '|', '?' ve '*' karakterlerine izin verilmemektedir.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Depolama alanınız neredeyse dolu ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir.", "Unable to upload your file as it is a directory or has 0 bytes" => "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi", -"Upload Error" => "Yükleme hatası", -"Close" => "Kapat", -"1 file uploading" => "1 dosya yüklendi", -"{count} files uploading" => "{count} dosya yükleniyor", +"Not enough space available" => "Yeterli disk alanı yok", "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.", "URL cannot be empty." => "URL boş olamaz.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir.", +"Error" => "Hata", "Name" => "Ad", "Size" => "Boyut", "Modified" => "Değiştirilme", diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index f5e161996c0e2e993ba98a802d348f50e4415a24..65b4ec1433c91743896981451870759df9bbf10d 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", "undo" => "відмінити", "perform delete operation" => "виконати операцію видалення", +"1 file uploading" => "1 файл завантажується", +"files uploading" => "файли завантажуються", "'.' is an invalid file name." => "'.' це невірне ім'я файлу.", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Невірне ім'я, '\\', '/', '<', '>', ':', '\"', '|', '?' та '*' не дозволені.", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Ваше сховище майже повне ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі.", "Unable to upload your file as it is a directory or has 0 bytes" => "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт", -"Upload Error" => "Помилка завантаження", -"Close" => "Закрити", -"1 file uploading" => "1 файл завантажується", -"{count} files uploading" => "{count} файлів завантажується", +"Not enough space available" => "Місця більше немає", "Upload cancelled." => "Завантаження перервано.", "File upload is in progress. Leaving the page now will cancel the upload." => "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження.", "URL cannot be empty." => "URL не може бути пустим.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud", +"Error" => "Помилка", "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", diff --git a/apps/files/l10n/ur_PK.php b/apps/files/l10n/ur_PK.php new file mode 100644 index 0000000000000000000000000000000000000000..e13a623fecc335ac65e09bcaeca82fe9abb71099 --- /dev/null +++ b/apps/files/l10n/ur_PK.php @@ -0,0 +1,3 @@ + "ایرر" +); diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index affca6c12f86b9109dcd20781ea2aeb209598fec..73cf1544924df8b28ca9f6e437c787e113fd6d67 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "đã thay thế {new_name} bằng {old_name}", "undo" => "lùi lại", "perform delete operation" => "thực hiện việc xóa", +"1 file uploading" => "1 tệp tin đang được tải lên", "'.' is an invalid file name." => "'.' là một tên file không hợp lệ", "File name cannot be empty." => "Tên file không được rỗng", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Tên không hợp lệ, '\\', '/', '<', '>', ':', '\"', '|', '?' và '*' thì không được phép dùng.", @@ -31,14 +32,11 @@ "Your storage is almost full ({usedSpacePercent}%)" => "Your storage is almost full ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "Your download is being prepared. This might take some time if the files are big.", "Unable to upload your file as it is a directory or has 0 bytes" => "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte", -"Upload Error" => "Tải lên lỗi", -"Close" => "Đóng", -"1 file uploading" => "1 tệp tin đang được tải lên", -"{count} files uploading" => "{count} tập tin đang tải lên", "Upload cancelled." => "Hủy tải lên", "File upload is in progress. Leaving the page now will cancel the upload." => "Tập tin tải lên đang được xử lý. Nếu bạn rời khỏi trang bây giờ sẽ hủy quá trình này.", "URL cannot be empty." => "URL không được để trống.", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Invalid folder name. Usage of 'Shared' is reserved by Owncloud", +"Error" => "Lỗi", "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index fa75627f141da59894425a31de973b64b97cde34..33e21e544cd0bbc90927618893567ac4b716f2e9 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -16,14 +16,12 @@ "cancel" => "取消", "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "undo" => "撤销", -"Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", -"Upload Error" => "上传错误", -"Close" => "关闭", "1 file uploading" => "1 个文件正在上传", -"{count} files uploading" => "{count} 个文件正在上传", +"Unable to upload your file as it is a directory or has 0 bytes" => "不能上传你指定的文件,可能因为它是个文件夹或者大小为0", "Upload cancelled." => "上传取消了", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传。关闭页面会取消上传。", "URL cannot be empty." => "网址不能为空。", +"Error" => "出错", "Name" => "名字", "Size" => "大小", "Modified" => "修改日期", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 2923126d10fbe08c585ace566a54f0b63b5d97be..8740298c622e4fdf785acf0d9a822cc40667043d 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -24,6 +24,7 @@ "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "undo" => "撤销", "perform delete operation" => "进行删除操作", +"1 file uploading" => "1个文件上传中", "'.' is an invalid file name." => "'.' 是一个无效的文件名。", "File name cannot be empty." => "文件名不能为空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "无效名称,'\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 不被允许使用。", @@ -31,14 +32,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "您的存储空间即将用完 ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "下载正在准备中。如果文件较大可能会花费一些时间。", "Unable to upload your file as it is a directory or has 0 bytes" => "无法上传文件,因为它是一个目录或者大小为 0 字节", -"Upload Error" => "上传错误", -"Close" => "关闭", -"1 file uploading" => "1个文件上传中", -"{count} files uploading" => "{count} 个文件上传中", +"Not enough space available" => "没有足够可用空间", "Upload cancelled." => "上传已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "文件正在上传中。现在离开此页会导致上传动作被取消。", "URL cannot be empty." => "URL不能为空", "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。", +"Error" => "错误", "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 5b12ad24420c4fde2592ba66e8b7a50b7722421b..063acef5f049d4dcdf37d033008251d7ff34e094 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -1,6 +1,7 @@ "文件", "Delete" => "刪除", +"Error" => "錯誤", "Name" => "名稱", "{count} folders" => "{}文件夾", "Upload" => "上傳", diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 997319115a7be948be0dfd80dc58f2dd8fbba323..c61cf0e2225b3cba55bdda22c6086e86d3e6cd73 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -7,8 +7,8 @@ "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "上傳的檔案大小超過 php.ini 當中 upload_max_filesize 參數的設定:", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "上傳的檔案大小超過 HTML 表單中 MAX_FILE_SIZE 的限制", "The uploaded file was only partially uploaded" => "只有檔案的一部分被上傳", -"No file was uploaded" => "無已上傳檔案", -"Missing a temporary folder" => "遺失暫存資料夾", +"No file was uploaded" => "沒有檔案被上傳", +"Missing a temporary folder" => "找不到暫存資料夾", "Failed to write to disk" => "寫入硬碟失敗", "Not enough storage available" => "儲存空間不足", "Invalid directory." => "無效的資料夾。", @@ -24,6 +24,8 @@ "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "undo" => "復原", "perform delete operation" => "進行刪除動作", +"1 file uploading" => "1 個檔案正在上傳", +"files uploading" => "檔案正在上傳中", "'.' is an invalid file name." => "'.' 是不合法的檔名。", "File name cannot be empty." => "檔名不能為空。", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "檔名不合法,不允許 '\\', '/', '<', '>', ':', '\"', '|', '?' 和 '*' 。", @@ -31,14 +33,12 @@ "Your storage is almost full ({usedSpacePercent}%)" => "您的儲存空間快要滿了 ({usedSpacePercent}%)", "Your download is being prepared. This might take some time if the files are big." => "正在準備您的下載,若您的檔案較大,將會需要更多時間。", "Unable to upload your file as it is a directory or has 0 bytes" => "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0", -"Upload Error" => "上傳發生錯誤", -"Close" => "關閉", -"1 file uploading" => "1 個檔案正在上傳", -"{count} files uploading" => "{count} 個檔案正在上傳", -"Upload cancelled." => "上傳取消", +"Not enough space available" => "沒有足夠的可用空間", +"Upload cancelled." => "上傳已取消", "File upload is in progress. Leaving the page now will cancel the upload." => "檔案上傳中。離開此頁面將會取消上傳。", -"URL cannot be empty." => "URL 不能為空白.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留", +"URL cannot be empty." => "URL 不能為空白。", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留", +"Error" => "錯誤", "Name" => "名稱", "Size" => "大小", "Modified" => "修改", @@ -61,13 +61,13 @@ "From link" => "從連結", "Deleted files" => "已刪除的檔案", "Cancel upload" => "取消上傳", -"You don’t have write permissions here." => "您在這裏沒有編輯權。", -"Nothing in here. Upload something!" => "沒有任何東西。請上傳內容!", +"You don’t have write permissions here." => "您在這裡沒有編輯權。", +"Nothing in here. Upload something!" => "這裡什麼也沒有,上傳一些東西吧!", "Download" => "下載", "Unshare" => "取消共享", "Upload too large" => "上傳過大", -"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 ", +"The files you are trying to upload exceed the maximum size for file uploads on this server." => "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。", "Files are being scanned, please wait." => "正在掃描檔案,請稍等。", "Current scanning" => "目前掃描", -"Upgrading filesystem cache..." => "正在更新檔案系統快取..." +"Upgrading filesystem cache..." => "正在升級檔案系統快取..." ); diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index 8ea3a718e858670f76145bf4373fccda4f3ecddb..69fcb94e68197d05ced7d9dc9c4788c8e3a406c4 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -52,7 +52,7 @@
-
t('You don’t have write permissions here.'))?>
+
diff --git a/apps/files/templates/part.list.php b/apps/files/templates/part.list.php index 59267690e66585b8dd88637436dff55fc4619fa3..1719d25e660103893c20d07fb3cf85e8fb4053e8 100644 --- a/apps/files/templates/part.list.php +++ b/apps/files/templates/part.list.php @@ -9,9 +9,9 @@ // the older the file, the brighter the shade of grey; days*14 $relative_date_color = round((time()-$file['mtime'])/60/60/24*14); if($relative_date_color>200) $relative_date_color = 200; - $name = str_replace('+', '%20', urlencode($file['name'])); + $name = rawurlencode($file['name']); $name = str_replace('%2F', '/', $name); - $directory = str_replace('+', '%20', urlencode($file['directory'])); + $directory = rawurlencode($file['directory']); $directory = str_replace('%2F', '/', $directory); ?> "ენკრიპცია", +"File encryption is enabled." => "ფაილის ენკრიპცია ჩართულია.", +"The following file types will not be encrypted:" => "შემდეგი ფაილური ტიპების ენკრიპცია არ მოხდება:", +"Exclude the following file types from encryption:" => "ამოიღე შემდეგი ფაილის ტიპები ენკრიპციიდან:", +"None" => "არა" +); diff --git a/apps/files_encryption/lib/keymanager.php b/apps/files_encryption/lib/keymanager.php index 9885f5e5508b560ac37647bfb4e5678c28eda4f8..0e1dafeed7581d251f9e9c90414016d7584ff66d 100755 --- a/apps/files_encryption/lib/keymanager.php +++ b/apps/files_encryption/lib/keymanager.php @@ -106,6 +106,7 @@ class Keymanager { */ public static function setFileKey( \OC_FilesystemView $view, $path, $userId, $catfile ) { + $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; //here we need the currently logged in user, while userId can be a different user @@ -129,7 +130,7 @@ class Keymanager { $result = $view->file_put_contents( $basePath . '/' . $targetPath . '.key', $catfile ); - \OC_FileProxy::$enabled = true; + \OC_FileProxy::$enabled = $proxyStatus; return $result; diff --git a/apps/files_encryption/lib/proxy.php b/apps/files_encryption/lib/proxy.php index cb7cb8a2cc75cb6968a1fdd7c941dc434e979674..b805ec648d45877f30d556fcffdaccd5e90a43bb 100644 --- a/apps/files_encryption/lib/proxy.php +++ b/apps/files_encryption/lib/proxy.php @@ -118,9 +118,6 @@ class Proxy extends \OC_FileProxy { // Decrypt the keyfile $plainKey = Crypt::multiKeyDecrypt( $encKeyfile, $shareKey, $privateKey ); - -// trigger_error("\$shareKey = $shareKey"); -// trigger_error("\$plainKey = $plainKey"); } else { @@ -145,7 +142,6 @@ class Proxy extends \OC_FileProxy { $multiEncrypted = Crypt::multiKeyEncrypt( $plainKey, $publicKeys ); // Save sharekeys to user folders - Keymanager::setShareKeys( $rootView, $filePath, $multiEncrypted['keys'] ); // Set encrypted keyfile as common varname @@ -208,8 +204,6 @@ class Proxy extends \OC_FileProxy { $plainKeyfile = Crypt::multiKeyDecrypt( $encKeyfile, $shareKey, $privateKey ); $plainData = Crypt::symmetricDecryptFileContent( $data, $plainKeyfile ); - -// trigger_error("PLAINDATA = ". var_export($plainData, 1)); } elseif ( Crypt::mode() == 'server' diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php index 6fb95934c32be68e337386fbee3cfff4990001c3..9a37c3b08ee137c64ac9c4d0f0125d0f0d296c3a 100644 --- a/apps/files_encryption/lib/stream.php +++ b/apps/files_encryption/lib/stream.php @@ -86,6 +86,9 @@ class Stream { // rawPath is relative to the data directory $this->rawPath = $this->userId . '/files/' . $this->relPath; + // Fix .part filenames + $this->rawPath = Keymanager::fixPartialFilePath( $this->rawPath ); + if ( dirname( $this->rawPath ) == 'streams' and isset( self::$sourceStreams[basename( $this->rawPath )] ) @@ -257,11 +260,6 @@ class Stream { $this->plainKey = Crypt::multiKeyDecrypt( $this->encKeyfile, $shareKey, $privateKey ); -// trigger_error( '$this->relPath = '.$this->relPath ); -// trigger_error( '$this->userId = '.$this->userId); -// trigger_error( '$this->encKeyfile = '.$this->encKeyfile ); -// trigger_error( '$this->plainKey1 = '.var_export($this->plainKey, 1)); - return true; } else { @@ -352,12 +350,6 @@ class Stream { // Save the sharekeys Keymanager::setShareKeys( $view, $this->relPath, $this->encKeyfiles['keys'] ); -// trigger_error( "\$this->encKeyfiles['data'] = ".$this->encKeyfiles['data'] ); -// trigger_error( '$this->relPath = '.$this->relPath ); -// trigger_error( '$this->userId = '.$this->userId); -// trigger_error( '$this->encKeyfile = '.var_export($this->encKeyfiles, 1) ); -// trigger_error( '$this->plainKey2 = '.var_export($this->plainKey, 1)); - // If extra data is left over from the last round, make sure it // is integrated into the next 6126 / 8192 block if ( $this->writeCache ) { @@ -420,7 +412,7 @@ class Stream { // Clear $data ready for next round $data = ''; -// + } else { // Read the chunk from the start of $data @@ -428,8 +420,6 @@ class Stream { $encrypted = $this->preWriteEncrypt( $chunk, $this->plainKey ); - //trigger_error("\$encrypted = $encrypted"); - // Write the data chunk to disk. This will be // attended to the last data chunk if the file // being handled totals more than 6126 bytes @@ -515,9 +505,9 @@ class Stream { \OC\Files\Filesystem::putFileInfo( $this->relPath, array( 'encrypted' => true, 'size' => $this->size ), '' ); } - - return fclose( $this->handle ); + return fclose( $this->handle ); + } } diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 1b69ad320cfd0c11369e4500c511327be17cd024..f9198e0606aff08620bf80499b8743a6f0e20864 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -24,20 +24,16 @@ # Bugs # ---- # Sharing a file to a user without encryption set up will not provide them with access but won't notify the sharer -# Sharing files to other users currently broken (due to merge + ongoing implementation of support for lost password recovery) # Timeouts on first login due to encryption of very large files (fix in progress, as a result streaming is currently broken) # Sharing all files to admin for recovery purposes still in progress # Possibly public links are broken (not tested since last merge of master) -# getOwner() currently returns false in all circumstances, unsure what code is returning this... # encryptAll during login mangles paths: /files/files/ # encryptAll is accessing files via encryption proxy - perhaps proxies should be disabled? -# Sharekeys appear to not be deleted when their parent file is, and thus get orphaned # Missing features # ---------------- # Make sure user knows if large files weren't encrypted -# Support for resharing encrypted files # Test @@ -496,7 +492,7 @@ class Util { * @note Encryption is recursive */ public function encryptAll( $publicKey, $dirPath, $legacyPassphrase = null, $newPassphrase = null ) { - + if ( $found = $this->findEncFiles( $dirPath ) ) { // Disable proxy to prevent file being encrypted twice @@ -504,37 +500,39 @@ class Util { // Encrypt unencrypted files foreach ( $found['plain'] as $plainFile ) { - - // Open plain file handle - - - // Open enc file handle - - - // Read plain file in chunks //relative to data//file $relPath = $plainFile['path']; + //relative to /data $rawPath = $this->userId . '/files/' . $plainFile['path']; - - // Open handle with for binary reading - $plainHandle = $this->view->fopen( $rawPath, 'rb' ); - // Open handle with for binary writing - - $encHandle = fopen( 'crypt://' . $relPath . '.tmp', 'wb' ); - // Overwrite the existing file with the encrypted one - //$this->view->file_put_contents( $plainFile['path'], $encrypted['data'] ); - $size = stream_copy_to_stream( $plainHandle, $encHandle ); - - $this->view->rename($rawPath . '.tmp', $rawPath); - - // Fetch the key that has just been set/updated by the stream - //$encKey = Keymanager::getFileKey( $this->view, $this->userId, $relPath ); + // Open plain file handle for binary reading + $plainHandle1 = $this->view->fopen( $rawPath, 'rb' ); + + // 2nd handle for moving plain file - view->rename() doesn't work, this is a workaround + $plainHandle2 = $this->view->fopen( $rawPath . '.plaintmp', 'wb' ); + + // Move plain file to a temporary location + stream_copy_to_stream( $plainHandle1, $plainHandle2 ); + + // Close access to original file +// $this->view->fclose( $plainHandle1 ); // not implemented in view{} + + // Delete original plain file so we can rename enc file later + $this->view->unlink( $rawPath ); + + // Open enc file handle for binary writing, with same filename as original plain file + $encHandle = fopen( 'crypt://' . $relPath, 'wb' ); + + // Save data from plain stream to new encrypted file via enc stream + // NOTE: Stream{} will be invoked for handling + // the encryption, and should handle all keys + // and their generation etc. automatically + $size = stream_copy_to_stream( $plainHandle2, $encHandle ); - // Save keyfile - //Keymanager::setFileKey( $this->view, $relPath, $this->userId, $encKey ); + // Delete temporary plain copy of file + $this->view->unlink( $rawPath . '.plaintmp' ); // Add the file to the cache \OC\Files\Filesystem::putFileInfo( $plainFile['path'], array( 'encrypted'=>true, 'size' => $size ), '' ); diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..aee58477639591fe954309b54bcc4f167ce98ede --- /dev/null +++ b/apps/files_external/l10n/cy_GB.php @@ -0,0 +1,4 @@ + "Defnyddwyr", +"Delete" => "Dileu" +); diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index 0c9c6c390443c5a789b73dad88908215cf08f4e4..c1c070e3d7fcba07b9014f2dd9c68a75187358d3 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -8,9 +8,11 @@ "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => " Advarsel: FTP-understøttelse i PHP ikke er aktiveret eller installeret. Montering af FTP delinger er ikke muligt. Spørg din systemadministrator om at installere det.", "External Storage" => "Ekstern opbevaring", "Folder name" => "Mappenavn", +"External storage" => "Eksternt lager", "Configuration" => "Opsætning", "Options" => "Valgmuligheder", "Applicable" => "Kan anvendes", +"Add storage" => "Tilføj lager", "None set" => "Ingen sat", "All Users" => "Alle brugere", "Groups" => "Grupper", diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 38b5a098f6266fe169329cde07322dff6e65f3e6..6c519a1b413bd8705f48841df49bcb40ce80fe90 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -8,9 +8,11 @@ "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Προσοχή: Η υποστήριξη FTP στην PHP δεν ενεργοποιήθηκε ή εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση FTP. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει.", "External Storage" => "Εξωτερικό Αποθηκευτικό Μέσο", "Folder name" => "Όνομα φακέλου", +"External storage" => "Εξωτερική αποθήκευση", "Configuration" => "Ρυθμίσεις", "Options" => "Επιλογές", "Applicable" => "Εφαρμόσιμο", +"Add storage" => "Προσθηκη αποθηκευσης", "None set" => "Κανένα επιλεγμένο", "All Users" => "Όλοι οι Χρήστες", "Groups" => "Ομάδες", diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index fd0cdefd347cd7bfb232ebc93777c66aeb847390..5d1eb0887ba18ec49ae4bc5f94f34db329f5c931 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -4,11 +4,15 @@ "Grant access" => "Anna ligipääs", "Please provide a valid Dropbox app key and secret." => "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna.", "Error configuring Google Drive storage" => "Viga Google Drive'i salvestusruumi seadistamisel", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi.", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Hoiatus: FTP tugi puudub PHP paigalduses. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi.", "External Storage" => "Väline salvestuskoht", "Folder name" => "Kausta nimi", +"External storage" => "Väline andmehoidla", "Configuration" => "Seadistamine", "Options" => "Valikud", "Applicable" => "Rakendatav", +"Add storage" => "Lisa andmehoidla", "None set" => "Pole määratud", "All Users" => "Kõik kasutajad", "Groups" => "Grupid", diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index 4cf97f2fc35db8e525376a5be388b119e831133b..2f7d65fbe9caacb9610abadcede8627cef3aaefc 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -8,9 +8,11 @@ "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Varoitus: PHP:n FTP-tuki ei ole käytössä tai sitä ei ole asennettu. FTP-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää ottamaan FTP-tuki käyttöön.", "External Storage" => "Erillinen tallennusväline", "Folder name" => "Kansion nimi", +"External storage" => "Ulkoinen tallennustila", "Configuration" => "Asetukset", "Options" => "Valinnat", "Applicable" => "Sovellettavissa", +"Add storage" => "Lisää tallennustila", "None set" => "Ei asetettu", "All Users" => "Kaikki käyttäjät", "Groups" => "Ryhmät", diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index 647220706bae67ec6469ea2ae3c8c6e0ff100e71..30cd28bba1c91fb9f70fcd6809a12040c796f830 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -1,22 +1,25 @@ "Akses diberikan", -"Error configuring Dropbox storage" => "Kesalahan dalam mengkonfigurasi penyimpanan Dropbox", +"Error configuring Dropbox storage" => "Kesalahan dalam mengonfigurasi penyimpanan Dropbox", "Grant access" => "Berikan hak akses", "Please provide a valid Dropbox app key and secret." => "Masukkan kunci dan sandi aplikasi Dropbox yang benar.", "Error configuring Google Drive storage" => "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Peringatan: Dukungan FTP di PHP tidak aktif atau tidak terpasang. Mount direktori FTP tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya.", "External Storage" => "Penyimpanan Eksternal", +"Folder name" => "Nama folder", +"External storage" => "Penyimpanan eksternal", "Configuration" => "Konfigurasi", -"Options" => "Pilihan", +"Options" => "Opsi", "Applicable" => "Berlaku", +"Add storage" => "Tambahkan penyimpanan", "None set" => "Tidak satupun di set", "All Users" => "Semua Pengguna", "Groups" => "Grup", "Users" => "Pengguna", "Delete" => "Hapus", "Enable User External Storage" => "Aktifkan Penyimpanan Eksternal Pengguna", -"Allow users to mount their own external storage" => "Ijinkan pengguna untuk me-mount penyimpanan eksternal mereka", +"Allow users to mount their own external storage" => "Izinkan pengguna untuk mengaitkan penyimpanan eksternal mereka", "SSL root certificates" => "Sertifikat root SSL", "Import Root Certificate" => "Impor Sertifikat Root" ); diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index efccca9fd782b119528d5b037f8ac194d41338e3..d10f82849dc2d932a1eee74985b4a81bbf627a83 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -1,5 +1,25 @@ "დაშვება მინიჭებულია", +"Error configuring Dropbox storage" => "შეცდომა Dropbox საცავის კონფიგურირების დროს", +"Grant access" => "დაშვების მინიჭება", +"Please provide a valid Dropbox app key and secret." => "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი.", +"Error configuring Google Drive storage" => "შეცდომა Google Drive საცავის კონფიგურირების დროს", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის.", +"External Storage" => "ექსტერნალ საცავი", +"Folder name" => "ფოლდერის სახელი", +"External storage" => "ექსტერნალ საცავი", +"Configuration" => "კონფიგურაცია", +"Options" => "ოფცია", +"Applicable" => "მიღებადი", +"Add storage" => "საცავის დამატება", +"None set" => "არაფერია მითითებული", +"All Users" => "ყველა მომხმარებელი", "Groups" => "ჯგუფები", "Users" => "მომხმარებელი", -"Delete" => "წაშლა" +"Delete" => "წაშლა", +"Enable User External Storage" => "მომხმარებლის ექსტერნალ საცავის აქტივირება", +"Allow users to mount their own external storage" => "მიეცით მომხმარებლებს თავისი ექსტერნალ საცავის მონტირების უფლება", +"SSL root certificates" => "SSL root სერთიფიკატები", +"Import Root Certificate" => "Root სერთიფიკატის იმპორტირება" ); diff --git a/apps/files_external/l10n/lt_LT.php b/apps/files_external/l10n/lt_LT.php index f7dca99ef654bb245aaf65135c2e4977990c4e3b..9bf997d87cb8d0a21a79ba115c6d2993d483549c 100644 --- a/apps/files_external/l10n/lt_LT.php +++ b/apps/files_external/l10n/lt_LT.php @@ -4,11 +4,15 @@ "Grant access" => "Suteikti priėjimą", "Please provide a valid Dropbox app key and secret." => "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\".", "Error configuring Google Drive storage" => "Klaida nustatinėjant Google Drive talpyklą", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. ", "External Storage" => "Išorinės saugyklos", "Folder name" => "Katalogo pavadinimas", +"External storage" => "Išorinė saugykla", "Configuration" => "Konfigūracija", "Options" => "Nustatymai", "Applicable" => "Pritaikyti", +"Add storage" => "Pridėti saugyklą", "None set" => "Nieko nepasirinkta", "All Users" => "Visi vartotojai", "Groups" => "Grupės", diff --git a/apps/files_external/l10n/sq.php b/apps/files_external/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..d5393aa38527a242df701d3002ca1c60335c346c --- /dev/null +++ b/apps/files_external/l10n/sq.php @@ -0,0 +1,4 @@ + "Përdoruesit", +"Delete" => "Elimino" +); diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index cddb2b35e03e4ca2d1311a9d5c65d33f39a9a0e0..def2e35ebf51726c39f96e37295f49bdd9ab8afe 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -1,12 +1,18 @@ "Giriş kabul edildi", +"Error configuring Dropbox storage" => "Dropbox depo yapılandırma hatası", "Grant access" => "Erişim sağlandı", "Please provide a valid Dropbox app key and secret." => "Lütfen Dropbox app key ve secret temin ediniz", +"Error configuring Google Drive storage" => "Google Drive depo yapılandırma hatası", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, ", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin.", "External Storage" => "Harici Depolama", "Folder name" => "Dizin ismi", +"External storage" => "Harici Depolama", "Configuration" => "Yapılandırma", "Options" => "Seçenekler", "Applicable" => "Uygulanabilir", +"Add storage" => "Depo ekle", "None set" => "Hiçbiri", "All Users" => "Tüm Kullanıcılar", "Groups" => "Gruplar", diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php index 74b9e3cad8134419b79993227992135b41cf5e93..c74323db1750342cdc6dee9bfe82d74115167b20 100644 --- a/apps/files_external/l10n/zh_CN.GB2312.php +++ b/apps/files_external/l10n/zh_CN.GB2312.php @@ -4,11 +4,15 @@ "Grant access" => "授予权限", "Please provide a valid Dropbox app key and secret." => "请提供一个有效的 Dropbox app key 和 secret。", "Error configuring Google Drive storage" => "配置 Google Drive 存储失败", +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "注意:“SMB客户端”未安装。CIFS/SMB分享不可用。请向您的系统管理员请求安装该客户端。", +"Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "注意:PHP的FTP支持尚未启用或未安装。FTP分享不可用。请向您的系统管理员请求安装。", "External Storage" => "外部存储", "Folder name" => "文件夹名", +"External storage" => "外部存储", "Configuration" => "配置", "Options" => "选项", "Applicable" => "可应用", +"Add storage" => "扩容", "None set" => "未设置", "All Users" => "所有用户", "Groups" => "群组", diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 11d24045fd9012fc76dbd53e5bff837c61b5b780..01462cb6f8522d62500adeb7288303896d29df2b 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -339,6 +339,7 @@ class OC_Mount_Config { } $content = json_encode($data); @file_put_contents($file, $content); + @chmod($file, 0640); } /** diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..dec9af4ebe988ea63011f4547f9275d5f0afaaa3 --- /dev/null +++ b/apps/files_sharing/l10n/cy_GB.php @@ -0,0 +1,9 @@ + "Cyfrinair", +"Submit" => "Cyflwyno", +"%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", +"%s shared the file %s with you" => "Rhannodd %s ffeil %s â chi", +"Download" => "Llwytho i lawr", +"No preview available for" => "Does dim rhagolwg ar gael ar gyfer", +"web services under your control" => "gwasanaethau gwe a reolir gennych" +); diff --git a/apps/files_sharing/l10n/id.php b/apps/files_sharing/l10n/id.php index 8897269d989ea4bafc894d8f2919b510e0653852..95cf84312cdb68be3bcced840cbc3bd6e1f2ff11 100644 --- a/apps/files_sharing/l10n/id.php +++ b/apps/files_sharing/l10n/id.php @@ -1,9 +1,9 @@ "kata kunci", -"Submit" => "kirim", -"%s shared the folder %s with you" => "%s membagikan folder %s dengan anda", -"%s shared the file %s with you" => "%s membagikan file %s dengan anda", -"Download" => "unduh", -"No preview available for" => "tidak ada pratinjau tersedia untuk", -"web services under your control" => "servis web dibawah kendali anda" +"Password" => "Sandi", +"Submit" => "Kirim", +"%s shared the folder %s with you" => "%s membagikan folder %s dengan Anda", +"%s shared the file %s with you" => "%s membagikan file %s dengan Anda", +"Download" => "Unduh", +"No preview available for" => "Tidak ada pratinjau tersedia untuk", +"web services under your control" => "layanan web dalam kontrol Anda" ); diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index ef42196d2cbf8cc38384b2b9100f433cb4808bec..6da1a8b019d4d823b763acf73779636fc69c807e 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,6 +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 services under your control" ); diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index b8e700e3802dfc0cc89f2defa750a05cdc249dfc..43e8f3c4b69f4b5ec8f10af372e97e7150f40da0 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,9 +1,9 @@ "Palavra-Passe", +"Password" => "Password", "Submit" => "Submeter", "%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", "%s shared the file %s with you" => "%s partilhou o ficheiro %s consigo", -"Download" => "Descarregar", +"Download" => "Transferir", "No preview available for" => "Não há pré-visualização para", "web services under your control" => "serviços web sob o seu controlo" ); diff --git a/apps/files_sharing/l10n/sq.php b/apps/files_sharing/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..244ca87c552770ddb3824fcd05d7edfa6e4ac2c5 --- /dev/null +++ b/apps/files_sharing/l10n/sq.php @@ -0,0 +1,9 @@ + "Kodi", +"Submit" => "Parashtro", +"%s shared the folder %s with you" => "%s ndau me ju dosjen %s", +"%s shared the file %s with you" => "%s ndau me ju skedarin %s", +"Download" => "Shkarko", +"No preview available for" => "Shikimi paraprak nuk është i mundur për", +"web services under your control" => "shërbime web nën kontrollin tënd" +); diff --git a/apps/files_trashbin/appinfo/app.php b/apps/files_trashbin/appinfo/app.php index a6a99db034c9f19deb1fa1d1e9b47e1e9254fe39..e83d3b8fbbd766ccadf600b766452bec191e3a16 100644 --- a/apps/files_trashbin/appinfo/app.php +++ b/apps/files_trashbin/appinfo/app.php @@ -3,5 +3,7 @@ OC::$CLASSPATH['OCA\Files_Trashbin\Hooks'] = 'files_trashbin/lib/hooks.php'; OC::$CLASSPATH['OCA\Files_Trashbin\Trashbin'] = 'files_trashbin/lib/trash.php'; - +//Listen to delete file signal OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\Files_Trashbin\Hooks", "remove_hook"); +//Listen to delete user signal +OCP\Util::connectHook('OC_User', 'pre_deleteUser', "OCA\Files_Trashbin\Hooks", "deleteUser_hook"); \ No newline at end of file diff --git a/apps/files_trashbin/appinfo/info.xml b/apps/files_trashbin/appinfo/info.xml index 7f807da579ea0a8013c251123650fc5636e29505..e9cbdafc1cdc2738dced01293e85313e21dc2c1c 100644 --- a/apps/files_trashbin/appinfo/info.xml +++ b/apps/files_trashbin/appinfo/info.xml @@ -2,7 +2,20 @@ files_trashbin Deleted files - Keep a copy of deleted files so that they can be restored if needed + + ownCloud keeps a copy of your deleted files in case you need them again. + To make sure that the user doesn't run out of memory the deleted files app + manages the size of the deleted files for the user. By default deleted files + stay in the trash bin for 180 days. ownCloud checks the age of the files + every time a new files gets moved to the deleted files and remove all files + older than 180 days. The user can adjust this value in the config.php by + setting the "trashbin_retention_obligation" value. + + Beside that the delted files app take care to never use more that 50% of + your currently available free space. If your deleted files exceed this limit + ownCloud deletes the oldest versions until it meets the memory usage limit + again. + AGPL Bjoern Schiessle true diff --git a/apps/files_trashbin/appinfo/update.php b/apps/files_trashbin/appinfo/update.php index b0bf79cc510f4c5c22a1af8df09cb092df4f9c0a..f4dad7b26bf2dbcdd33d4d7c3f49d5c2dabfcc47 100644 --- a/apps/files_trashbin/appinfo/update.php +++ b/apps/files_trashbin/appinfo/update.php @@ -1,40 +1,10 @@ execute(); } \ No newline at end of file diff --git a/apps/files_trashbin/appinfo/version b/apps/files_trashbin/appinfo/version index be586341736ee60d6ca2be0f3762a307e8fe79f9..bd73f47072b1fe4b9914ec14a7f6d47fcc8f816a 100644 --- a/apps/files_trashbin/appinfo/version +++ b/apps/files_trashbin/appinfo/version @@ -1 +1 @@ -0.3 +0.4 diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 39e76e10c9c6792cab6411c72dc319cead3fcddb..eed253d66025ecea4341ec018506505f5485ead3 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -16,7 +16,7 @@ $(document).ready(function() { row.parentNode.removeChild(row); } if (result.status != 'success') { - OC.dialogs.alert(result.data.message, 'Error'); + OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -43,7 +43,7 @@ $(document).ready(function() { row.parentNode.removeChild(row); } if (result.status != 'success') { - OC.dialogs.alert(result.data.message, 'Error'); + OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); @@ -111,7 +111,7 @@ $(document).ready(function() { row.parentNode.removeChild(row); } if (result.status != 'success') { - OC.dialogs.alert(result.data.message, 'Error'); + OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); }); @@ -136,7 +136,7 @@ $(document).ready(function() { row.parentNode.removeChild(row); } if (result.status != 'success') { - OC.dialogs.alert(result.data.message, 'Error'); + OC.dialogs.alert(result.data.message, t('core', 'Error')); } }); }); diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index e320092ddd5ea20cd296e1a8e2386d0cce2086e8..f36133db547948a97806359b82f8459cc7e232b2 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "تعذّر حذف%s بشكل دائم", "Couldn't restore %s" => "تعذّر استرجاع %s ", "perform restore operation" => "إبدء عملية الإستعادة", +"Error" => "خطأ", "delete file permanently" => "حذف بشكل دائم", "Delete permanently" => "حذف بشكل دائم", "Name" => "اسم", diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 29e69a02fbb755aa1613b758361719f460c2b7c4..31c5dcb4ef19470bb49004af6e990cac3ccb0e69 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Невъзможно изтриване на %s завинаги", "Couldn't restore %s" => "Невъзможно възтановяване на %s", "perform restore operation" => "извършване на действие по възстановяване", +"Error" => "Грешка", "delete file permanently" => "изтриване на файла завинаги", "Delete permanently" => "Изтриване завинаги", "Name" => "Име", diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index d61355c52c204f51da086053120b6fa9653cc910..75b071bfa7432dab12c1303049c4b8a57ef9aee0 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -1,4 +1,5 @@ "সমস্যা", "Name" => "রাম", "1 folder" => "১টি ফোল্ডার", "{count} folders" => "{count} টি ফোল্ডার", diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index 79ed5f871a2dfa69c68e042d1c9cf048303f2b0d..b7540f653d678d28fb17e1cfe0e36829293930d4 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "No s'ha pogut esborrar permanentment %s", "Couldn't restore %s" => "No s'ha pogut restaurar %s", "perform restore operation" => "executa l'operació de restauració", +"Error" => "Error", "delete file permanently" => "esborra el fitxer permanentment", "Delete permanently" => "Esborra permanentment", "Name" => "Nom", diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index 7fab334b7df101cc1cc91430bc2fae121f96df92..416b6b231d5a63f5331aae8bdbcaf2db150e46b5 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Nelze trvale odstranit %s", "Couldn't restore %s" => "Nelze obnovit %s", "perform restore operation" => "provést obnovu", +"Error" => "Chyba", "delete file permanently" => "trvale odstranit soubor", "Delete permanently" => "Trvale odstranit", "Name" => "Název", diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..055e8d8654dd68ae2f0a22c0a17d6e61d5ce9b76 --- /dev/null +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -0,0 +1,18 @@ + "Methwyd dileu %s yn barhaol", +"Couldn't restore %s" => "Methwyd adfer %s", +"perform restore operation" => "gweithrediad adfer", +"Error" => "Gwall", +"delete file permanently" => "dileu ffeil yn barhaol", +"Delete permanently" => "Dileu'n barhaol", +"Name" => "Enw", +"Deleted" => "Wedi dileu", +"1 folder" => "1 blygell", +"{count} folders" => "{count} plygell", +"1 file" => "1 ffeil", +"{count} files" => "{count} ffeil", +"Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", +"Restore" => "Adfer", +"Delete" => "Dileu", +"Deleted Files" => "Ffeiliau Ddilewyd" +); diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index ca4a2e8215d6ea2ee46925490851ccf856530646..16f98baed7e879d806030dbb3ea0d497f8fb3074 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Kunne ikke slette %s permanent", "Couldn't restore %s" => "Kunne ikke gendanne %s", "perform restore operation" => "udfør gendannelsesoperation", +"Error" => "Fejl", "delete file permanently" => "slet fil permanent", "Delete permanently" => "Slet permanent", "Name" => "Navn", @@ -12,5 +13,6 @@ "{count} files" => "{count} filer", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", "Restore" => "Gendan", -"Delete" => "Slet" +"Delete" => "Slet", +"Deleted Files" => "Slettede filer" ); diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index 60a0e40d455beeb02faaaaea819120cb06734a55..4dd9033969e485482ec028e2f90530d3e7ed7a6a 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "perform restore operation" => "Wiederherstellung ausführen", +"Error" => "Fehler", "delete file permanently" => "Datei dauerhaft löschen", "Delete permanently" => "Endgültig löschen", "Name" => "Name", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 802a110fd186ce21bfc5c6e5afd47ed9ddaba514..829b5026e1a354d5fc07ec4a325d86422e0eef4d 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "perform restore operation" => "Wiederherstellung ausführen", +"Error" => "Fehler", "delete file permanently" => "Datei dauerhaft löschen", "Delete permanently" => "Endgültig löschen", "Name" => "Name", diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 32e294568610141bb121441744b18933af601ca0..f95d90ada6171ae224c1c3a90494bd4e5530b3c9 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", "perform restore operation" => "εκτέλεση λειτουργία επαναφοράς", +"Error" => "Σφάλμα", "delete file permanently" => "μόνιμη διαγραφή αρχείου", "Delete permanently" => "Μόνιμη διαγραφή", "Name" => "Όνομα", diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index 8e0cc160393841cb33510513e9c6d728951076ec..3288c4fcdc56187e88df52df3e501e71e3cb3848 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,4 +1,5 @@ "Eraro", "Name" => "Nomo", "1 folder" => "1 dosierujo", "{count} folders" => "{count} dosierujoj", diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index e9e8dad7bb546479306779c492702b38af3f94ab..c267db7358af01e7f2996fa6f5495affe2938d2d 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", "perform restore operation" => "Restaurar", +"Error" => "Error", "delete file permanently" => "Eliminar archivo permanentemente", "Delete permanently" => "Eliminar permanentemente", "Name" => "Nombre", diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index c18444e73e32511f011e57c08d53b73b9c594987..de7494ca69e879b7100ebcb96e3766d71c8ef57c 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "No fue posible borrar %s de manera permanente", "Couldn't restore %s" => "No se pudo restaurar %s", "perform restore operation" => "Restaurar", +"Error" => "Error", "delete file permanently" => "Borrar archivo de manera permanente", "Delete permanently" => "Borrar de manera permanente", "Name" => "Nombre", diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 73ae9dbee18023376de4214899a8f3d721136871..3d3b46a180823b469bfcf364ccaa548aaa0f2bf0 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "%s jäädavalt kustutamine ebaõnnestus", "Couldn't restore %s" => "%s ei saa taastada", "perform restore operation" => "soorita taastamine", +"Error" => "Viga", "delete file permanently" => "kustuta fail jäädavalt", "Delete permanently" => "Kustuta jäädavalt", "Name" => "Nimi", @@ -12,5 +13,6 @@ "{count} files" => "{count} faili", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", "Restore" => "Taasta", -"Delete" => "Kustuta" +"Delete" => "Kustuta", +"Deleted Files" => "Kustutatud failid" ); diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 3622de2694ca8c519cdc5d2b62a0fe55f5c8c3ba..45b77b7990c23d6449f6090d5cb9ef17c99b8816 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Ezin izan da %s betirako ezabatu", "Couldn't restore %s" => "Ezin izan da %s berreskuratu", "perform restore operation" => "berreskuratu", +"Error" => "Errorea", "delete file permanently" => "ezabatu fitxategia betirako", "Delete permanently" => "Ezabatu betirako", "Name" => "Izena", diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 57ca6d10d6b0670eafa4db1cc6d366ef1d06193a..6ecc6feacbf8d7bf15750547cc75cc9094f95d46 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "%s را نمی توان برای همیشه حذف کرد", "Couldn't restore %s" => "%s را نمی توان بازگرداند", "perform restore operation" => "انجام عمل بازگرداندن", +"Error" => "خطا", "delete file permanently" => "حذف فایل برای همیشه", "Delete permanently" => "حذف قطعی", "Name" => "نام", diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index 30aef805563435ce627120ded8e2c6a3e3231b10..fd6edf398ea017164b971f00f955bf8748c6b8f4 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Kohdetta %s ei voitu poistaa pysyvästi", "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", "perform restore operation" => "suorita palautustoiminto", +"Error" => "Virhe", "delete file permanently" => "poista tiedosto pysyvästi", "Delete permanently" => "Poista pysyvästi", "Name" => "Nimi", diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 092e1e65d1be6137c556e1691ad7c1b2e4c344d1..8198e3e32a8287454400b8926b3b54341692bb1e 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Impossible d'effacer %s de façon permanente", "Couldn't restore %s" => "Impossible de restaurer %s", "perform restore operation" => "effectuer l'opération de restauration", +"Error" => "Erreur", "delete file permanently" => "effacer définitivement le fichier", "Delete permanently" => "Supprimer de façon définitive", "Name" => "Nom", diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index da44b1bee384baa80497535723fa2a850d75f65f..b9b3c8a1e5c73663530541360eb39d45459c230a 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Non foi posíbel eliminar %s permanente", "Couldn't restore %s" => "Non foi posíbel restaurar %s", "perform restore operation" => "realizar a operación de restauración", +"Error" => "Erro", "delete file permanently" => "eliminar o ficheiro permanentemente", "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 9c767d2222c818a39039bf5a13a07c29d322e059..e31fdb952ea85e061b8f683237603aea819fede3 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "בלתי אפשרי למחוק את %s לצמיתות", "Couldn't restore %s" => "בלתי אפשרי לשחזר את %s", "perform restore operation" => "בצע פעולת שחזור", +"Error" => "שגיאה", "delete file permanently" => "מחק קובץ לצמיתות", "Delete permanently" => "מחק לצמיתות", "Name" => "שם", diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index 2cb86adfd405423190d97c24b545ae11bc04795f..a65d876e1f06311cbb151b7af98a2268ba6615bc 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -1,4 +1,5 @@ "Greška", "Name" => "Ime", "Delete" => "Obriši" ); diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 1d86190daa365f29b37bac0e2115ac061cd0f6e5..5e64bc04e03132ab36250716d23d24e2efd8eec0 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Nem sikerült %s végleges törlése", "Couldn't restore %s" => "Nem sikerült %s visszaállítása", "perform restore operation" => "a visszaállítás végrehajtása", +"Error" => "Hiba", "delete file permanently" => "az állomány végleges törlése", "Delete permanently" => "Végleges törlés", "Name" => "Név", diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index ab5fe25ac6b2ab270c59f328bd464ed148c2e0a0..e06c66784f24d3820d532363813db331986d9da2 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -2,7 +2,9 @@ "Couldn't delete %s permanently" => "Tidak dapat menghapus permanen %s", "Couldn't restore %s" => "Tidak dapat memulihkan %s", "perform restore operation" => "jalankan operasi pemulihan", +"Error" => "kesalahan", "delete file permanently" => "hapus berkas secara permanen", +"Delete permanently" => "hapus secara permanen", "Name" => "Nama", "Deleted" => "Dihapus", "1 folder" => "1 map", @@ -11,5 +13,6 @@ "{count} files" => "{count} berkas", "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", "Restore" => "Pulihkan", -"Delete" => "Hapus" +"Delete" => "Hapus", +"Deleted Files" => "Berkas yang Dihapus" ); diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index fba36c91cb53b0184573d9df6884f5ee933ea71f..12267c6695a30511218476c545d50fc2d50e6ded 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -1,4 +1,5 @@ "Villa", "Name" => "Nafn", "1 folder" => "1 mappa", "{count} folders" => "{count} möppur", diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 14400624ce588107124dc8bcf965dc7823e5c40a..795fd6ea1674618537b7380e7040b98d77591300 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Impossibile eliminare %s definitivamente", "Couldn't restore %s" => "Impossibile ripristinare %s", "perform restore operation" => "esegui operazione di ripristino", +"Error" => "Errore", "delete file permanently" => "elimina il file definitivamente", "Delete permanently" => "Elimina definitivamente", "Name" => "Nome", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index a6e4261bc60085a64a53aa34fc6b94ec9eb94e22..db5783bf4328a690bc12794794ed8d0f7873c6f9 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "%s を完全に削除出来ませんでした", "Couldn't restore %s" => "%s を復元出来ませんでした", "perform restore operation" => "復元操作を実行する", +"Error" => "エラー", "delete file permanently" => "ファイルを完全に削除する", "Delete permanently" => "完全に削除する", "Name" => "名前", diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 05068767863df0a674b962cc1b8fab5db515a332..667eb500eb9f11ea6e716a642849d582be03c466 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -1,8 +1,18 @@ "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", +"Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", +"perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", +"Error" => "შეცდომა", +"delete file permanently" => "ფაილის სრულად წაშლა", +"Delete permanently" => "სრულად წაშლა", "Name" => "სახელი", +"Deleted" => "წაშლილი", "1 folder" => "1 საქაღალდე", "{count} folders" => "{count} საქაღალდე", "1 file" => "1 ფაილი", "{count} files" => "{count} ფაილი", -"Delete" => "წაშლა" +"Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", +"Restore" => "აღდგენა", +"Delete" => "წაშლა", +"Deleted Files" => "წაშლილი ფაილები" ); diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index b40546e34b8365be4d055b17493e79935800c29f..f06c90962eaed68b56d0b60f642679822e443673 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -1,4 +1,5 @@ "오류", "Name" => "이름", "1 folder" => "폴더 1개", "{count} folders" => "폴더 {count}개", diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index cbdbe4644d120d3cdcfe89dd5a0c395d3a458edb..67fdd7d08fa910660052b87b9adaa4ba95746bdb 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,3 +1,4 @@ "هه‌ڵه", "Name" => "ناو" ); diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index 01deea2350037c96bc26ede0753a6124fb31876e..2065ee03d3204b97d1d4fa1552d85bc3f15cd55c 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -1,4 +1,5 @@ "Fehler", "Name" => "Numm", "Delete" => "Läschen" ); diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 513c7626c4e75f4dcae8d5f5428463c4e80b4b35..011de161e425ebf70062567de246b3e2c384340e 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -1,4 +1,5 @@ "Klaida", "Name" => "Pavadinimas", "1 folder" => "1 aplankalas", "{count} folders" => "{count} aplankalai", diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index 98a734224ffdf1c06740cd4eabbe70d195cda3fb..b1b8c3e6b03ab09e82f55a411a9395e0e0fdb8e1 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Nevarēja pilnībā izdzēst %s", "Couldn't restore %s" => "Nevarēja atjaunot %s", "perform restore operation" => "veikt atjaunošanu", +"Error" => "Kļūda", "delete file permanently" => "dzēst datni pavisam", "Delete permanently" => "Dzēst pavisam", "Name" => "Nosaukums", diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 22b288b002f6e9476b9f2b4594dc4ac9d49e6069..175399249e55dd20bafb3a64e17b6b2f6d949fd2 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -1,4 +1,5 @@ "Грешка", "Name" => "Име", "1 folder" => "1 папка", "{count} folders" => "{count} папки", diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 381d599865ee81c0bb00ea74a894fb57f3233823..52a997aab15678a8157171a982614f6a911c36cd 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -1,4 +1,5 @@ "Ralat", "Name" => "Nama", "Delete" => "Padam" ); diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index fa9543a5eb06e1f45012e6752bfb9f852933b41a..e1dce4b399525bf2fb3672a8595958393b7d65b7 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", "perform restore operation" => "utfør gjenopprettings operasjon", +"Error" => "Feil", "delete file permanently" => "slett filer permanent", "Delete permanently" => "Slett permanent", "Name" => "Navn", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index b33ee8bc4dcbeb039d54682b5fedd8780811db42..91844a14b663eca3c3be1984becb1ecd6e7a9cbb 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Kon %s niet permanent verwijderen", "Couldn't restore %s" => "Kon %s niet herstellen", "perform restore operation" => "uitvoeren restore operatie", +"Error" => "Fout", "delete file permanently" => "verwijder bestanden definitief", "Delete permanently" => "Verwijder definitief", "Name" => "Naam", diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index f8ab465ee42d5837bf5e2056ee07254860942f26..14345ddcc4d49bedbb37d3f547197fd7b8e048ed 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -1,4 +1,5 @@ "Feil", "Name" => "Namn", "Delete" => "Slett" ); diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index e6b939dac0c3565332ac03c58d7bdec703ed1798..fa9e097f6ca53fd35c4462ec4f9b2e3a26d95855 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -1,4 +1,5 @@ "Error", "Name" => "Nom", "Delete" => "Escafa" ); diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index c3e7fd8e73d12063ddc0eb8690db999f8892610c..7fd1ab21ecd61a9aef32bac14a90e076d52f5a64 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Nie można trwale usunąć %s", "Couldn't restore %s" => "Nie można przywrócić %s", "perform restore operation" => "wykonywanie operacji przywracania", +"Error" => "Błąd", "delete file permanently" => "trwale usuń plik", "Delete permanently" => "Trwale usuń", "Name" => "Nazwa", diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index dcf58e083cac3e7cfc02e07a8df34d2e00e3d89f..9dad8a40a85e4ab5abbae6e09579db6a7dc5d75a 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Não foi possível excluir %s permanentemente", "Couldn't restore %s" => "Não foi possível restaurar %s", "perform restore operation" => "realizar operação de restauração", +"Error" => "Erro", "delete file permanently" => "excluir arquivo permanentemente", "Delete permanently" => "Excluir permanentemente", "Name" => "Nome", diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index f1dc71b44e905f4e27c6bf99514983e6525fde98..7dfe610466b0db2e0c0c93e9ede41dacd655c8ab 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -1,7 +1,8 @@ "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", -"perform restore operation" => "Restaurar", +"perform restore operation" => "executar a operação de restauro", +"Error" => "Erro", "delete file permanently" => "Eliminar permanentemente o(s) ficheiro(s)", "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", @@ -10,7 +11,7 @@ "{count} folders" => "{count} pastas", "1 file" => "1 ficheiro", "{count} files" => "{count} ficheiros", -"Nothing in here. Your trash bin is empty!" => "Não ha ficheiros. O lixo está vazio", +"Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", "Delete" => "Apagar", "Deleted Files" => "Ficheiros Apagados" diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 6a919b62dfbb8a80edaff20fd98af6ac62aee07c..c03ef600f35ec122d787838f6c6491722b86381f 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -1,4 +1,5 @@ "Eroare", "Name" => "Nume", "1 folder" => "1 folder", "{count} folders" => "{count} foldare", diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index ef493ddcbe808fe3b215536b9d0bfed94195a54c..0d55703cdc064b7e4ddfa58330e571f1fe60a936 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", "perform restore operation" => "выполнить операцию восстановления", +"Error" => "Ошибка", "delete file permanently" => "удалить файл навсегда", "Delete permanently" => "Удалено навсегда", "Name" => "Имя", diff --git a/apps/files_trashbin/l10n/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php index 9c79c7fba60a957d183938d889f25e50c99ac83f..178eb531077ceb3e661ff107f9480da8b9fdb31d 100644 --- a/apps/files_trashbin/l10n/ru_RU.php +++ b/apps/files_trashbin/l10n/ru_RU.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", "perform restore operation" => "выполнить операцию восстановления", +"Error" => "Ошибка", "delete file permanently" => "удалить файл навсегда", "Delete permanently" => "Удалить навсегда", "Name" => "Имя", diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 71c5632977654828af903c662fb900a122fd0cd3..48ea423a4c4b3339e7e38dc8627d4d79c7847b3d 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -1,4 +1,5 @@ "දෝෂයක්", "Name" => "නම", "1 folder" => "1 ෆොල්ඩරයක්", "1 file" => "1 ගොනුවක්", diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index b7ca91b1c55f43ed964a0d0d7e7642b4ce3c1ec0..7203f4c75fcda5d8ec19f6af27c6d79955e4c1d5 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Nemožno zmazať %s navždy", "Couldn't restore %s" => "Nemožno obnoviť %s", "perform restore operation" => "vykonať obnovu", +"Error" => "Chyba", "delete file permanently" => "trvalo zmazať súbor", "Delete permanently" => "Zmazať trvalo", "Name" => "Meno", diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index edef7294a4aa76b3a72b6c0ecfe95abd233118c2..8c8446d4e5b0d2ac2e762755b8801326769adfd0 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Datoteke %s ni mogoče dokončno izbrisati.", "Couldn't restore %s" => "Ni mogoče obnoviti %s", "perform restore operation" => "izvedi opravilo obnavljanja", +"Error" => "Napaka", "delete file permanently" => "dokončno izbriši datoteko", "Delete permanently" => "Izbriši dokončno", "Name" => "Ime", diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..ce3ed947ccd57c106321d8150b3a484f2adca86d --- /dev/null +++ b/apps/files_trashbin/l10n/sq.php @@ -0,0 +1,18 @@ + "Nuk munda ta eliminoj përfundimisht %s", +"Couldn't restore %s" => "Nuk munda ta rivendos %s", +"perform restore operation" => "ekzekuto operacionin e rivendosjes", +"Error" => "Veprim i gabuar", +"delete file permanently" => "eliminoje përfundimisht skedarin", +"Delete permanently" => "Elimino përfundimisht", +"Name" => "Emri", +"Deleted" => "Eliminuar", +"1 folder" => "1 dosje", +"{count} folders" => "{count} dosje", +"1 file" => "1 skedar", +"{count} files" => "{count} skedarë", +"Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", +"Restore" => "Rivendos", +"Delete" => "Elimino", +"Deleted Files" => "Skedarë të eliminuar" +); diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 2e7c139e389ef544ae1d67c0ef41ce9d01801a78..280c2b028204dcca9d3be74749416cdef968d070 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,5 +1,7 @@ "врати у претходно стање", +"Error" => "Грешка", +"Delete permanently" => "Обриши за стално", "Name" => "Име", "Deleted" => "Обрисано", "1 folder" => "1 фасцикла", diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 15128e5f7764086750bc4106c2243e9aeef810b8..d56d8946f34d63602f5ed6eb903abe49aa2c3fd9 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Kunde inte radera %s permanent", "Couldn't restore %s" => "Kunde inte återställa %s", "perform restore operation" => "utför återställning", +"Error" => "Fel", "delete file permanently" => "radera filen permanent", "Delete permanently" => "Radera permanent", "Name" => "Namn", diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index f21e5fc750de22b2f683f7fa128535f698fdfa17..2badaa8546772cbb10f2e49c63879a472209375c 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -1,4 +1,5 @@ "வழு", "Name" => "பெயர்", "1 folder" => "1 கோப்புறை", "{count} folders" => "{எண்ணிக்கை} கோப்புறைகள்", diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index b05f173953de907d321568efd7f49aa8b20f5694..9b36ac4272eff1e0af94a04ba38c519b27d98946 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -1,4 +1,5 @@ "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", "Delete" => "తొలగించు" diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index e2875feaa3991f5c341e394007e3761429a6e1c4..82d3cd2353095a6244fec279cd1d589193440c1d 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,5 +1,6 @@ "ดำเนินการคืนค่า", +"Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", "Deleted" => "ลบแล้ว", "1 folder" => "1 โฟลเดอร์", diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index 51edb2e5bd392b394e724751fb4a9855893819b3..53c143c3a9d184ceaf3798472e0cff11be04f594 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "%s Kalıcı olarak silinemedi", "Couldn't restore %s" => "%s Geri yüklenemedi", "perform restore operation" => "Geri yükleme işlemini gerçekleştir", +"Error" => "Hata", "delete file permanently" => "Dosyayı kalıcı olarak sil", "Delete permanently" => "Kalıcı olarak sil", "Name" => "İsim", diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index e0f22d4387b59d7ee467f31f1378764d7ba00f8c..ffc9ab02f4895268910d613baaf119d1f12724c2 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Неможливо видалити %s назавжди", "Couldn't restore %s" => "Неможливо відновити %s", "perform restore operation" => "виконати операцію відновлення", +"Error" => "Помилка", "delete file permanently" => "видалити файл назавжди", "Delete permanently" => "Видалити назавжди", "Name" => "Ім'я", diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php new file mode 100644 index 0000000000000000000000000000000000000000..e13a623fecc335ac65e09bcaeca82fe9abb71099 --- /dev/null +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -0,0 +1,3 @@ + "ایرر" +); diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index 7bc1fd237d96519e61ca6834a9356d51d520808f..a8924c541f8fee86f3624037731ee8b6032b7f0b 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "Không thể óa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", "perform restore operation" => "thực hiện phục hồi", +"Error" => "Lỗi", "delete file permanently" => "xóa file vĩnh viễn", "Delete permanently" => "Xóa vĩnh vễn", "Name" => "Tên", diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 606d80d441b0cb130b1758bb44b042004d4c75af..4dda1e0433c9a0444115553f7c200f2871c2fd1b 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ "出错", "Name" => "名称", "1 folder" => "1 个文件夹", "{count} folders" => "{count} 个文件夹", diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index c2cc1f123e2e9b47f7c2699130a8721a816ace54..9c0f0bb3b75186fd002fed1ffa292764f81ae3f7 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -2,6 +2,7 @@ "Couldn't delete %s permanently" => "无法彻底删除文件%s", "Couldn't restore %s" => "无法恢复%s", "perform restore operation" => "执行恢复操作", +"Error" => "错误", "delete file permanently" => "彻底删除文件", "Delete permanently" => "永久删除", "Name" => "名称", diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 3077aa83e2eb7ada3a3bcc4ef444a85c317f7fd4..53dd9869219e08d2f69033b64c7b8fbc8545359b 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -1,4 +1,5 @@ "錯誤", "Name" => "名稱", "{count} folders" => "{}文件夾", "Delete" => "刪除" diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index c1ebbe4099fc6ba2ff180f8252f2e278aabce15f..a9dcba8f7d73ea151c6cd6aff67bfdf2a0723a96 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -1,8 +1,9 @@ "無法永久刪除%s", -"Couldn't restore %s" => "無法復原%s", +"Couldn't delete %s permanently" => "無法永久刪除 %s", +"Couldn't restore %s" => "無法復原 %s", "perform restore operation" => "進行復原動作", -"delete file permanently" => "永久刪除文件", +"Error" => "錯誤", +"delete file permanently" => "永久刪除檔案", "Delete permanently" => "永久刪除", "Name" => "名稱", "Deleted" => "已刪除", @@ -10,7 +11,7 @@ "{count} folders" => "{count} 個資料夾", "1 file" => "1 個檔案", "{count} files" => "{count} 個檔案", -"Nothing in here. Your trash bin is empty!" => "這裏沒東西。您的垃圾桶是空的!", +"Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!", "Restore" => "復原", "Delete" => "刪除", "Deleted Files" => "已刪除的檔案" diff --git a/apps/files_trashbin/lib/hooks.php b/apps/files_trashbin/lib/hooks.php index 9081706a2c56defdf26eb609a4f89ff8d2606b0b..f1df1d7ec77f9106e7b7ed4c1a2542d44b81118b 100644 --- a/apps/files_trashbin/lib/hooks.php +++ b/apps/files_trashbin/lib/hooks.php @@ -42,4 +42,18 @@ class Hooks { Trashbin::move2trash($path); } } + + /** + * @brief clean up user specific settings if user gets deleted + * @param array with uid + * + * This function is connected to the pre_deleteUser signal of OC_Users + * to remove the used space for the trash bin stored in the database + */ + public static function deleteUser_hook($params) { + if( \OCP\App::isEnabled('files_trashbin') ) { + $uid = $params['uid']; + Trashbin::deleteUser($uid); + } + } } diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index d68d157158b9fe89655cffe0c9dcccc653328c64..f0b56eef01403ce3bf12493916614b7070be6f73 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -61,9 +61,11 @@ class Trashbin { if ( $trashbinSize === false || $trashbinSize < 0 ) { $trashbinSize = self::calculateSize(new \OC\Files\View('/'. $user.'/files_trashbin')); } - $trashbinSize += self::copy_recursive($file_path, 'files_trashbin/files/'.$deleted.'.d'.$timestamp, $view); - + + $sizeOfAddedFiles = self::copy_recursive($file_path, 'files_trashbin/files/'.$deleted.'.d'.$timestamp, $view); + if ( $view->file_exists('files_trashbin/files/'.$deleted.'.d'.$timestamp) ) { + $trashbinSize += $sizeOfAddedFiles; $query = \OC_DB::prepare("INSERT INTO `*PREFIX*files_trash` (`id`,`timestamp`,`location`,`type`,`mime`,`user`) VALUES (?,?,?,?,?,?)"); $result = $query->execute(array($deleted, $timestamp, $location, $type, $mime, $user)); if ( !$result ) { // if file couldn't be added to the database than also don't store it in the trash bin. @@ -102,27 +104,8 @@ class Trashbin { } else { \OC_Log::write('files_trashbin', 'Couldn\'t move '.$file_path.' to the trash bin', \OC_log::ERROR); } - - // get available disk space for user - $quota = \OC_Preferences::getValue($user, 'files', 'quota'); - if ( $quota === null || $quota === 'default') { - $quota = \OC_Appconfig::getValue('files', 'default_quota'); - } - if ( $quota === null || $quota === 'none' ) { - $quota = \OC\Files\Filesystem::free_space('/') / count(\OCP\User::getUsers()); - } else { - $quota = \OCP\Util::computerFileSize($quota); - } - - // calculate available space for trash bin - $rootInfo = $view->getFileInfo('/files'); - $free = $quota-$rootInfo['size']; // remaining free space for user - if ( $free > 0 ) { - $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $trashbinSize; // how much space can be used for versions - } else { - $availableSpace = $free-$trashbinSize; - } - $trashbinSize -= self::expire($availableSpace); + + $trashbinSize -= self::expire($trashbinSize); self::setTrashbinSize($user, $trashbinSize); @@ -334,14 +317,69 @@ class Trashbin { return $view->file_exists($target); } + /** + * @brief deletes used space for trash bin in db if user was deleted + * + * @param type $uid id of deleted user + * @return result of db delete operation + */ + public static function deleteUser($uid) { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trash` WHERE `user`=?'); + $result = $query->execute(array($uid)); + if ($result) { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trashsize` WHERE `user`=?'); + return $query->execute(array($uid)); + } + return false; + } + + /** + * calculate remaining free space for trash bin + * + * @param $trashbinSize current size of the trash bin + * @return available free space for trash bin + */ + private static function calculateFreeSpace($trashbinSize) { + $softQuota = true; + $user = \OCP\User::getUser(); + $quota = \OC_Preferences::getValue($user, 'files', 'quota'); + $view = new \OC\Files\View('/'.$user); + if ( $quota === null || $quota === 'default') { + $quota = \OC_Appconfig::getValue('files', 'default_quota'); + } + if ( $quota === null || $quota === 'none' ) { + $quota = \OC\Files\Filesystem::free_space('/'); + $softQuota = false; + } else { + $quota = \OCP\Util::computerFileSize($quota); + } + + // calculate available space for trash bin + // subtract size of files and current trash bin size from quota + if ($softQuota) { + $rootInfo = $view->getFileInfo('/files/'); + $free = $quota-$rootInfo['size']; // remaining free space for user + if ( $free > 0 ) { + $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $trashbinSize; // how much space can be used for versions + } else { + $availableSpace = $free-$trashbinSize; + } + } else { + $availableSpace = $quota; + } + + return $availableSpace; + } + /** * clean up the trash bin - * @param max. available disk space for trashbin + * @param current size of the trash bin */ - private static function expire($availableSpace) { + private static function expire($trashbinSize) { $user = \OCP\User::getUser(); $view = new \OC\Files\View('/'.$user); + $availableSpace = self::calculateFreeSpace($trashbinSize); $size = 0; $query = \OC_DB::prepare('SELECT `location`,`type`,`id`,`timestamp` FROM `*PREFIX*files_trash` WHERE `user`=?'); @@ -357,6 +395,7 @@ class Trashbin { $filename = $r['id']; if ( $r['timestamp'] < $limit ) { $size += self::delete($filename, $timestamp); + \OC_Log::write('files_trashbin', 'remove "'.$filename.'" fom trash bin because it is older than '.$retention_obligation, \OC_log::INFO); } } $availableSpace = $availableSpace + $size; @@ -369,6 +408,7 @@ class Trashbin { $i = 0; while ( $i < $length && $availableSpace < 0 ) { $tmp = self::delete($result[$i]['id'], $result[$i]['timestamp']); + \OC_Log::write('files_trashbin', 'remove "'.$result[$i]['id'].'" ('.$tmp.'B) to meet the limit of trash bin size (50% of available quota)', \OC_log::INFO); $availableSpace += $tmp; $size += $tmp; $i++; diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 9be1c88968249a40398c31259fd7a61929b7dc91..0d0850e186432f2e037262826ab432a576b178d2 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -12,3 +12,5 @@ OCP\Util::connectHook('OC_Filesystem', 'write', "OCA\Files_Versions\Hooks", "wri // Listen to delete and rename signals OCP\Util::connectHook('OC_Filesystem', 'post_delete', "OCA\Files_Versions\Hooks", "remove_hook"); OCP\Util::connectHook('OC_Filesystem', 'rename', "OCA\Files_Versions\Hooks", "rename_hook"); +//Listen to delete user signal +OCP\Util::connectHook('OC_User', 'pre_deleteUser', "OCA\Files_Versions\Hooks", "deleteUser_hook"); diff --git a/apps/files_versions/appinfo/info.xml b/apps/files_versions/appinfo/info.xml index 44878da5e4d8ccabc2d4bd9a45a5ec5616fc54da..661d64aa979fba9f25fea6c6f24a340f1c67eb64 100644 --- a/apps/files_versions/appinfo/info.xml +++ b/apps/files_versions/appinfo/info.xml @@ -6,7 +6,25 @@ Frank Karlitschek 4.93 true - Versioning of files + + ownCloud supports simple version control for files. The versioning app + expires old versions automatically to make sure that + the user doesn't run out of space. Following pattern is used to delete + old versions: + For the first 10 seconds ownCloud keeps one version every 2 seconds; + For the first hour ownCloud keeps one version every minute; + For the first 24 hours ownCloud keeps one version every hour; + For the first 30 days ownCloud keeps one version every day; + After the first 30 days ownCloud keeps one version every week. + + The versions are adjusted along this pattern every time a new version gets + created. + + Beside that the version app takes care to never use more that 50% of the users + currently available free space. If the stored versions exceed this limit + ownCloud deletes the oldest versions until it meets the memory usage limit + again. + diff --git a/apps/files_versions/l10n/el.php b/apps/files_versions/l10n/el.php index 6e1900b233b7a5ca016a93f1a9c710a2edc37108..8b67e471a9ead7048954c81d13ef74d32a2d36e6 100644 --- a/apps/files_versions/l10n/el.php +++ b/apps/files_versions/l10n/el.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Το αρχείο %s δεν είναι δυνατό να επαναφερθεί στην έκδοση %s", "No old versions available" => "Μη διαθέσιμες παλιές εκδόσεις", "No path specified" => "Δεν καθορίστηκε διαδρομή", +"Versions" => "Εκδόσεις", "Revert a file to a previous version by clicking on its revert button" => "Επαναφορά ενός αρχείου σε προηγούμενη έκδοση πατώντας στο κουμπί επαναφοράς" ); diff --git a/apps/files_versions/l10n/eo.php b/apps/files_versions/l10n/eo.php index 87b314655c0d48f8f5cc7143c96ebd6737b402e5..17f97808578d71da24b6f2827c1bd714510743f1 100644 --- a/apps/files_versions/l10n/eo.php +++ b/apps/files_versions/l10n/eo.php @@ -1,5 +1,11 @@ "Historio", -"Files Versioning" => "Dosiereldonigo", -"Enable" => "Kapabligi" +"Could not revert: %s" => "Ne eblas malfari: %s", +"success" => "sukceso", +"File %s was reverted to version %s" => "Dosiero %s estis malfarita al versio %s", +"failure" => "malsukceso", +"File %s could not be reverted to version %s" => "Ne eblis malfari dosieron %s al versio %s", +"No old versions available" => "Neniu malnova versio disponeblas", +"No path specified" => "Neniu vojo estas specifita", +"Versions" => "Versioj", +"Revert a file to a previous version by clicking on its revert button" => "Malfari dosieron al antaŭa versio per klako sur sia malfarad-butono" ); diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php index fa2a33f9dda11cef85b7f15bfa58a74d756c4604..930cfbc33a7e3cb335cfd3d7d0de66f0b98d15e0 100644 --- a/apps/files_versions/l10n/et_EE.php +++ b/apps/files_versions/l10n/et_EE.php @@ -1,6 +1,11 @@ "Ei suuda taastada faili: %s", "success" => "korras", +"File %s was reverted to version %s" => "Fail %s taastati versioonile %s", "failure" => "ebaõnnestus", +"File %s could not be reverted to version %s" => "Faili %s ei saa taastada versioonile %s", "No old versions available" => "Vanu versioone pole saadaval", -"No path specified" => "Asukohta pole määratud" +"No path specified" => "Asukohta pole määratud", +"Versions" => "Versioonid", +"Revert a file to a previous version by clicking on its revert button" => "Taasta fail varasemale versioonile klikkides \"Revert\" nupule" ); diff --git a/apps/files_versions/l10n/fi_FI.php b/apps/files_versions/l10n/fi_FI.php index 0dec7fc2580469145ed99fcade72ad5cf14dcaa0..6f138e0f163650e0482945f793c91ae6594c2606 100644 --- a/apps/files_versions/l10n/fi_FI.php +++ b/apps/files_versions/l10n/fi_FI.php @@ -4,7 +4,8 @@ "File %s was reverted to version %s" => "Tiedosto %s palautettiin versioon %s", "failure" => "epäonnistui", "File %s could not be reverted to version %s" => "Tiedoston %s palautus versioon %s epäonnistui", -"No old versions available" => "Vanhoja ei ole saatavilla", +"No old versions available" => "Vanhoja versioita ei ole saatavilla", "No path specified" => "Polkua ei ole määritetty", +"Versions" => "Versiot", "Revert a file to a previous version by clicking on its revert button" => "Palauta tiedoston edellinen versio napsauttamalla palautuspainiketta" ); diff --git a/apps/files_versions/l10n/id.php b/apps/files_versions/l10n/id.php index 4662aa86432630bce00ac0c08bfafd00642d9044..48ae5ad622325d10d972ccdcaece69ed37b9d785 100644 --- a/apps/files_versions/l10n/id.php +++ b/apps/files_versions/l10n/id.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Berkas %s gagal dikembalikan ke versi %s", "No old versions available" => "Versi lama tidak tersedia", "No path specified" => "Lokasi tidak ditentukan", -"Revert a file to a previous version by clicking on its revert button" => "Kembalikan berkas ke versi sebelumnya dengan mengklik tombol kembalikan" +"Versions" => "Versi", +"Revert a file to a previous version by clicking on its revert button" => "Kembalikan berkas ke versi sebelumnya dengan mengeklik tombol kembalikan" ); diff --git a/apps/files_versions/l10n/ka_GE.php b/apps/files_versions/l10n/ka_GE.php new file mode 100644 index 0000000000000000000000000000000000000000..6856d647dae57d226a2012ec2c5167ae80816bec --- /dev/null +++ b/apps/files_versions/l10n/ka_GE.php @@ -0,0 +1,11 @@ + "ვერ მოხერხდა უკან დაბრუნება: %s", +"success" => "დასრულდა", +"File %s was reverted to version %s" => "ფაილი %s დაბრუნდა ვერსიაზე %s", +"failure" => "შეცდომა", +"File %s could not be reverted to version %s" => "ვერ მოხერხდა %s ფაილის %s ვერსიაზე დაბრუნება", +"No old versions available" => "ძველი ვერსია არ არსებობს", +"No path specified" => "გზა არ არის მითითებული", +"Versions" => "ვერსიები", +"Revert a file to a previous version by clicking on its revert button" => "დააბრუნეთ ფაილი წინა პოზიციაზე revert ღილაკზე დაჭერით" +); diff --git a/apps/files_versions/l10n/ko.php b/apps/files_versions/l10n/ko.php index f40925e1be2dc2d0a2b6d08dca26e0d40a144cb9..994144f39e1830aa47b4b00c7b5851fb39f7d53d 100644 --- a/apps/files_versions/l10n/ko.php +++ b/apps/files_versions/l10n/ko.php @@ -1,5 +1,11 @@ "역사", -"Files Versioning" => "파일 버전 관리", -"Enable" => "사용함" +"Could not revert: %s" => "되돌릴 수 없습니다: %s", +"success" => "완료", +"File %s was reverted to version %s" => "파일 %s를 버전 %s로 변경하였습니다.", +"failure" => "실패", +"File %s could not be reverted to version %s" => "파일 %s를 버전 %s로 되돌리지 못했습니다.", +"No old versions available" => "오래된 버전을 사용할 수 없습니다", +"No path specified" => "경로를 알수 없습니다.", +"Versions" => "버젼", +"Revert a file to a previous version by clicking on its revert button" => "변경 버튼을 클릭하여 이전 버전의 파일로 변경할 수 있습니다." ); diff --git a/apps/files_versions/l10n/lt_LT.php b/apps/files_versions/l10n/lt_LT.php index adf4893020e583c923c1893373b8907f6487ac08..fb4574c106a4557f10ea95cbd1657de6ac359efb 100644 --- a/apps/files_versions/l10n/lt_LT.php +++ b/apps/files_versions/l10n/lt_LT.php @@ -1,5 +1,11 @@ "Istorija", -"Files Versioning" => "Failų versijos", -"Enable" => "Įjungti" +"Could not revert: %s" => "Nepavyko atstatyti: %s", +"success" => "pavyko", +"File %s was reverted to version %s" => "Dokumentas %s buvo atstatytas į versiją %s", +"failure" => "klaida", +"File %s could not be reverted to version %s" => "Dokumento %s nepavyko atstatyti į versiją %s", +"No old versions available" => "Nėra senų versijų", +"No path specified" => "Nenurodytas kelias", +"Versions" => "Versijos", +"Revert a file to a previous version by clicking on its revert button" => "Atstatykite dokumentą į prieš tai buvusią versiją spausdami ant jo atstatymo mygtuko" ); diff --git a/apps/files_versions/l10n/sv.php b/apps/files_versions/l10n/sv.php index 46e2c0f8bcf3db3616af8d82a23ddf06c750b7bb..bcd21bc599ce1eb1eb0f9857626be6c8ae4be513 100644 --- a/apps/files_versions/l10n/sv.php +++ b/apps/files_versions/l10n/sv.php @@ -6,5 +6,6 @@ "File %s could not be reverted to version %s" => "Filen %s kunde inte återställas till version %s", "No old versions available" => "Inga gamla versioner finns tillgängliga", "No path specified" => "Ingen sökväg angiven", +"Versions" => "Versioner", "Revert a file to a previous version by clicking on its revert button" => "Återställ en fil till en tidigare version genom att klicka på knappen" ); diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php index d9e788033aaab1f995650b04f86b8db67de4f29b..a5285180e6c857eac565b8ba6740bdad3f12e098 100644 --- a/apps/files_versions/l10n/zh_CN.GB2312.php +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -1,5 +1,11 @@ "历史", -"Files Versioning" => "文件版本", -"Enable" => "启用" +"Could not revert: %s" => "无法恢复:%s", +"success" => "成功", +"File %s was reverted to version %s" => "文件 %s 已被恢复为 %s 的版本", +"failure" => "失败", +"File %s could not be reverted to version %s" => "文件 %s 无法恢复为 %s 的版本", +"No old versions available" => "没有可用的旧版本", +"No path specified" => "未指定路径", +"Versions" => "版本", +"Revert a file to a previous version by clicking on its revert button" => "请点击“恢复”按钮把文件恢复到早前的版本" ); diff --git a/apps/files_versions/lib/hooks.php b/apps/files_versions/lib/hooks.php index 7891b20e92fd2a74e6a28c3cd18d00a1e3efd9db..f0082b301a36d8701b57d417b051f944eca8a02b 100644 --- a/apps/files_versions/lib/hooks.php +++ b/apps/files_versions/lib/hooks.php @@ -63,4 +63,18 @@ class Hooks { } } + /** + * @brief clean up user specific settings if user gets deleted + * @param array with uid + * + * This function is connected to the pre_deleteUser signal of OC_Users + * to remove the used space for versions stored in the database + */ + public static function deleteUser_hook($params) { + if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { + $uid = $params['uid']; + Storage::deleteUser($uid); + } + } + } diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 5fc26fd090e92c94e6a81258228563d4c423a8de..c38ba688fe086e4e8e0d72011b04a84d90d5ca5c 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -279,6 +279,18 @@ class Storage { } + + /** + * @brief deletes used space for files versions in db if user was deleted + * + * @param type $uid id of deleted user + * @return result of db delete operation + */ + public static function deleteUser($uid) { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_versions` WHERE `user`=?'); + return $query->execute(array($uid)); + } + /** * @brief get the size of all stored versions from a given user * @param $uid id from the user @@ -366,12 +378,14 @@ class Storage { $versions_fileview = new \OC\Files\View('/'.$uid.'/files_versions'); // get available disk space for user + $softQuota = true; $quota = \OC_Preferences::getValue($uid, 'files', 'quota'); if ( $quota === null || $quota === 'default') { $quota = \OC_Appconfig::getValue('files', 'default_quota'); } if ( $quota === null || $quota === 'none' ) { - $quota = \OC\Files\Filesystem::free_space('/') / count(\OCP\User::getUsers()); + $quota = \OC\Files\Filesystem::free_space('/'); + $softQuota = false; } else { $quota = \OCP\Util::computerFileSize($quota); } @@ -385,15 +399,21 @@ class Storage { } // calculate available space for version history - $files_view = new \OC\Files\View('/'.$uid.'/files'); - $rootInfo = $files_view->getFileInfo('/'); - $free = $quota-$rootInfo['size']; // remaining free space for user - if ( $free > 0 ) { - $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $versionsSize; // how much space can be used for versions + // subtract size of files and current versions size from quota + if ($softQuota) { + $files_view = new \OC\Files\View('/'.$uid.'/files'); + $rootInfo = $files_view->getFileInfo('/'); + $free = $quota-$rootInfo['size']; // remaining free space for user + if ( $free > 0 ) { + $availableSpace = ($free * self::DEFAULTMAXSIZE / 100) - $versionsSize; // how much space can be used for versions + } else { + $availableSpace = $free-$versionsSize; + } } else { - $availableSpace = $free-$versionsSize; + $availableSpace = $quota; } + // after every 1000s run reduce the number of all versions not only for the current file $random = rand(0, 1000); if ($random == 0) { diff --git a/apps/user_ldap/group_ldap.php b/apps/user_ldap/group_ldap.php index ca5b3a35e5a0021b95bdfe9f83768a224daa9d77..432ddd215db6e1d4dcaeaccfefb70fa66c9c4c34 100644 --- a/apps/user_ldap/group_ldap.php +++ b/apps/user_ldap/group_ldap.php @@ -181,7 +181,7 @@ class GROUP_LDAP extends lib\Access implements \OCP\GroupInterface { //we got uids, need to get their DNs to 'tranlsate' them to usernames $filter = $this->combineFilterWithAnd(array( \OCP\Util::mb_str_replace('%uid', $member, - $this->connection>ldapLoginFilter, 'UTF-8'), + $this->connection->ldapLoginFilter, 'UTF-8'), $this->getFilterPartForUserSearch($search) )); $ldap_users = $this->fetchListOfUsers($filter, 'dn'); diff --git a/apps/user_ldap/l10n/cy_GB.php b/apps/user_ldap/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..335e2109c2db7d79a7980b07cd1eb3f409db351d --- /dev/null +++ b/apps/user_ldap/l10n/cy_GB.php @@ -0,0 +1,5 @@ + "Methwyd dileu", +"Password" => "Cyfrinair", +"Help" => "Cymorth" +); diff --git a/apps/user_ldap/l10n/el.php b/apps/user_ldap/l10n/el.php index 96ec818043720609a18b29cc0732afe1422ca3fe..e5fe6b6da7e3f245b95b2fef5a3a56369c504be2 100644 --- a/apps/user_ldap/l10n/el.php +++ b/apps/user_ldap/l10n/el.php @@ -4,6 +4,7 @@ "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Οι ρυθμίσεις είναι έγκυρες, αλλά απέτυχε η σύνδεση. Παρακαλώ ελέγξτε τις ρυθμίσεις του διακομιστή και τα διαπιστευτήρια.", "The configuration is invalid. Please look in the ownCloud log for further details." => "Μη έγκυρες ρυθμίσεις. Παρακαλώ ελέγξτε τις καταγραφές του ownCloud για περισσότερες λεπτομέρειες.", "Deletion failed" => "Η διαγραφή απέτυχε", +"Take over settings from recent server configuration?" => "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?", "Keep settings?" => "Διατήρηση ρυθμίσεων;", "Cannot add server configuration" => "Αδυναμία προσθήκης ρυθμίσεων διακομιστή", "Connection test succeeded" => "Επιτυχημένη δοκιμαστική σύνδεση", @@ -17,6 +18,7 @@ "Host" => "Διακομιστής", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Μπορείτε να παραλείψετε το πρωτόκολλο, εκτός αν απαιτείται SSL. Σε αυτή την περίπτωση ξεκινήστε με ldaps://", "Base DN" => "Base DN", +"One Base DN per line" => "Ένα DN Βάσης ανά γραμμή ", "You can specify Base DN for users and groups in the Advanced tab" => "Μπορείτε να καθορίσετε το Base DN για χρήστες και ομάδες από την καρτέλα Προηγμένες ρυθμίσεις", "User DN" => "User DN", "The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "Το DN του χρήστη πελάτη με το οποίο θα πρέπει να γίνει η σύνδεση, π.χ. uid=agent,dc=example,dc=com. Για χρήση χωρίς πιστοποίηση, αφήστε το DN και τον Κωδικό κενά.", @@ -32,22 +34,42 @@ "Defines the filter to apply, when retrieving groups." => "Καθορίζει το φίλτρο που θα ισχύει κατά την ανάκτηση ομάδων.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "χωρίς κάποια μεταβλητή, π.χ. \"objectClass=ΟμάδαPosix\".", "Connection Settings" => "Ρυθμίσεις Σύνδεσης", +"Configuration Active" => "Ενεργοποιηση ρυθμισεων", +"When unchecked, this configuration will be skipped." => "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. ", "Port" => "Θύρα", +"Backup (Replica) Host" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Host ", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη.", +"Backup (Replica) Port" => "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη", +"Disable Main Server" => "Απενεργοποιηση του κεντρικου διακομιστη", +"When switched on, ownCloud will only connect to the replica server." => "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα.", "Use TLS" => "Χρήση TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει.", "Case insensitve LDAP server (Windows)" => "LDAP server (Windows) με διάκριση πεζών-ΚΕΦΑΛΑΙΩΝ", "Turn off SSL certificate validation." => "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας.", "Not recommended, use for testing only." => "Δεν προτείνεται, χρήση μόνο για δοκιμές.", +"Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "σε δευτερόλεπτα. Μια αλλαγή αδειάζει την μνήμη cache.", "Directory Settings" => "Ρυθμίσεις Καταλόγου", "User Display Name Field" => "Πεδίο Ονόματος Χρήστη", "The LDAP attribute to use to generate the user`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud.", "Base User Tree" => "Base User Tree", +"One User Base DN per line" => "Ένα DN βάσης χρηστών ανά γραμμή", +"User Search Attributes" => "Χαρακτηριστικά αναζήτησης των χρηστών ", +"Optional; one attribute per line" => "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή ", "Group Display Name Field" => "Group Display Name Field", "The LDAP attribute to use to generate the groups`s ownCloud name." => "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud.", "Base Group Tree" => "Base Group Tree", +"One Group Base DN per line" => "Μια ομαδικη Βάση DN ανά γραμμή", +"Group Search Attributes" => "Ομάδα Χαρακτηριστικων Αναζήτηση", "Group-Member association" => "Group-Member association", +"Special Attributes" => "Ειδικά Χαρακτηριστικά ", +"Quota Field" => "Ποσοσταση πεδιου", +"Quota Default" => "Προκαθισμενο πεδιο", "in bytes" => "σε bytes", +"Email Field" => "Email τυπος", +"User Home Folder Naming Rule" => "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας ", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Αφήστε το κενό για το όνομα χρήστη (προεπιλογή). Διαφορετικά, συμπληρώστε μία ιδιότητα LDAP/AD.", +"Test Configuration" => "Δοκιμαστικες ρυθμισεις", "Help" => "Βοήθεια" ); diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 91eb38c7c5f7b90078958f2dad13fd73eb2e3ffe..665e9d6fa2c2ebf1c21025e5acabdf2783f677ce 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -1,8 +1,24 @@ "Serveri seadistuse kustutamine ebaõnnestus", +"The configuration is valid and the connection could be established!" => "Seadistus on korrektne ning ühendus on olemas!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "Seadistus on vigane. Palun vaata ownCloud logist täpsemalt.", "Deletion failed" => "Kustutamine ebaõnnestus", +"Take over settings from recent server configuration?" => "Võta sätted viimasest serveri seadistusest?", +"Keep settings?" => "Säilitada seadistus?", +"Cannot add server configuration" => "Ei suuda lisada serveri seadistust", +"Connection test succeeded" => "Test ühendus õnnestus", +"Connection test failed" => "Test ühendus ebaõnnestus", +"Do you really want to delete the current Server Configuration?" => "Oled kindel, et tahad kustutada praegust serveri seadistust?", +"Confirm Deletion" => "Kinnita kustutamine", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada.", +"Server configuration" => "Serveri seadistus", +"Add Server Configuration" => "Lisa serveri seadistus", "Host" => "Host", "You can omit the protocol, except you require SSL. Then start with ldaps://" => "Sa ei saa protokolli ära jätta, välja arvatud siis, kui sa nõuad SSL-ühendust. Sel juhul alusta eesliitega ldaps://", "Base DN" => "Baas DN", +"One Base DN per line" => "Üks baas-DN rea kohta", "You can specify Base DN for users and groups in the Advanced tab" => "Sa saad kasutajate ja gruppide baas DN-i määrata lisavalikute vahekaardilt", "User DN" => "Kasutaja 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." => "Klientkasutaja DN, kellega seotakse, nt. uid=agent,dc=näidis,dc=com. Anonüümseks ligipääsuks jäta DN ja parool tühjaks.", @@ -17,21 +33,43 @@ "Group Filter" => "Grupi filter", "Defines the filter to apply, when retrieving groups." => "Määrab gruppe hankides filtri, mida rakendatakse.", "without any placeholder, e.g. \"objectClass=posixGroup\"." => "ilma ühegi kohatäitjata, nt. \"objectClass=posixGroup\".", +"Connection Settings" => "Ühenduse seaded", +"Configuration Active" => "Seadistus aktiivne", +"When unchecked, this configuration will be skipped." => "Kui märkimata, siis seadistust ei kasutata", "Port" => "Port", +"Backup (Replica) Host" => "Varuserver", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "Lisa täiendav LDAP/AD server, mida replikeeritakse peaserveriga.", +"Backup (Replica) Port" => "Varuserveri (replika) ldap port", +"Disable Main Server" => "Ära kasuta peaserverit", +"When switched on, ownCloud will only connect to the replica server." => "Märgituna ownCloud ühendub ainult varuserverisse.", "Use TLS" => "Kasutaja TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "LDAPS puhul ära kasuta. Ühendus ei toimi.", "Case insensitve LDAP server (Windows)" => "Mittetõstutundlik LDAP server (Windows)", "Turn off SSL certificate validation." => "Lülita SSL sertifikaadi kontrollimine välja.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma ownCloud serverisse.", "Not recommended, use for testing only." => "Pole soovitatav, kasuta ainult testimiseks.", +"Cache Time-To-Live" => "Puhvri iga", "in seconds. A change empties the cache." => "sekundites. Muudatus tühjendab vahemälu.", +"Directory Settings" => "Kataloogi seaded", "User Display Name Field" => "Kasutaja näidatava nime väli", "The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP omadus, mida kasutatakse kasutaja ownCloudi nime loomiseks.", "Base User Tree" => "Baaskasutaja puu", +"One User Base DN per line" => "Üks kasutajate baas-DN rea kohta", +"User Search Attributes" => "Kasutaja otsingu atribuudid", +"Optional; one attribute per line" => "Valikuline; üks atribuut rea kohta", "Group Display Name Field" => "Grupi näidatava nime väli", "The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP omadus, mida kasutatakse ownCloudi grupi nime loomiseks.", "Base Group Tree" => "Baasgrupi puu", +"One Group Base DN per line" => "Üks grupi baas-DN rea kohta", +"Group Search Attributes" => "Grupi otsingu atribuudid", "Group-Member association" => "Grupiliikme seotus", +"Special Attributes" => "Spetsiifilised atribuudid", +"Quota Field" => "Mahupiirangu atribuut", +"Quota Default" => "Vaikimisi mahupiirang", "in bytes" => "baitides", +"Email Field" => "Email atribuut", +"User Home Folder Naming Rule" => "Kasutaja kodukataloogi nimetamise reegel", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhul määra LDAP/AD omadus.", +"Test Configuration" => "Testi seadistust", "Help" => "Abiinfo" ); diff --git a/apps/user_ldap/l10n/fi_FI.php b/apps/user_ldap/l10n/fi_FI.php index bfbd6c78564b37b4e7a6f4ac58a21c757a1f8a8f..38ecb5d82a882f55dfa576ca8305aa0793c222db 100644 --- a/apps/user_ldap/l10n/fi_FI.php +++ b/apps/user_ldap/l10n/fi_FI.php @@ -40,6 +40,7 @@ "Base Group Tree" => "Ryhmien juuri", "Group-Member association" => "Ryhmän ja jäsenen assosiaatio (yhteys)", "in bytes" => "tavuissa", +"Email Field" => "Sähköpostikenttä", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Jätä tyhjäksi käyttäjänimi (oletusasetus). Muutoin anna LDAP/AD-atribuutti.", "Help" => "Ohje" ); diff --git a/apps/user_ldap/l10n/fr.php b/apps/user_ldap/l10n/fr.php index 990658e147e03936cc94bdafb802a0bb518817de..ea07bd4a11c19a9e870dd5b03f34c78d3974d905 100644 --- a/apps/user_ldap/l10n/fr.php +++ b/apps/user_ldap/l10n/fr.php @@ -1,6 +1,6 @@ "Échec de la suppression de la configuration du serveur", -"The configuration is valid and the connection could be established!" => "La configuration est valide est la connexion peut être établie !", +"The configuration is valid and the connection could be established!" => "La configuration est valide et la connexion peut être établie !", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuration est valide, mais le lien ne peut être établi. Veuillez vérifier les paramètres du serveur ainsi que vos identifiants de connexion.", "The configuration is invalid. Please look in the ownCloud log for further details." => "La configuration est invalide. Veuillez vous référer aux fichiers de journaux ownCloud pour plus d'information.", "Deletion failed" => "La suppression a échoué", diff --git a/apps/user_ldap/l10n/id.php b/apps/user_ldap/l10n/id.php index 5912789c85640cc78afcd098ec9ad1e52c8fd9c7..1f6d8fcffe37b645b22e5b31916ffed630b20e1d 100644 --- a/apps/user_ldap/l10n/id.php +++ b/apps/user_ldap/l10n/id.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "matikan validasi sertivikat SSL", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Jika koneksi hanya bekerja dengan opsi ini, impor sertifikat SSL server LDAP dari server ownCloud anda.", "Not recommended, use for testing only." => "tidak disarankan, gunakan hanya untuk pengujian.", +"Cache Time-To-Live" => "Gunakan Tembolok untuk Time-To-Live", "in seconds. A change empties the cache." => "dalam detik. perubahan mengosongkan cache", "Directory Settings" => "Pengaturan Direktori", "User Display Name Field" => "Bidang Tampilan Nama Pengguna", @@ -63,7 +64,12 @@ "Group Search Attributes" => "Atribut Pencarian Grup", "Group-Member association" => "asosiasi Anggota-Grup", "Special Attributes" => "Atribut Khusus", +"Quota Field" => "Bidang Kuota", +"Quota Default" => "Kuota Baku", "in bytes" => "dalam bytes", +"Email Field" => "Bidang Email", +"User Home Folder Naming Rule" => "Aturan Penamaan Folder Home Pengguna", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Biarkan nama pengguna kosong (default). Atau tetapkan atribut LDAP/AD.", +"Test Configuration" => "Uji Konfigurasi", "Help" => "bantuan" ); diff --git a/apps/user_ldap/l10n/ka_GE.php b/apps/user_ldap/l10n/ka_GE.php index b31767fe93549df48e4612a6504e1ec277420a8d..b3f6058a0ca421e505ada2913fb52f93ce054f1d 100644 --- a/apps/user_ldap/l10n/ka_GE.php +++ b/apps/user_ldap/l10n/ka_GE.php @@ -1,4 +1,75 @@ "წაშლის ველი", +"Failed to delete the server configuration" => "შეცდომა სერვერის კონფიგურაციის წაშლისას", +"The configuration is valid and the connection could be established!" => "კონფიგურაცია მართებულია და კავშირი დამყარდება!", +"The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები.", +"The configuration is invalid. Please look in the ownCloud log for further details." => "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში.", +"Deletion failed" => "წაშლა ვერ განხორციელდა", +"Take over settings from recent server configuration?" => "დაბრუნდებით სერვერის წინა კონფიგურაციაში?", +"Keep settings?" => "დავტოვოთ პარამეტრები?", +"Cannot add server configuration" => "სერვერის პარამეტრების დამატება ვერ მოხერხდა", +"Connection test succeeded" => "კავშირის ტესტირება მოხერხდა", +"Connection test failed" => "კავშირის ტესტირება ვერ მოხერხდა", +"Do you really want to delete the current Server Configuration?" => "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?", +"Confirm Deletion" => "წაშლის დადასტურება", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი.", +"Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის.", +"Server configuration" => "სერვერის პარამეტრები", +"Add Server Configuration" => "სერვერის პარამეტრების დამატება", +"Host" => "ჰოსტი", +"You can omit the protocol, except you require SSL. Then start with ldaps://" => "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://", +"Base DN" => "საწყისი DN", +"One Base DN per line" => "ერთი საწყისი DN ერთ ხაზზე", +"You can specify Base DN for users and groups in the Advanced tab" => "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში", +"User DN" => "მომხმარებლის DN", +"The DN of the client user with which the bind shall be done, e.g. uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password empty." => "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი.", +"Password" => "პაროლი", +"For anonymous access, leave DN and Password empty." => "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი.", +"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\".", +"Connection Settings" => "კავშირის პარამეტრები", +"Configuration Active" => "კონფიგურაცია აქტიურია", +"When unchecked, this configuration will be skipped." => "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება.", +"Port" => "პორტი", +"Backup (Replica) Host" => "ბექაფ (რეპლიკა) ჰოსტი", +"Give an optional backup host. It must be a replica of the main LDAP/AD server." => "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა.", +"Backup (Replica) Port" => "ბექაფ (რეპლიკა) პორტი", +"Disable Main Server" => "გამორთეთ ძირითადი სერვერი", +"When switched on, ownCloud will only connect to the replica server." => "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს.", +"Use TLS" => "გამოიყენეთ TLS", +"Do not use it additionally for LDAPS connections, it will fail." => "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება.", +"Case insensitve LDAP server (Windows)" => "LDAP server (Windows)", +"Turn off SSL certificate validation." => "გამორთეთ SSL სერთიფიკატის ვალიდაცია.", +"If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "იმ შემთხვევაში თუ მუშაობს მხოლოდ ეს ოფცია, დააიმპორტეთ LDAP სერვერის SSL სერთიფიკატი თქვენს ownCloud სერვერზე.", +"Not recommended, use for testing only." => "არ არის რეკომენდირებული, გამოიყენეთ მხოლოდ სატესტოდ.", +"Cache Time-To-Live" => "ქეშის სიცოცხლის ხანგრძლივობა", +"in seconds. A change empties the cache." => "წამებში. ცვლილება ასუფთავებს ქეშს.", +"Directory Settings" => "დირექტორიის პარამეტრები", +"User Display Name Field" => "მომხმარებლის დისფლეის სახელის ფილდი", +"The LDAP attribute to use to generate the user`s ownCloud name." => "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის.", +"Base User Tree" => "ძირითად მომხმარებელთა სია", +"One User Base DN per line" => "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე", +"User Search Attributes" => "მომხმარებლის ძებნის ატრიბუტი", +"Optional; one attribute per line" => "ოფციონალური; თითო ატრიბუტი თითო ხაზზე", +"Group Display Name Field" => "ჯგუფის დისფლეის სახელის ფილდი", +"The LDAP attribute to use to generate the groups`s ownCloud name." => "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის.", +"Base Group Tree" => "ძირითად ჯგუფთა სია", +"One Group Base DN per line" => "ერთი ჯგუფის საწყისი DN ერთ ხაზზე", +"Group Search Attributes" => "ჯგუფური ძებნის ატრიბუტი", +"Group-Member association" => "ჯგუფის წევრობის ასოციაცია", +"Special Attributes" => "სპეციალური ატრიბუტები", +"Quota Field" => "ქვოტას ველი", +"Quota Default" => "საწყისი ქვოტა", +"in bytes" => "ბაიტებში", +"Email Field" => "იმეილის ველი", +"User Home Folder Naming Rule" => "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი", +"Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი.", +"Test Configuration" => "კავშირის ტესტირება", "Help" => "დახმარება" ); diff --git a/apps/user_ldap/l10n/sq.php b/apps/user_ldap/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..24fd869057ddd922bb0a53a40722bf15f0f2dbf2 --- /dev/null +++ b/apps/user_ldap/l10n/sq.php @@ -0,0 +1,4 @@ + "Kodi", +"Help" => "Ndihmë" +); diff --git a/apps/user_ldap/l10n/sv.php b/apps/user_ldap/l10n/sv.php index 12ecc7b1633c15ea469f48cbd7d0d619d26814af..1bb4d9dc0b15b092e961bff2e83d1269701ce14b 100644 --- a/apps/user_ldap/l10n/sv.php +++ b/apps/user_ldap/l10n/sv.php @@ -48,6 +48,7 @@ "Turn off SSL certificate validation." => "Stäng av verifiering av SSL-certifikat.", "If connection only works with this option, import the LDAP server's SSL certificate in your ownCloud server." => "Om anslutningen bara fungerar med det här alternativet, importera LDAP-serverns SSL-certifikat i din ownCloud-server.", "Not recommended, use for testing only." => "Rekommenderas inte, använd bara för test. ", +"Cache Time-To-Live" => "Cache Time-To-Live", "in seconds. A change empties the cache." => "i sekunder. En förändring tömmer cache.", "Directory Settings" => "Mappinställningar", "User Display Name Field" => "Attribut för användarnamn", @@ -64,8 +65,11 @@ "Group-Member association" => "Attribut för gruppmedlemmar", "Special Attributes" => "Specialattribut", "Quota Field" => "Kvotfält", +"Quota Default" => "Datakvot standard", "in bytes" => "i bytes", "Email Field" => "E-postfält", +"User Home Folder Naming Rule" => "Namnregel för hemkatalog", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attribut.", +"Test Configuration" => "Testa konfigurationen", "Help" => "Hjälp" ); diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index f4f7486035866c4b1693b4210d662ca23d8bde9c..a3b86224ac2f53bc105db5b3755d59d382963b7b 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -1,4 +1,5 @@ "WebDAV autentimine", -"URL: http://" => "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." ); diff --git a/apps/user_webdavauth/l10n/ka_GE.php b/apps/user_webdavauth/l10n/ka_GE.php new file mode 100644 index 0000000000000000000000000000000000000000..f475ea0b7374bf089369eeff0dd9ba2d5d06317c --- /dev/null +++ b/apps/user_webdavauth/l10n/ka_GE.php @@ -0,0 +1,5 @@ + "WebDAV აუთენთიფიკაცია", +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud–ი გამოგიგზავნით ანგარიშის მონაცემებს ამ URL–ზე. ეს პლაგინი შეამოწმებს პასუხს და მოახდენს მის ინტერპრეტაციას HTTP სტატუსკოდებში 401 და 403 დაუშვებელი მონაცემებისთვის, ხოლო სხვა დანარჩენს დაშვებადი მონაცემებისთვის." +); diff --git a/apps/user_webdavauth/l10n/lt_LT.php b/apps/user_webdavauth/l10n/lt_LT.php new file mode 100644 index 0000000000000000000000000000000000000000..8d0492ae487beb61ff302fdb5590a8d3ea6b5a1b --- /dev/null +++ b/apps/user_webdavauth/l10n/lt_LT.php @@ -0,0 +1,5 @@ + "WebDAV autorizavimas", +"URL: http://" => "Adresas: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud išsiųs naudotojo duomenis į šį WWW adresą. Šis įskiepis patikrins gautą atsakymą ir interpretuos HTTP būsenos kodą 401 ir 403 kaip negaliojančius duomenis, ir visus kitus gautus atsakymus kaip galiojančius duomenis. " +); diff --git a/apps/user_webdavauth/l10n/tr.php b/apps/user_webdavauth/l10n/tr.php index 4a2f6d2403b5781c4a8bdc51a6cb4c61e27ba82f..c495a39dce57845778cf779a29d66f65894b5055 100644 --- a/apps/user_webdavauth/l10n/tr.php +++ b/apps/user_webdavauth/l10n/tr.php @@ -1,4 +1,5 @@ "WebDAV Kimlik doğrulaması", -"URL: http://" => "URL: http://" +"URL: http://" => "URL: http://", +"ownCloud will send the user credentials to this URL. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. " ); diff --git a/config/config.sample.php b/config/config.sample.php index 995a02f6d945341848c74948727164ab8dd691aa..b70b3cf533dd0720ede8321b6423fa142f0c4f8e 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -56,10 +56,10 @@ $CONFIG = array( /* Theme to use for ownCloud */ "theme" => "", -/* Path to the 3rdparty directory */ +/* Path to the parent directory of the 3rdparty directory */ "3rdpartyroot" => "", -/* URL to the 3rdparty directory, as seen by the browser */ +/* URL to the parent directory of the 3rdparty directory, as seen by the browser */ "3rdpartyurl" => "", /* Default app to load on login */ @@ -126,7 +126,10 @@ $CONFIG = array( /* Check if ownCloud is up to date */ "updatechecker" => true, -/* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ +/* Are we connected to the internet or are we running in a closed network? */ +"has_internet_connection" => true, + + /* Place to log to, can be owncloud and syslog (owncloud is log menu item in admin menu) */ "log_type" => "owncloud", /* File for the owncloud logger to log to, (default is ownloud.log in the data dir */ @@ -135,6 +138,10 @@ $CONFIG = array( /* Loglevel to start logging at. 0=DEBUG, 1=INFO, 2=WARN, 3=ERROR (default is WARN) */ "loglevel" => "", +/* Append All database query and parameters to the log file. + (whatch out, this option can increase the size of your log file)*/ +"log_query" => false, + /* Lifetime of the remember login cookie, default is 15 days */ "remember_login_cookie_lifetime" => 60*60*24*15, diff --git a/core/ajax/update.php b/core/ajax/update.php index e40d0def4e43806ff38721992d0b16b08de11d5a..6015a901eb795c24c424b3d0c02f4367c2dc344d 100644 --- a/core/ajax/update.php +++ b/core/ajax/update.php @@ -36,11 +36,15 @@ if (OC::checkUpgrade(false)) { * @param UpdateWatcher $watcher */ function __doFileCacheUpgrade($watcher) { - $query = \OC_DB::prepare(' - SELECT DISTINCT user - FROM`*PREFIX*fscache` - '); - $result = $query->execute(); + try { + $query = \OC_DB::prepare(' + SELECT DISTINCT `user` + FROM `*PREFIX*fscache` + '); + $result = $query->execute(); + } catch (\Exception $e) { + return; + } $users = $result->fetchAll(); if(count($users) == 0) { return; diff --git a/core/css/styles.css b/core/css/styles.css index e7c509e3409f569a7f7afdd3041dc675c16595a5..4dfa3f64a375c70a5ea3f9e8b524b229e5a25c45 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -12,7 +12,7 @@ table, td, th { vertical-align:middle; } a { border:0; color:#000; text-decoration:none;} a, a *, input, input *, select, .button span, li, label { cursor:pointer; } ul { list-style:none; } -body { background:#fefefe; font:normal .8em/1.6em "Lucida Grande", Arial, Verdana, sans-serif; color:#000; } +body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Arial,FreeSans,sans-serif; color:#000; } /* HEADERS */ @@ -23,13 +23,13 @@ body { background:#fefefe; font:normal .8em/1.6em "Lucida Grande", Arial, Verdan #body-login #header { margin: -2em auto 0; text-align:center; height:10em; padding:1em 0 .5em; -moz-box-shadow:0 0 1em rgba(0, 0, 0, .5); -webkit-box-shadow:0 0 1em rgba(0, 0, 0, .5); box-shadow:0 0 1em rgba(0, 0, 0, .5); background:#1d2d44; /* Old browsers */ -background:-moz-linear-gradient(top, #35537a 0%, #1d2d42 100%); /* FF3.6+ */ -background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d42)); /* Chrome,Safari4+ */ -background:-webkit-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Chrome10+,Safari5.1+ */ -background:-o-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* Opera11.10+ */ -background:-ms-linear-gradient(top, #35537a 0%,#1d2d42 100%); /* IE10+ */ -background:linear-gradient(top, #35537a 0%,#1d2d42 100%); /* W3C */ -filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d42',GradientType=0 ); /* IE6-9 */ } +background:-moz-linear-gradient(top, #35537a 0%, #1d2d44 100%); /* FF3.6+ */ +background:-webkit-gradient(linear, left top, left bottom, color-stop(0%,#35537a), color-stop(100%,#1d2d44)); /* Chrome,Safari4+ */ +background:-webkit-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Chrome10+,Safari5.1+ */ +background:-o-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* Opera11.10+ */ +background:-ms-linear-gradient(top, #35537a 0%,#1d2d44 100%); /* IE10+ */ +background:linear-gradient(top, #35537a 0%,#1d2d44 100%); /* W3C */ +filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endColorstr='#1d2d44',GradientType=0 ); /* IE6-9 */ } #owncloud { position:absolute; top:0; left:0; padding:6px; padding-bottom:0; } .header-right { float:right; vertical-align:middle; padding:0.5em; } @@ -38,9 +38,11 @@ filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#35537a', endC /* INPUTS */ input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], -textarea, select, button, .button, #quota, div.jp-progress, .pager li a { +textarea, select, +button, .button, +#quota, div.jp-progress, .pager li a { width:10em; margin:.3em; padding:.6em .5em .4em; - font-size:1em; font-family:Arial, Verdana, sans-serif; + font-size:1em; background:#fff; color:#333; border:1px solid #ddd; outline:none; -moz-box-shadow:0 1px 1px #fff, 0 2px 0 #bbb inset; -webkit-box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; box-shadow:0 1px 1px #fff, 0 1px 0 #bbb inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; @@ -48,6 +50,7 @@ textarea, select, button, .button, #quota, div.jp-progress, .pager li a { input[type="hidden"] { height:0; width:0; } input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], textarea { background:#f8f8f8; color:#555; cursor:text; + font-family: inherit; /* use default ownCloud font instead of default textarea monospace */ } input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"] { -webkit-appearance:textfield; -moz-appearance:textfield; @@ -74,18 +77,35 @@ input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:# /* BUTTONS */ -input[type="submit"], input[type="button"], button, .button, #quota, div.jp-progress, select, .pager li a { +input[type="submit"], input[type="button"], +button, .button, +#quota, div.jp-progress, select, .pager li a { width:auto; padding:.4em; background-color:rgba(240,240,240,.9); font-weight:bold; color:#555; text-shadow:rgba(255,255,255,.9) 0 1px 0; border:1px solid rgba(190,190,190,.9); cursor:pointer; -moz-box-shadow:0 1px 1px rgba(255,255,255,.9), 0 1px 1px rgba(255,255,255,.9) inset; -webkit-box-shadow:0 1px 1px rgba(255,255,255,.9), 0 1px 1px rgba(255,255,255,.9) inset; box-shadow:0 1px 1px rgba(255,255,255,.9), 0 1px 1px rgba(255,255,255,.9) inset; -moz-border-radius:.5em; -webkit-border-radius:.5em; border-radius:.5em; } -input[type="submit"]:hover, input[type="submit"]:focus, input[type="button"]:hover, select:hover, select:focus, select:active, input[type="button"]:focus, .button:hover { - background:rgba(250,250,250,.9); color:#333; +input[type="submit"]:hover, input[type="submit"]:focus, +input[type="button"]:hover, input[type="button"]:focus, +button:hover, button:focus, +.button:hover, .button:focus, +select:hover, select:focus, select:active { + background-color:rgba(250,250,250,.9); + color:#333; } input[type="submit"] img, input[type="button"] img, button img, .button img { cursor:pointer; } #header .button { border:none; -moz-box-shadow:none; -webkit-box-shadow:none; box-shadow:none; } +/* disabled input fields and buttons */ +input:disabled, input:disabled:hover, input:disabled:focus, +button:disabled, button:disabled:hover, button:disabled:focus, +.button:disabled, .button:disabled:hover, .button:disabled:focus, +a.disabled, a.disabled:hover, a.disabled:focus { + background: rgba(230,230,230,.9); + color: #999; + cursor: default; +} + /* Primary action button, use sparingly */ .primary, input[type="submit"].primary, input[type="button"].primary, button.primary, .button.primary { border:1px solid #1d2d44; @@ -100,7 +120,7 @@ input[type="submit"] img, input[type="button"] img, button img, .button img { cu } .primary:active, input[type="submit"].primary:active, input[type="button"].primary:active, button.primary:active, .button.primary:active { border:1px solid #1d2d44; - background:#1d2d42; color:#bbb; text-shadow:#000 0 -1px 0; + background:#1d2d44; color:#bbb; text-shadow:#000 0 -1px 0; -moz-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; -webkit-box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; box-shadow:0 1px 1px #fff,0 1px 1px 0 rgba(0,0,0,.2) inset; } @@ -200,14 +220,13 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #login #databaseField .infield { padding-left:0; } #login form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } -#login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } /* Show password toggle */ -#show { position:absolute; right:1em; top:.8em; float:right; } -#show, #personal-show { display:none; } -#show + label { right:1em; top:1.25em!important; } -#show:checked + label, #personal-show:checked + label { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } -#show + label, #personal-show + label { +#show, #dbpassword { position:absolute; right:1em; top:.8em; float:right; } +#show, #dbpassword, #personal-show { display:none; } +#show + label, #dbpassword + label { right:1em; top:1.25em!important; } +#show:checked + label, #dbpassword:checked + label, #personal-show:checked + label { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } +#show + label, #dbpassword + label, #personal-show + label { position:absolute!important; height:14px; width:24px; background-image:url("../img/actions/toggle.png"); background-repeat:no-repeat; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3; @@ -226,14 +245,24 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } } #login form #selectDbType label.ui-state-hover, #login form #selectDbType label.ui-state-active { color:#000; background-color:#e8e8e8; } -/* Warnings */ -fieldset.warning { - padding:8px; - color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7; - border-radius:5px; +/* Warnings, for information */ +.warning { + display: block; + background-color: #f2dede; + color: #b94a48; + padding: 8px; + margin: 0 7px 5px; + border: 1px solid #eed3d7; + border-radius: 5px; +} +.warning legend, +.warning a { + color: #b94a48 !important; + font-weight: bold; } -fieldset.warning legend { color:#b94a48 !important; } -fieldset.warning a { color:#b94a48 !important; font-weight:bold; } +/* Errors, for grave states */ +li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; } +.error { color:#FF3B3B; } /* Alternative Logins */ #alternative-logins legend { margin-bottom:10px; } @@ -243,21 +272,47 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } /* NAVIGATION ------------------------------------------------------------- */ #navigation { position:fixed; float:left; width:64px; padding-top:3.5em; z-index:75; height:100%; - background:#383c43 url('../img/noise.png') repeat; border-right:1px #333 solid; + background:#383c43 url('../img/noise.png') repeat; -moz-box-shadow:0 0 7px #000; -webkit-box-shadow:0 0 7px #000; box-shadow:0 0 7px #000; overflow:hidden; box-sizing:border-box; -moz-box-sizing:border-box; } -#navigation:hover { overflow-y:auto; } -#navigation a { - display:block; padding:8px 0 4px; +#navigation:hover { overflow-y:auto; } /* show scrollbar only on hover */ +#navigation a span { + display:block; text-decoration:none; font-size:10px; text-align:center; color:#fff; text-shadow:#000 0 -1px 0; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; filter:alpha(opacity=50); opacity:.5; - white-space:nowrap; overflow:hidden; text-overflow:ellipsis; // ellipsize long app names + white-space:nowrap; overflow:hidden; text-overflow:ellipsis; /* ellipsize long app names */ } - #navigation a:hover, #navigation a:focus { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter:alpha(opacity=80); opacity:.8; } - #navigation a.active { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } - #navigation .icon { display:block; width:32px; height:32px; margin:0 16px 0; } + + /* icon opacity and hover effect */ + #navigation a img, + #navigation a span { + /* 50% opacity when inactive */ + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=50); + opacity: .5; + } + #navigation a:hover img, #navigation a:focus img, + #navigation a:hover span, #navigation a:focus span { + /* 80% opacity when hovered or focused */ + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; + filter: alpha(opacity=80); + opacity: .8; + } + #navigation a.active img, + #navigation a.active span { + /* full opacity for the active app */ + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100); + opacity: 1; + } + + /* positioning */ + #navigation .icon { + display:block; + width:32px; height:32px; + margin:0 16px 0; padding:8px 0 4px; + } #navigation li:first-child a { padding-top:16px; } @@ -311,27 +366,27 @@ div.jp-play-bar, div.jp-seek-bar { padding:0; } .pager { list-style:none; float:right; display:inline; margin:.7em 13em 0 0; } .pager li { display:inline-block; } -li.update, li.error { width:640px; margin:4em auto; padding:1em 1em 1em 4em; background:#ffe .8em .8em no-repeat; border:1px solid #ccc; -moz-border-radius:10px; -webkit-border-radius:10px; border-radius:10px; cursor:default; } -.error { color:#FF3B3B; } .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { overflow:hidden; text-overflow:ellipsis; } -.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777777; padding-left:25px; background-position:0 0.3em;} +.hint { background-image:url('../img/actions/info.png'); background-repeat:no-repeat; color:#777; padding-left:25px; background-position:0 0.3em;} .separator { display:inline; border-left:1px solid #d3d3d3; border-right:1px solid #fff; height:10px; width:0px; margin:4px; } a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;padding-top:0px;padding-bottom:2px; text-decoration:none; margin-top:5px } -.exception{color:#000000;} +.exception{color:#000;} .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; } +.ui-datepicker-prev,.ui-datepicker-next{ border:1px solid #ddd; background:#fff; } /* ---- DIALOGS ---- */ -#dirtree {width:100%;} -#filelist {height:270px; overflow:scroll; background-color:white; width:100%;} +#dirup {width:4%;} +#dirtree {width:92%;} +#filelist {height:270px; overflow-y:auto; background-color:white; width:100%;} .filepicker_element_selected { background-color:lightblue;} -.filepicker_loader {height:120px; width:100%; background-color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3; visibility:visible; position:absolute; top:0; left:0; text-align:center; padding-top:150px;} - +.filepicker_loader {height:170px; width:100%; background-color:#333; -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; filter:alpha(opacity=30); opacity:.3; visibility:visible; position:absolute; top:0; left:0; text-align:center; padding-top:150px;} +.ui-dialog {position:fixed !important;} +span.ui-icon {float: left; margin: 3px 7px 30px 0;} /* ---- CATEGORIES ---- */ #categoryform .scrollarea { position:absolute; left:10px; top:10px; right:10px; bottom:50px; overflow:auto; border:1px solid #ddd; background:#f8f8f8; } @@ -343,7 +398,7 @@ a.bookmarklet { background-color:#ddd; border:1px solid #ccc; padding:5px;paddin #category_addinput { width:10em; } /* ---- APP SETTINGS ---- */ -.popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888888; color:#333333; padding:10px; position:fixed !important; z-index:200; } +.popup { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:200; } .popup.topright { top:7em; right:1em; } .popup.bottomleft { bottom:1em; left:33em; } .popup .close { position:absolute; top:0.2em; right:0.2em; height:20px; width:20px; background:url('../img/actions/delete.svg') no-repeat center; } @@ -360,3 +415,212 @@ div.crumb { float:left; display:block; background:url('../img/breadcrumb.svg') n div.crumb:first-child { padding:10px 20px 10px 5px; } div.crumb.last { font-weight:bold; background:none; padding-right:10px; } div.crumb a{ padding: 0.9em 0 0.7em 0; } + + + +/* ---- APP STYLING ---- */ +#app { + height: 100%; + width: 100%; +} + +/* Navigation: folder like structure */ +#app-navigation { + width: 250px; + height: 100%; + float: left; + padding-bottom: 32px; + -moz-box-sizing: border-box; box-sizing: border-box; + background-color: #f8f8f8; + border-right: 1px solid #ccc; +} +#app-navigation > ul { + height: 100%; + overflow: auto; + -moz-box-sizing: border-box; box-sizing: border-box; +} +#app-navigation li { + position: relative; + width: 100%; + -moz-box-sizing: border-box; box-sizing: border-box; + text-shadow: 0 1px 0 rgba(255,255,255,.9); +} +#app-navigation .active, +#app-navigation .active a { /* active navigation entry or folder */ + background-color: #ddd; + text-shadow: 0 1px 0 rgba(255,255,255,.7); +} + +/* special rules for first-level entries and folders */ +#app-navigation > ul > li { + background-color: #eee; + border-top: 1px solid #fff; + border-bottom: 1px solid #ddd; +} +#app-navigation > ul > .active { + border-top: 1px solid #ccc; + border-bottom: 1px solid #ccc; +} + +#app-navigation .with-icon a { + padding-left: 32px; + background-size: 16px 16px; background-position: 10px center; background-repeat: no-repeat; +} + +#app-navigation li > a { + display: block; + width: 100%; + padding: 0 16px; + overflow: hidden; + -moz-box-sizing: border-box; box-sizing: border-box; + line-height: 32px; + white-space: nowrap; + text-overflow: ellipsis; + color: #333; +} +#app-navigation li:hover > a { + background-color: #ddd; +} +#app-navigation > ul > li:hover { + border-top: 1px solid #ccc; + border-bottom: 1px solid #ccc; +} + +#app-navigation .collapse { + display: none; /* hide collapse button intially */ +} +#app-navigation .collapsible > .collapse { + position: absolute; + left: 6px; + top: 5px; + height: 16px; + width: 16px; + background: none; background-image: url('../img/actions/triangle-s.svg'); + background-size: 16px 16px; background-repeat: no-repeat; + border: none; + border-radius: 0; + outline: none !important; + box-shadow: none; +} +#app-navigation .collapsible:hover > a { + background-image: none; +} +#app-navigation .collapsible:hover > .collapse { + display: block; +} + +#app-navigation .collapsible .collapse { + -moz-transform: rotate(-90deg); + -webkit-transform: rotate(-90deg); + -ms-transform:rotate(-90deg); + -o-transform:rotate(-90deg); + transform: rotate(-90deg); +} +#app-navigation .collapsible.open .collapse { + -moz-transform: rotate(0); + -webkit-transform: rotate(0); + -ms-transform:rotate(0); + -o-transform:rotate(0); + transform: rotate(0); +} + +/* Second level nesting for lists */ +#app-navigation > ul ul { + display: none; +} +#app-navigation > ul ul li > a { + padding-left: 32px; +} +#app-navigation > .with-icon ul li > a { + padding-left: 48px; + background-position: 24px center; +} + +#app-navigation .open { + background-image: linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%); + background-image: -o-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%); + background-image: -moz-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%); + background-image: -webkit-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%); + background-image: -ms-linear-gradient(top, rgb(238,238,238) 0%, rgb(245,245,245) 100%); +} + +#app-navigation > ul .open:hover { + -moz-box-shadow: inset 0 0 3px #ccc; -webkit-box-shadow: inset 0 0 3px #ccc; box-shadow: inset 0 0 3px #ccc; + border-top: 1px solid #ccc; +} + +#app-navigation > ul .open ul { + display: block; +} + +/* drag and drop */ +#app-navigation .drag-and-drop { + -moz-transition: padding-bottom 500ms ease 0s; + -o-transition: padding-bottom 500ms ease 0s; + -webkit-transition: padding-bottom 500ms ease 0s; + -ms-transition: padding-bottom 500ms ease 0s; + transition: padding-bottom 500ms ease 0s; + padding-bottom: 40px; +} +#app-navigation .personalblock > legend { /* TODO @Raydiation: still needed? */ + padding: 10px 0; margin: 0; +} +#app-navigation .error { + color: #dd1144; +} + + + +/* Part where the content will be loaded into */ +#app-content { + height: 100%; + overflow-y: auto; +} + +/* settings area */ +#app-settings { + position: fixed; + width: 249px; + bottom: 0; + border-top: 1px solid #ccc; +} +#app-settings-header { + background-color: #eee; +} +#app-settings-content { + display: none; + padding: 10px; + background-color: #eee; +} +#app-settings.open #app-settings-content { + display: block; +} + +.settings-button { + display: block; + height: 32px; + width: 100%; + padding: 0; + margin: 0; + background-color: transparent; background-image: url('../img/actions/settings.svg'); + background-position: 10px center; background-repeat: no-repeat; + box-shadow: none; + border: 0; + border-radius: 0; +} +.settings-button:hover { + background-color: #ddd; +} + +/* icons */ +.folder-icon { background-image: url('../img/places/folder.svg'); } +.delete-icon { background-image: url('../img/actions/delete.svg'); } +.delete-icon:hover { background-image: url('../img/actions/delete-hover.svg'); } +.edit-icon { background-image: url('../img/actions/rename.svg'); } + +/* buttons */ +button.loading { + background-image: url('../img/loading.gif'); + background-position: right 10px center; background-repeat: no-repeat; + padding-right: 30px; +} diff --git a/core/js/compatibility.js b/core/js/compatibility.js index 0cfeefab87128329f43dceb35c473fc806c70ca4..cc37949409d3585e2acb3f1e49b38652ed053d60 100644 --- a/core/js/compatibility.js +++ b/core/js/compatibility.js @@ -1,3 +1,107 @@ +/** + * implement Object.create for browsers without native support + */ +if (typeof Object.create !== 'function') { + Object.create = function (o) { + function F() {} + F.prototype = o; + return new F(); + }; +} + +/** + * implement Object.keys for browsers without native support + */ +if (typeof Object.keys !== 'function') { + Object.keys = function(o) { + if (o !== Object(o)) { + throw new TypeError('Object.keys called on a non-object'); + } + var k=[],p; + for (p in o) { + if (Object.prototype.hasOwnProperty.call(o,p)) { + k.push(p); + } + } + return k; + } +} + +/** + * implement Array.filter for browsers without native support + */ +if (!Array.prototype.filter) { + Array.prototype.filter = function(fun /*, thisp*/) { + var len = this.length >>> 0; + if (typeof fun !== "function"){ + throw new TypeError(); + } + + var res = []; + var thisp = arguments[1]; + for (var i = 0; i < len; i++) { + if (i in this) { + var val = this[i]; // in case fun mutates this + if (fun.call(thisp, val, i, this)) + res.push(val); + } + } + return res; + }; +} + +/** + * implement Array.indexOf for browsers without native support + */ +if (!Array.prototype.indexOf){ + Array.prototype.indexOf = function(elt /*, from*/) + { + var len = this.length; + + var from = Number(arguments[1]) || 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){ + return from; + } + } + return -1; + }; +} + +/** + * implement Array.map for browsers without native support + */ +if (!Array.prototype.map){ + Array.prototype.map = function(fun /*, thisp */){ + "use strict"; + + if (this === void 0 || this === null){ + throw new TypeError(); + } + + var t = Object(this); + var len = t.length >>> 0; + if (typeof fun !== "function"){ + throw new TypeError(); + } + + var res = new Array(len); + var thisp = arguments[1]; + for (var i = 0; i < len; i++){ + if (i in t){ + res[i] = fun.call(thisp, t[i], i, t); + } + } + + return res; + }; +} //https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Global_Objects/Function/bind if (!Function.prototype.bind) { diff --git a/core/js/js.js b/core/js/js.js index b237c6fcf5b2a7fb60b071c166763cc8403ec71e..d85e6d88f8aed5529840b2a10875b98745596ab3 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -439,52 +439,6 @@ if(typeof localStorage !=='undefined' && localStorage !== null){ }; } -/** - * implement Array.filter for browsers without native support - */ -if (!Array.prototype.filter) { - Array.prototype.filter = function(fun /*, thisp*/) { - var len = this.length >>> 0; - if (typeof fun !== "function"){ - throw new TypeError(); - } - - var res = []; - var thisp = arguments[1]; - for (var i = 0; i < len; i++) { - if (i in this) { - var val = this[i]; // in case fun mutates this - if (fun.call(thisp, val, i, this)) - res.push(val); - } - } - return res; - }; -} -/** - * implement Array.indexOf for browsers without native support - */ -if (!Array.prototype.indexOf){ - Array.prototype.indexOf = function(elt /*, from*/) - { - var len = this.length; - - var from = Number(arguments[1]) || 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){ - return from; - } - } - return -1; - }; -} - /** * check if the browser support svg images */ @@ -637,10 +591,21 @@ $(document).ready(function(){ } }); - // 'show password' checkbox - $('#password').showPassword(); - $('#adminpass').showPassword(); - $('#pass2').showPassword(); + var setShowPassword = function(input, label) { + input.showPassword().keyup(function(){ + if (input.val().length == 0) { + label.hide(); + } + else { + label.css("display", "inline").show(); + } + }); + label.hide(); + }; + setShowPassword($('#password'), $('label[for=show]')); + setShowPassword($('#adminpass'), $('label[for=show]')); + setShowPassword($('#pass2'), $('label[for=personal-show]')); + setShowPassword($('#dbpass'), $('label[for=dbpassword]')); //use infield labels $("label.infield").inFieldLabels({ @@ -704,32 +669,6 @@ $(document).ready(function(){ }); }); -if (!Array.prototype.map){ - Array.prototype.map = function(fun /*, thisp */){ - "use strict"; - - if (this === void 0 || this === null){ - throw new TypeError(); - } - - var t = Object(this); - var len = t.length >>> 0; - if (typeof fun !== "function"){ - throw new TypeError(); - } - - var res = new Array(len); - var thisp = arguments[1]; - for (var i = 0; i < len; i++){ - if (i in t){ - res[i] = fun.call(thisp, t[i], i, t); - } - } - - return res; - }; -} - /** * Filter Jquery selector by attribute value */ diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index cfbca2833c7a64aed507ada1cf1472b55acb81e5..990c3f8bf38b19cedb8bfed7785864174971e681 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -27,75 +27,79 @@ var OCdialogs = { * displays alert dialog * @param text content of dialog * @param title dialog title - * @param callback which will be triggered when user press OK + * @param callback which will be triggered when user presses OK + * @param modal make the dialog modal */ alert:function(text, title, callback, modal) { - var content = '

'+text+'

'; + var content = '

' + escapeHTML(text) + '

'; OCdialogs.message(content, title, OCdialogs.ALERT_DIALOG, OCdialogs.OK_BUTTON, callback, modal); }, /** * displays info dialog * @param text content of dialog * @param title dialog title - * @param callback which will be triggered when user press OK + * @param callback which will be triggered when user presses OK + * @param modal make the dialog modal */ info:function(text, title, callback, modal) { - var content = '

'+text+'

'; + var content = '

' + escapeHTML(text) + '

'; OCdialogs.message(content, title, OCdialogs.ALERT_DIALOG, OCdialogs.OK_BUTTON, callback, modal); }, /** * displays confirmation dialog * @param text content of dialog * @param title dialog title - * @param callback which will be triggered when user press YES or NO (true or false would be passed to callback respectively) + * @param callback which will be triggered when user presses YES or NO (true or false would be passed to callback respectively) + * @param modal make the dialog modal */ confirm:function(text, title, callback, modal) { - var content = '

'+text+'

'; + var content = '

' + escapeHTML(text) + '

'; OCdialogs.message(content, title, OCdialogs.ALERT_DIALOG, OCdialogs.YES_NO_BUTTONS, callback, modal); }, /** * prompt for user input * @param text content of dialog * @param title dialog title - * @param callback which will be triggered when user press OK (input text will be passed to callback) + * @param callback which will be triggered when user presses OK (input text will be passed to callback) + * @param modal make the dialog modal */ prompt:function(text, title, default_value, callback, modal) { - var content = '

'+text+':

'; - OCdialogs.message(content, title, OCdialogs.PROMPT_DIALOG, OCdialogs.OK_CANCEL_BUTTONS, callback, modal); + var input = ''; + var content = '

' + escapeHTML(text) + ':
' + input + '

'; + OCdialogs.message(content, title, OCdialogs.PROMPT_DIALOG, OCdialogs.OK_BUTTON, callback, modal); }, /** * prompt user for input with custom form - * fields should be passed in following format: [{text:'prompt text', name:'return name', type:'input type', value: 'dafault value'},...] - * select example var fields=[{text:'Test', name:'test', type:'select', options:[{text:'hallo',value:1},{text:'hallo1',value:2}] }]; + * fields should be passed in following format: [{text:'prompt text', name:'return name', type:'input type', value: 'default value'},...] + * example: + * var fields=[{text:'Test', name:'test', type:'select', options:[{text:'hello1',value:1},{text:'hello2',value:2}] }]; * @param fields to display * @param title dialog title - * @param callback which will be triggered when user press OK (user answers will be passed to callback in following format: [{name:'return name', value: 'user value'},...]) + * @param callback which will be triggered when user presses OK (user answers will be passed to callback in following format: [{name:'return name', value: 'user value'},...]) + * @param modal make the dialog modal */ form:function(fields, title, callback, modal) { var content = ''; - $.each(fields, function(index, val){ - content += '
'+val.text+''; - var type=val.type; + $.each(fields, function(index, field){ + content += '
' + escapeHTML(field.text) + ''; + var type = field.type; - if (type == 'text' || type == 'checkbox' || type == 'password') { - content += ''; + if (type === 'text' || type === 'checkbox' || type === 'password') { + content += ''+valo.text+''; + $.each(field.options, function(index, field_option){ + content += ''; }); content += ''; } @@ -103,168 +107,320 @@ var OCdialogs = { }); content += '
'; - OCdialogs.message(content, title, OCdialogs.FORM_DIALOG, OCdialogs.OK_CANCEL_BUTTONS, callback, modal); + + var dialog_name = 'oc-dialog-' + OCdialogs.dialogs_counter + '-content'; + var dialog_id = '#' + dialog_name; + var dialog_div = '
' + content + '
'; + if (modal === undefined) { modal = false }; + $('body').append(dialog_div); + var buttonlist = [{ + text: t('core', 'Ok'), + click: function(){ OCdialogs.form_ok_handler(callback, dialog_id); } + }, + { + text: t('core', 'Cancel'), + click: function(){ $(dialog_id).dialog('close'); } + }]; + var dialog_height = ( $('tr', dialog_div).length + 1 ) * 30 + 120; + $(dialog_id).dialog({ + width: (4/9) * $(document).width(), + height: dialog_height, + modal: modal, + buttons: buttonlist + }); + OCdialogs.dialogs_counter++; }, + /** + * show a file picker to pick a file from + * @param title dialog title + * @param callback which will be triggered when user presses Choose + * @param multiselect whether it should be possible to select multiple files + * @param mimetype_filter mimetype to filter by + * @param modal make the dialog modal + */ filepicker:function(title, callback, multiselect, mimetype_filter, modal) { - var c_name = 'oc-dialog-'+OCdialogs.dialogs_counter+'-content'; - var c_id = '#'+c_name; - var d = '
'; - if (!modal) modal = false; // Huh.. - if (!multiselect) multiselect = false; - $('body').append(d); - $(c_id + ' #dirtree').focus(function() { - var t = $(this); - t.data('oldval', t.val()) - }).change({dcid: c_id}, OC.dialogs.handleTreeListSelect); - $(c_id).ready(function(){ - $.getJSON(OC.filePath('files', 'ajax', 'rawlist.php'), {mimetype: mimetype_filter} ,function(r) { - OC.dialogs.fillFilePicker(r, c_id, callback) + var dialog_name = 'oc-dialog-' + OCdialogs.dialogs_counter + '-content'; + var dialog_id = '#' + dialog_name; + var dialog_content = '
'; + var dialog_loader = '
'; + var dialog_div = '
' + dialog_content + dialog_loader + '
'; + if (modal === undefined) { modal = false }; + if (multiselect === undefined) { multiselect = false }; + if (mimetype_filter === undefined) { mimetype_filter = '' }; + + $('body').append(dialog_div); + + $(dialog_id).data('path', '/'); + + $(dialog_id + ' #dirtree').focus().change( {dcid: dialog_id}, OCdialogs.handleTreeListSelect ); + $(dialog_id + ' #dirup').click( {dcid: dialog_id}, OCdialogs.filepickerDirUp ); + + $(dialog_id).ready(function(){ + $.getJSON(OC.filePath('files', 'ajax', 'rawlist.php'), { mimetype: mimetype_filter } ,function(request) { + OCdialogs.fillFilePicker(request, dialog_id); + }); + $.getJSON(OC.filePath('files', 'ajax', 'rawlist.php'), { mimetype: "httpd/unix-directory" }, function(request) { + OCdialogs.fillTreeList(request, dialog_id); }); }).data('multiselect', multiselect).data('mimetype',mimetype_filter); + // build buttons - var b = [{ - text: t('core', 'Choose'), - click: function(){ - if (callback != undefined) { - var p; - if ($(c_id).data('multiselect') == true) { - p = []; - $(c_id+' .filepicker_element_selected .filename').each(function(i, elem) { - p.push(($(c_id).data('path')?$(c_id).data('path'):'')+'/'+$(elem).text()); - }); - } else { - var p = $(c_id).data('path'); - if (p == undefined) p = ''; - p = p+'/'+$(c_id+' .filepicker_element_selected .filename').text() - } - callback(p); - $(c_id).dialog('close'); + var functionToCall = function() { + if (callback !== undefined) { + var datapath; + if (multiselect === true) { + datapath = []; + $(dialog_id + ' .filepicker_element_selected .filename').each(function(index, element) { + datapath.push( $(dialog_id).data('path') + $(element).text() ); + }); + } else { + var datapath = $(dialog_id).data('path'); + datapath += $(dialog_id+' .filepicker_element_selected .filename').text(); } + callback(datapath); + $(dialog_id).dialog('close'); } - }, - { + }; + var buttonlist = [{ + text: t('core', 'Choose'), + click: functionToCall + }, + { text: t('core', 'Cancel'), - click: function(){$(c_id).dialog('close'); }} - ]; - $(c_id).dialog({width: ((4*$('body').width())/9), height: 400, modal: modal, buttons: b}); + click: function(){$(dialog_id).dialog('close'); } + }]; + + $(dialog_id).dialog({ + width: (4/9)*$(document).width(), + height: 420, + modal: modal, + buttons: buttonlist + }); OCdialogs.dialogs_counter++; }, - // guts, dont use, dont touch + /** + * Displays raw dialog + * You better use a wrapper instead ... + */ message:function(content, title, dialog_type, buttons, callback, modal) { - var c_name = 'oc-dialog-'+OCdialogs.dialogs_counter+'-content'; - var c_id = '#'+c_name; - var d = '
'+content+'
'; - if (modal == undefined) modal = false; - $('body').append(d); - var b = []; + var dialog_name = 'oc-dialog-' + OCdialogs.dialogs_counter + '-content'; + var dialog_id = '#' + dialog_name; + var dialog_div = '
' + content + '
'; + if (modal === undefined) { modal = false }; + $('body').append(dialog_div); + var buttonlist = []; switch (buttons) { case OCdialogs.YES_NO_BUTTONS: - 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');}}; + buttonlist = [{ + text: t('core', 'Yes'), + click: function(){ + if (callback !== undefined) { callback(true) }; + $(dialog_id).dialog('close'); + } + }, + { + text: t('core', 'No'), + click: function(){ + if (callback !== undefined) { callback(false) }; + $(dialog_id).dialog('close'); + } + }]; break; - case OCdialogs.OK_CANCEL_BUTTONS: - b[1] = {text: t('core', 'Cancel'), click: function(){$(c_id).dialog('close'); }}; - case OCdialogs.OK_BUTTON: // fallthrough - var f; + case OCdialogs.OK_BUTTON: + var functionToCall; switch(dialog_type) { case OCdialogs.ALERT_DIALOG: - f = function(){$(c_id).dialog('close'); if(callback) callback();}; + functionToCall = function() { + $(dialog_id).dialog('close'); + if(callback !== undefined) { callback() }; + }; break; case OCdialogs.PROMPT_DIALOG: - f = function(){OCdialogs.prompt_ok_handler(callback, c_id)}; - break; - case OCdialogs.FORM_DIALOG: - f = function(){OCdialogs.form_ok_handler(callback, c_id)}; + buttonlist[1] = { + text: t('core', 'Cancel'), + click: function() { $(dialog_id).dialog('close'); } + }; + functionToCall = function() { OCdialogs.prompt_ok_handler(callback, dialog_id); }; break; } - b[0] = {text: t('core', 'Ok'), click: f}; + buttonlist[0] = { + text: t('core', 'Ok'), + click: functionToCall + }; break; - } - var possible_height = ($('tr', d).size()+1)*30; - $(c_id).dialog({width: 4*$(document).width()/9, height: possible_height + 120, modal: modal, buttons: b}); + }; + + $(dialog_id).dialog({ + width: (4/9) * $(document).width(), + height: 180, + modal: modal, + buttons: buttonlist + }); OCdialogs.dialogs_counter++; }, - // dialogs buttons types - YES_NO_BUTTONS: 70, - OK_BUTTONS: 71, - OK_CANCEL_BUTTONS: 72, + // dialog button types + YES_NO_BUTTONS: 70, + OK_BUTTONS: 71, // dialogs types - ALERT_DIALOG: 80, - INFO_DIALOG: 81, - PROMPT_DIALOG: 82, - FORM_DIALOG: 83, + ALERT_DIALOG: 80, + INFO_DIALOG: 81, + FORM_DIALOG: 82, + // used to name each dialog dialogs_counter: 0, + determineValue: function(element) { - switch ($(element).attr('type')) { - case 'checkbox': return element.checked; + if ( $(element).attr('type') === 'checkbox' ) { + return element.checked; + } else { + return $(element).val(); } - return $(element).val(); }, - prompt_ok_handler: function(callback, c_id) { $(c_id).dialog('close'); if (callback != undefined) callback($(c_id + " input#oc-dialog-prompt-input").val()); }, - form_ok_handler: function(callback, c_id) { - if (callback != undefined) { - var r = []; - var c = 0; - $(c_id + ' input, '+c_id+' select').each(function(i, elem) { - r[c] = {name: $(elem).attr('name'), value: OCdialogs.determineValue(elem)}; - c++; + + prompt_ok_handler: function(callback, dialog_id) { + $(dialog_id).dialog('close'); + if (callback !== undefined) { callback($(dialog_id + " input#oc-dialog-prompt-input").val()) }; + }, + + form_ok_handler: function(callback, dialog_id) { + if (callback !== undefined) { + var valuelist = []; + $(dialog_id + ' input, ' + dialog_id + ' select').each(function(index, element) { + valuelist[index] = { name: $(element).attr('name'), value: OCdialogs.determineValue(element) }; }); - $(c_id).dialog('close'); - callback(r); + $(dialog_id).dialog('close'); + callback(valuelist); } else { - $(c_id).dialog('close'); + $(dialog_id).dialog('close'); } }, - fillFilePicker:function(r, dialog_content_id) { - var entry_template = '
*NAME*
*LASTMODDATE*
'; - var names = ''; - $.each(r.data, function(index, a) { - names += entry_template.replace('*LASTMODDATE*', OC.mtime2date(a.mtime)).replace('*NAME*', a.name).replace('*MIMETYPEICON*', a.mimetype_icon).replace('*ENTRYNAME*', a.name).replace('*ENTRYTYPE*', a.type); + /** + * fills the filepicker with files + */ + fillFilePicker:function(request, dialog_content_id) { + var template_content = '*NAME*
*LASTMODDATE*
'; + var template = '
*CONTENT*
'; + var files = ''; + var dirs = []; + var others = []; + $.each(request.data, function(index, file) { + if (file.type === 'dir') { + dirs.push(file); + } else { + others.push(file); + } }); - - $(dialog_content_id + ' #filelist').html(names).on('click', '[data="file"]', function() { - OC.dialogs.handlePickerClick(this, $(this).data('entryname'), $(this).data('dcid')); + var sorted = dirs.concat(others); + for (var i = 0; i < sorted.length; i++) { + files_content = template_content.replace('*LASTMODDATE*', OC.mtime2date(sorted[i].mtime)).replace('*NAME*', escapeHTML(sorted[i].name)).replace('*MIMETYPEICON*', sorted[i].mimetype_icon); + files += template.replace('*ENTRYNAME*', escapeHTML(sorted[i].name)).replace('*ENTRYTYPE*', escapeHTML(sorted[i].type)).replace('*CONTENT*', files_content); + } + + $(dialog_content_id + ' #filelist').html(files); + $('#filelist div').click(function() { + OCdialogs.handlePickerClick($(this), $(this).data('entryname'), dialog_content_id); }); + $(dialog_content_id + ' .filepicker_loader').css('visibility', 'hidden'); }, + /** + * fills the tree list with directories + */ + fillTreeList: function(request, dialog_id) { + var template = ''; + var paths = ''; + $.each(request.data, function(index, file) { + paths += template.replace('*COUNT*', index).replace('*NAME*', escapeHTML(file.name)); + }); + + $(dialog_id + ' #dirtree').html(paths); + }, + /** + * handle selection made in the tree list + */ handleTreeListSelect:function(event) { - var newval = parseInt($(this).val()); - var oldval = parseInt($(this).data('oldval')); - while (newval != oldval && oldval > 0) { - $('option:last', this).remove(); - $('option:last', this).attr('selected','selected'); - oldval--; + if ($("option:selected", this).html().indexOf('/') !== -1) { // if there's a slash in the selected path, don't append it + $(event.data.dcid).data('path', $("option:selected", this).html()); + } else { + $(event.data.dcid).data('path', $(event.data.dcid).data('path') + $("option:selected", this).html() + '/'); } - var skip_first = true; - var path = ''; - $(this).children().each(function(i, element) { - if (skip_first) { - skip_first = false; - return; - } - path += '/'+$(element).text(); - }); - $(event.data.dcid).data('path', path); $(event.data.dcid + ' .filepicker_loader').css('visibility', 'visible'); - $.getJSON(OC.filePath('files', 'ajax', 'rawlist.php'), {dir: path, mimetype: $(event.data.dcid).data('mimetype')}, function(r){OC.dialogs.fillFilePicker(r, event.data.dcid)}); + $.getJSON( + OC.filePath('files', 'ajax', 'rawlist.php'), + { + dir: $(event.data.dcid).data('path'), + mimetype: $(event.data.dcid).data('mimetype') + }, + function(request) { OCdialogs.fillFilePicker(request, event.data.dcid) } + ); + $.getJSON( + OC.filePath('files', 'ajax', 'rawlist.php'), + { + dir: $(event.data.dcid).data('path'), + mimetype: "httpd/unix-directory" + }, + function(request) { OCdialogs.fillTreeList(request, event.data.dcid) } + ); }, - // this function is in early development state, please dont use it unlsess you know what you are doing - handlePickerClick:function(element, name, dcid) { - var p = $(dcid).data('path'); - if (p == undefined) p = ''; - p = p+'/'+name; - if ($(element).attr('data') == 'file'){ - if ($(dcid).data('multiselect') != true) { - $(dcid+' .filepicker_element_selected').removeClass('filepicker_element_selected'); + /** + * go one directory up + */ + filepickerDirUp:function(event) { + var old_path = $(event.data.dcid).data('path'); + if ( old_path !== "/") { + var splitted_path = old_path.split("/"); + var new_path = "" + for (var i = 0; i < splitted_path.length - 2; i++) { + new_path += splitted_path[i] + "/" + } + $(event.data.dcid).data('path', new_path); + $.getJSON( + OC.filePath('files', 'ajax', 'rawlist.php'), + { + dir: $(event.data.dcid).data('path'), + mimetype: $(event.data.dcid).data('mimetype') + }, + function(request) { OCdialogs.fillFilePicker(request, event.data.dcid) } + ); + $.getJSON( + OC.filePath('files', 'ajax', 'rawlist.php'), + { + dir: $(event.data.dcid).data('path'), + mimetype: "httpd/unix-directory" + }, + function(request) { OCdialogs.fillTreeList(request, event.data.dcid) } + ); + } + }, + /** + * handle clicks made in the filepicker + */ + handlePickerClick:function(element, name, dialog_content_id) { + if ( $(element).attr('data') === 'file' ){ + if ( $(dialog_content_id).data('multiselect') !== true) { + $(dialog_content_id + ' .filepicker_element_selected').removeClass('filepicker_element_selected'); } $(element).toggleClass('filepicker_element_selected'); return; + } else if ( $(element).attr('data') === 'dir' ) { + var datapath = escapeHTML( $(dialog_content_id).data('path') + name + '/' ); + $(dialog_content_id).data('path', datapath); + $(dialog_content_id + ' .filepicker_loader').css('visibility', 'visible'); + $.getJSON( + OC.filePath('files', 'ajax', 'rawlist.php'), + { + dir: datapath, + mimetype: $(dialog_content_id).data('mimetype') + }, + function(request){ OCdialogs.fillFilePicker(request, dialog_content_id) } + ); + $.getJSON( + OC.filePath('files', 'ajax', 'rawlist.php'), + { + dir: datapath, + mimetype: "httpd/unix-directory" + }, + function(request) { OCdialogs.fillTreeList(request, dialog_content_id) } + ); } - $(dcid).data('path', p); - $(dcid + ' #dirtree option:last').removeAttr('selected'); - var newval = parseInt($(dcid + ' #dirtree option:last').val())+1; - $(dcid + ' #dirtree').append(''); - $(dcid + ' .filepicker_loader').css('visibility', 'visible'); - $.getJSON(OC.filePath('files', 'ajax', 'rawlist.php'), {dir: p, mimetype: $(dcid).data('mimetype')}, function(r){OC.dialogs.fillFilePicker(r, dcid)}); } }; diff --git a/core/js/oc-vcategories.js b/core/js/oc-vcategories.js index 3e75767c49c6754557c952484b6c44dc812be058..c745dbc5fbdcd0a78d95efce8e041ea0b2b1c195 100644 --- a/core/js/oc-vcategories.js +++ b/core/js/oc-vcategories.js @@ -11,7 +11,7 @@ var OCCategories= { try { var jsondata = jQuery.parseJSON(response); if(response.status == 'error') { - OC.dialogs.alert(response.data.message, 'Error'); + OC.dialogs.alert(response.data.message, t('core', 'Error')); return; } } catch(e) { @@ -77,7 +77,7 @@ var OCCategories= { if(jsondata.status == 'success') { OCCategories._update(jsondata.data.categories); } else { - OC.dialogs.alert(jsondata.data.message, 'Error'); + OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); } }, favorites:function(type, cb) { @@ -107,7 +107,7 @@ var OCCategories= { cb(jsondata); } else { if(jsondata.status !== 'success') { - OC.dialogs.alert(jsondata.data.message, 'Error'); + OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); } } }); @@ -169,7 +169,7 @@ var OCCategories= { if(jsondata.status === 'success') { OCCategories._update(jsondata.data.categories); } else { - OC.dialogs.alert(jsondata.data.message, 'Error'); + OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); } } }); @@ -186,7 +186,7 @@ var OCCategories= { if(jsondata.status === 'success') { OCCategories._update(jsondata.data.categories); } else { - OC.dialogs.alert(jsondata.data.message, 'Error'); + OC.dialogs.alert(jsondata.data.message, t('core', 'Error')); } } }).error(function(xhr){ @@ -196,7 +196,7 @@ var OCCategories= { if(typeof cb == 'function') { cb({status:'error', data:{message:errormessage}}); } else { - OC.dialogs.alert(errormessage); + OC.dialogs.alert(errormessage, t('core', 'Error')); } } }); diff --git a/core/js/octemplate.js b/core/js/octemplate.js new file mode 100644 index 0000000000000000000000000000000000000000..a5d56852a5754c6e40fb4e483ba8914c599f9092 --- /dev/null +++ b/core/js/octemplate.js @@ -0,0 +1,101 @@ +/** + * jQuery plugin for micro templates + * + * Strings are automatically escaped, but that can be disabled by setting escapeFunction to null. + * + * Usage examples: + * + * var htmlStr = '

Bake, uncovered, until the {greasystuff} is melted and the {pasta} is heated through, about {min} minutes.

' + * $(htmlStr).octemplate({greasystuff: 'cheese', pasta: 'macaroni', min: 10}); + * + * var htmlStr = '

Welcome back {user}

'; + * $(htmlStr).octemplate({user: 'John Q. Public'}, {escapeFunction: null}); + * + * Be aware that the target string must be wrapped in an HTML element for the plugin to work. The following won't work: + * + * var textStr = 'Welcome back {user}'; + * $(textStr).octemplate({user: 'John Q. Public'}); + * + * For anything larger than one-liners, you can use a simple $.get() ajax request to get the template, + * or you can embed them it the page using the text/template type: + * + * + * + * var $tmpl = $('#contactListItemTemplate'); + * var contacts = // fetched in some ajax call + * + * $.each(contacts, function(idx, contact) { + * $contactList.append( + * $tmpl.octemplate({ + * id: contact.getId(), + * name: contact.getDisplayName(), + * email: contact.getPreferredEmail(), + * phone: contact.getPreferredPhone(), + * }); + * ); + * }); + */ +(function( $ ) { + /** + * Object Template + * Inspired by micro templating done by e.g. underscore.js + */ + var Template = { + init: function(vars, options, elem) { + // Mix in the passed in options with the default options + this.vars = vars; + this.options = $.extend({},this.options,options); + + this.elem = elem; + var self = this; + + if(typeof this.options.escapeFunction === 'function') { + $.each(this.vars, function(key, val) { + if(typeof val === 'string') { + self.vars[key] = self.options.escapeFunction(val); + } + }); + } + + var _html = this._build(this.vars); + return $(_html); + }, + // From stackoverflow.com/questions/1408289/best-way-to-do-variable-interpolation-in-javascript + _build: function(o){ + var data = this.elem.attr('type') === 'text/template' ? this.elem.html() : this.elem.get(0).outerHTML; + try { + return data.replace(/{([^{}]*)}/g, + function (a, b) { + var r = o[b]; + return typeof r === 'string' || typeof r === 'number' ? r : a; + } + ); + } catch(e) { + console.error(e, 'data:', data) + } + }, + options: { + escapeFunction: function(str) {return $('').text(str).html();} + } + }; + + $.fn.octemplate = function(vars, options) { + var vars = vars ? vars : {}; + if(this.length) { + var _template = Object.create(Template); + return _template.init(vars, options, this); + } + }; + +})( jQuery ); + diff --git a/core/js/share.js b/core/js/share.js index 7f6ee0ec417bed6d8f0cb49c51408970e35837a8..36e4babedf9d98a16839018bf9d0231abbbd1814 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -133,14 +133,14 @@ OC.Share={ callback(); } } else { - OC.dialogs.alert(t('core', 'Error'), t('core', 'Error while unsharing')); + OC.dialogs.alert(t('core', 'Error while unsharing'), t('core', 'Error')); } }); }, 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(t('core', 'Error'), t('core', 'Error while changing permissions')); + OC.dialogs.alert(t('core', 'Error while changing permissions'), t('core', 'Error')); } }); }, @@ -574,7 +574,7 @@ $(document).ready(function() { 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')); + OC.dialogs.alert(t('core', 'Error unsetting expiration date'), t('core', 'Error')); } $('#expirationDate').hide(); }); @@ -586,7 +586,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(t('core', 'Error'), t('core', 'Error setting expiration date')); + OC.dialogs.alert(t('core', 'Error setting expiration date'), t('core', 'Error')); } }); }); diff --git a/core/l10n/ar.php b/core/l10n/ar.php index f75d807170906587dcd940bfc9a2ac6e8cc85829..4d413715de3ef4e98ae81cb754d72acfc7fcc768 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -44,11 +44,11 @@ "months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", -"Choose" => "اختيار", +"Ok" => "موافق", "Cancel" => "الغاء", -"No" => "لا", +"Choose" => "اختيار", "Yes" => "نعم", -"Ok" => "موافق", +"No" => "لا", "The object type is not specified." => "نوع العنصر غير محدد.", "Error" => "خطأ", "The app name is not specified." => "اسم التطبيق غير محدد.", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index 686ebdf9af1a74091a9f72bac93bccbf628f7135..1b18b6ae3e4c788b0f99470c4dec6942164a15c8 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -43,11 +43,11 @@ "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", -"Choose" => "বেছে নিন", +"Ok" => "তথাস্তু", "Cancel" => "বাতির", -"No" => "না", +"Choose" => "বেছে নিন", "Yes" => "হ্যাঁ", -"Ok" => "তথাস্তু", +"No" => "না", "The object type is not specified." => "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।", "Error" => "সমস্যা", "The app name is not specified." => "অ্যাপের নামটি সুনির্দিষ্ট নয়।", diff --git a/core/l10n/ca.php b/core/l10n/ca.php index acf617034fe920a717fa5c1601c0083ff825a70f..91b51d1b31d19f91cbccc111a7377d9aa471a69e 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -44,11 +44,11 @@ "months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", -"Choose" => "Escull", +"Ok" => "D'acord", "Cancel" => "Cancel·la", -"No" => "No", +"Choose" => "Escull", "Yes" => "Sí", -"Ok" => "D'acord", +"No" => "No", "The object type is not specified." => "No s'ha especificat el tipus d'objecte.", "Error" => "Error", "The app name is not specified." => "No s'ha especificat el nom de l'aplicació.", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index eb70ac3e096ea723945562ee81cc24fa5e1ffa57..15c89106e5d1d152fe652f3b96b32735c1ce8060 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -44,11 +44,11 @@ "months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", -"Choose" => "Vybrat", +"Ok" => "Ok", "Cancel" => "Zrušit", -"No" => "Ne", +"Choose" => "Vybrat", "Yes" => "Ano", -"Ok" => "Ok", +"No" => "Ne", "The object type is not specified." => "Není určen typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Není určen název aplikace.", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..4d28ae29a989dde45102a65b37a8940e2d1c13c8 --- /dev/null +++ b/core/l10n/cy_GB.php @@ -0,0 +1,139 @@ + "Rhannodd defnyddiwr %s ffeil â chi", +"User %s shared a folder with you" => "Rhannodd defnyddiwr %s blygell â chi", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s", +"Category type not provided." => "Math o gategori heb ei ddarparu.", +"No category to add?" => "Dim categori i'w ychwanegu?", +"This category already exists: %s" => "Mae'r categori hwn eisoes yn bodoli: %s", +"Object type not provided." => "Math o wrthrych heb ei ddarparu.", +"%s ID not provided." => "%s ID heb ei ddarparu.", +"Error adding %s to favorites." => "Gwall wrth ychwanegu %s at ffefrynnau.", +"No categories selected for deletion." => "Ni ddewiswyd categorïau i'w dileu.", +"Error removing %s from favorites." => "Gwall wrth dynnu %s o ffefrynnau.", +"Sunday" => "Sul", +"Monday" => "Llun", +"Tuesday" => "Mawrth", +"Wednesday" => "Mercher", +"Thursday" => "Iau", +"Friday" => "Gwener", +"Saturday" => "Sadwrn", +"January" => "Ionawr", +"February" => "Chwefror", +"March" => "Mawrth", +"April" => "Ebrill", +"May" => "Mai", +"June" => "Mehefin", +"July" => "Gorffennaf", +"August" => "Awst", +"September" => "Medi", +"October" => "Hydref", +"November" => "Tachwedd", +"December" => "Rhagfyr", +"Settings" => "Gosodiadau", +"seconds ago" => "eiliad yn ôl", +"1 minute ago" => "1 munud yn ôl", +"{minutes} minutes ago" => "{minutes} munud yn ôl", +"1 hour ago" => "1 awr yn ôl", +"{hours} hours ago" => "{hours} awr yn ôl", +"today" => "heddiw", +"yesterday" => "ddoe", +"{days} days ago" => "{days} diwrnod yn ôl", +"last month" => "mis diwethaf", +"{months} months ago" => "{months} mis yn ôl", +"months ago" => "misoedd yn ôl", +"last year" => "y llynedd", +"years ago" => "blwyddyn yn ôl", +"Ok" => "Iawn", +"Cancel" => "Diddymu", +"Choose" => "Dewisiwch", +"Yes" => "Ie", +"No" => "Na", +"The object type is not specified." => "Nid yw'r math o wrthrych wedi cael ei nodi.", +"Error" => "Gwall", +"The app name is not specified." => "Nid yw enw'r pecyn wedi cael ei nodi.", +"The required file {file} is not installed!" => "Nid yw'r ffeil ofynnol {file} wedi ei gosod!", +"Shared" => "Rhannwyd", +"Share" => "Rhannu", +"Error while sharing" => "Gwall wrth rannu", +"Error while unsharing" => "Gwall wrth ddad-rannu", +"Error while changing permissions" => "Gwall wrth newid caniatâd", +"Shared with you and the group {group} by {owner}" => "Rhannwyd â chi a'r grŵp {group} gan {owner}", +"Shared with you by {owner}" => "Rhannwyd â chi gan {owner}", +"Share with" => "Rhannu gyda", +"Share with link" => "Dolen ar gyfer rhannu", +"Password protect" => "Diogelu cyfrinair", +"Password" => "Cyfrinair", +"Email link to person" => "E-bostio dolen at berson", +"Send" => "Anfon", +"Set expiration date" => "Gosod dyddiad dod i ben", +"Expiration date" => "Dyddiad dod i ben", +"Share via email:" => "Rhannu drwy e-bost:", +"No people found" => "Heb ganfod pobl", +"Resharing is not allowed" => "Does dim hawl ail-rannu", +"Shared in {item} with {user}" => "Rhannwyd yn {item} â {user}", +"Unshare" => "Dad-rannu", +"can edit" => "yn gallu golygu", +"access control" => "rheolaeth mynediad", +"create" => "creu", +"update" => "diweddaru", +"delete" => "dileu", +"share" => "rhannu", +"Password protected" => "Diogelwyd â chyfrinair", +"Error unsetting expiration date" => "Gwall wrth ddad-osod dyddiad dod i ben", +"Error setting expiration date" => "Gwall wrth osod dyddiad dod i ben", +"Sending ..." => "Yn anfon ...", +"Email sent" => "Anfonwyd yr e-bost", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.", +"The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", +"ownCloud password reset" => "ailosod cyfrinair ownCloud", +"Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", +"You will receive a link to reset your password via Email." => "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair.", +"Reset email send." => "Ailosod anfon e-bost.", +"Request failed!" => "Methodd y cais!", +"Username" => "Enw defnyddiwr", +"Request reset" => "Gwneud cais i ailosod", +"Your password was reset" => "Ailosodwyd eich cyfrinair", +"To login page" => "I'r dudalen mewngofnodi", +"New password" => "Cyfrinair newydd", +"Reset password" => "Ailosod cyfrinair", +"Personal" => "Personol", +"Users" => "Defnyddwyr", +"Apps" => "Pecynnau", +"Admin" => "Gweinyddu", +"Help" => "Cymorth", +"Access forbidden" => "Mynediad wedi'i wahardd", +"Cloud not found" => "Methwyd canfod cwmwl", +"Edit categories" => "Golygu categorïau", +"Add" => "Ychwanegu", +"Security Warning" => "Rhybudd Diogelwch", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. ", +"For information how to properly configure your server, please see the documentation." => "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth.", +"Create an admin account" => "Crewch gyfrif gweinyddol", +"Advanced" => "Uwch", +"Data folder" => "Plygell data", +"Configure the database" => "Cyflunio'r gronfa ddata", +"will be used" => "ddefnyddir", +"Database user" => "Defnyddiwr cronfa ddata", +"Database password" => "Cyfrinair cronfa ddata", +"Database name" => "Enw cronfa ddata", +"Database tablespace" => "Tablespace cronfa ddata", +"Database host" => "Gwesteiwr cronfa ddata", +"Finish setup" => "Gorffen sefydlu", +"web services under your control" => "gwasanaethau gwe a reolir gennych", +"Log out" => "Allgofnodi", +"Automatic logon rejected!" => "Gwrthodwyd mewngofnodi awtomatig!", +"If you did not change your password recently, your account may be compromised!" => "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!", +"Please change your password to secure your account again." => "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto.", +"Lost your password?" => "Wedi colli'ch cyfrinair?", +"remember" => "cofio", +"Log in" => "Mewngofnodi", +"Alternative Logins" => "Mewngofnodiadau Amgen", +"prev" => "blaenorol", +"next" => "nesaf", +"Updating ownCloud to version %s, this may take a while." => "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." +); diff --git a/core/l10n/da.php b/core/l10n/da.php index 6d982aac2a91bafe39f8b1f2bf7f1246c623c3ca..286f524b678f8616bf4c22451d7479fc26daff90 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -44,11 +44,11 @@ "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", -"Choose" => "Vælg", +"Ok" => "OK", "Cancel" => "Fortryd", -"No" => "Nej", +"Choose" => "Vælg", "Yes" => "Ja", -"Ok" => "OK", +"No" => "Nej", "The object type is not specified." => "Objekttypen er ikke angivet.", "Error" => "Fejl", "The app name is not specified." => "Den app navn er ikke angivet.", @@ -107,6 +107,8 @@ "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Opdater venligs din PHP-installation for at kunne bruge ownCloud sikkert.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen sikker tilfældighedsgenerator til tal er tilgængelig. Aktiver venligst OpenSSL udvidelsen.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Uden en sikker tilfældighedsgenerator til tal kan en angriber måske gætte dit gendan kodeord og overtage din konto", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker.", diff --git a/core/l10n/de.php b/core/l10n/de.php index 3b9ac15f4e5294063aa6354bb64dc3368a015b60..3af653b9ac9789975c2e3b3c639a30276db02614 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -44,11 +44,11 @@ "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Choose" => "Auswählen", +"Ok" => "OK", "Cancel" => "Abbrechen", -"No" => "Nein", +"Choose" => "Auswählen", "Yes" => "Ja", -"Ok" => "OK", +"No" => "Nein", "The object type is not specified." => "Der Objekttyp ist nicht angegeben.", "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index d6a8b1405e58e10bba6269e8ac1a962264e86c29..4065f2484f53150215600ba00f00fe570452517c 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -44,11 +44,11 @@ "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", -"Choose" => "Auswählen", +"Ok" => "OK", "Cancel" => "Abbrechen", -"No" => "Nein", +"Choose" => "Auswählen", "Yes" => "Ja", -"Ok" => "OK", +"No" => "Nein", "The object type is not specified." => "Der Objekttyp ist nicht angegeben.", "Error" => "Fehler", "The app name is not specified." => "Der App-Name ist nicht angegeben.", diff --git a/core/l10n/el.php b/core/l10n/el.php index 62d12569337314cd7cc6b2920c387fd59423b91b..4fc5b4aa86ed8d0b4714362c6b6da3bf9446a7cc 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -44,11 +44,11 @@ "months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", -"Choose" => "Επιλέξτε", +"Ok" => "Οκ", "Cancel" => "Άκυρο", -"No" => "Όχι", +"Choose" => "Επιλέξτε", "Yes" => "Ναι", -"Ok" => "Οκ", +"No" => "Όχι", "The object type is not specified." => "Δεν καθορίστηκε ο τύπος του αντικειμένου.", "Error" => "Σφάλμα", "The app name is not specified." => "Δεν καθορίστηκε το όνομα της εφαρμογής.", @@ -107,6 +107,8 @@ "Edit categories" => "Επεξεργασία κατηγοριών", "Add" => "Προσθήκη", "Security Warning" => "Προειδοποίηση Ασφαλείας", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Παρακαλώ ενημερώστε την εγκατάσταση PHP σας ώστε να χρησιμοποιήσετε ασφαλέστερα το ownCloud.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Δεν είναι διαθέσιμο το πρόσθετο δημιουργίας τυχαίων αριθμών ασφαλείας, παρακαλώ ενεργοποιήστε το πρόσθετο της PHP, OpenSSL.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Χωρίς το πρόσθετο δημιουργίας τυχαίων αριθμών ασφαλείας, μπορεί να διαρρεύσει ο λογαριασμός σας από επιθέσεις στο διαδίκτυο.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανό προσβάσιμα από το internet γιατί δεν δουλεύει το αρχείο .htaccess.", diff --git a/core/l10n/eo.php b/core/l10n/eo.php index f2297bd3d97394d759367736bb2508ed4206c8a4..5c8fe3403171d693487d365c9789ab44fc05feb0 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -43,11 +43,11 @@ "months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", -"Choose" => "Elekti", +"Ok" => "Akcepti", "Cancel" => "Nuligi", -"No" => "Ne", +"Choose" => "Elekti", "Yes" => "Jes", -"Ok" => "Akcepti", +"No" => "Ne", "The object type is not specified." => "Ne indikiĝis tipo de la objekto.", "Error" => "Eraro", "The app name is not specified." => "Ne indikiĝis nomo de la aplikaĵo.", diff --git a/core/l10n/es.php b/core/l10n/es.php index e64858c4b11539a98a51f3fdaead537410a38d78..543563bed11c2f5c10d46ef06717e75202a05280 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -44,11 +44,11 @@ "months ago" => "hace meses", "last year" => "año pasado", "years ago" => "hace años", -"Choose" => "Seleccionar", +"Ok" => "Aceptar", "Cancel" => "Cancelar", -"No" => "No", +"Choose" => "Seleccionar", "Yes" => "Sí", -"Ok" => "Aceptar", +"No" => "No", "The object type is not specified." => "El tipo de objeto no se ha especificado.", "Error" => "Fallo", "The app name is not specified." => "El nombre de la app no se ha especificado.", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index f17a6d9baf1b29cd8b9760752f67c3998bbe1420..748de3ddd1382195e44686577137bd394ec397ad 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", -"Choose" => "Elegir", +"Ok" => "Aceptar", "Cancel" => "Cancelar", -"No" => "No", +"Choose" => "Elegir", "Yes" => "Sí", -"Ok" => "Aceptar", +"No" => "No", "The object type is not specified." => "El tipo de objeto no esta especificado. ", "Error" => "Error", "The app name is not specified." => "El nombre de la aplicación no esta especificado.", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index de75b3f6f1638dde26d39bc2312b2890243de025..b6b6d4c9d94f3e3db78edba477a29ea468699a89 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -1,6 +1,16 @@ "Kasutaja %s jagas Sinuga faili", +"User %s shared a folder with you" => "Kasutaja %s jagas Sinuga kataloogi.", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas Sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Kasutaja %s jagas Sinuga kataloogi \"%s\". See on allalaadimiseks saadaval siin: %s", +"Category type not provided." => "Kategooria tüüp puudub.", "No category to add?" => "Pole kategooriat, mida lisada?", +"This category already exists: %s" => "See kategooria juba eksisteerib: %s", +"Object type not provided." => "Objekti tüüb puudub.", +"%s ID not provided." => "%s ID puudub", +"Error adding %s to favorites." => "Viga %s lisamisel lemmikutesse.", "No categories selected for deletion." => "Kustutamiseks pole kategooriat valitud.", +"Error removing %s from favorites." => "Viga %s eemaldamisel lemmikutest", "Sunday" => "Pühapäev", "Monday" => "Esmaspäev", "Tuesday" => "Teisipäev", @@ -25,33 +35,43 @@ "1 minute ago" => "1 minut tagasi", "{minutes} minutes ago" => "{minutes} minutit tagasi", "1 hour ago" => "1 tund tagasi", +"{hours} hours ago" => "{hours} tundi tagasi", "today" => "täna", "yesterday" => "eile", "{days} days ago" => "{days} päeva tagasi", "last month" => "viimasel kuul", +"{months} months ago" => "{months} kuud tagasi", "months ago" => "kuu tagasi", "last year" => "viimasel aastal", "years ago" => "aastat tagasi", -"Choose" => "Vali", +"Ok" => "Ok", "Cancel" => "Loobu", -"No" => "Ei", +"Choose" => "Vali", "Yes" => "Jah", -"Ok" => "Ok", +"No" => "Ei", +"The object type is not specified." => "Objekti tüüb pole määratletud", "Error" => "Viga", +"The app name is not specified." => "Rakenduse nimi ole määratletud", +"The required file {file} is not installed!" => "Vajalikku faili {file} pole paigaldatud!", +"Shared" => "Jagatud", "Share" => "Jaga", "Error while sharing" => "Viga jagamisel", "Error while unsharing" => "Viga jagamise lõpetamisel", "Error while changing permissions" => "Viga õiguste muutmisel", +"Shared with you and the group {group} by {owner}" => "Jagatud sinu ja {group} grupiga {owner} poolt", "Shared with you by {owner}" => "Sinuga jagas {owner}", "Share with" => "Jaga", "Share with link" => "Jaga lingiga", "Password protect" => "Parooliga kaitstud", "Password" => "Parool", +"Email link to person" => "Saada link isikule emailiga", +"Send" => "Saada", "Set expiration date" => "Määra aegumise kuupäev", "Expiration date" => "Aegumise kuupäev", "Share via email:" => "Jaga e-postiga:", "No people found" => "Ühtegi inimest ei leitud", "Resharing is not allowed" => "Edasijagamine pole lubatud", +"Shared in {item} with {user}" => "Jagatud {item} kasutajaga {user}", "Unshare" => "Lõpeta jagamine", "can edit" => "saab muuta", "access control" => "ligipääsukontroll", @@ -62,6 +82,10 @@ "Password protected" => "Parooliga kaitstud", "Error unsetting expiration date" => "Viga aegumise kuupäeva eemaldamisel", "Error setting expiration date" => "Viga aegumise kuupäeva määramisel", +"Sending ..." => "Saadan ...", +"Email sent" => "Email saadetud", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda.", +"The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.", "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.", @@ -83,6 +107,12 @@ "Edit categories" => "Muuda kategooriaid", "Add" => "Lisa", "Security Warning" => "Turvahoiatus", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga.", +"Please update your PHP installation to use ownCloud securely." => "Palun uuenda oma paigaldatud PHP-d tagamaks ownCloudi turvalisus.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Turvalist juhuslike numbrite generaatorit pole saadaval. Palun luba PHP-s OpenSSL laiendus.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Ilma turvalise juhuslike numbrite generaatorita võib ründaja ennustada paroolivahetuse võtme ning hõivata su konto.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Su andmete kataloog ja failid on tõenäoliselt internetist vabalt saadaval kuna .htaccess fail ei toimi.", +"For information how to properly configure your server, please see the documentation." => "Serveri korrektseks seadistuseks palun tutvu dokumentatsiooniga.", "Create an admin account" => "Loo admini konto", "Advanced" => "Lisavalikud", "Data folder" => "Andmete kaust", @@ -102,6 +132,8 @@ "Lost your password?" => "Kaotasid oma parooli?", "remember" => "pea meeles", "Log in" => "Logi sisse", +"Alternative Logins" => "Alternatiivsed meldimised", "prev" => "eelm", -"next" => "järgm" +"next" => "järgm", +"Updating ownCloud to version %s, this may take a while." => "Uuendan ownCloudi versioonile %s. Läheb pisut aega." ); diff --git a/core/l10n/eu.php b/core/l10n/eu.php index dde2d59cbdffbbfbc6195f469f66368caa0922aa..76e38a92d1f4b08c47a46237caf68624ed28907e 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -44,11 +44,11 @@ "months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", -"Choose" => "Aukeratu", +"Ok" => "Ados", "Cancel" => "Ezeztatu", -"No" => "Ez", +"Choose" => "Aukeratu", "Yes" => "Bai", -"Ok" => "Ados", +"No" => "Ez", "The object type is not specified." => "Objetu mota ez dago zehaztuta.", "Error" => "Errorea", "The app name is not specified." => "App izena ez dago zehaztuta.", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 9cd3a5e9785dbb88c51d9142cad5a7b26071cbb3..e6f5aaac0cb3c25fd16670c853be307b918f3a97 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -44,11 +44,11 @@ "months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", -"Choose" => "انتخاب کردن", +"Ok" => "قبول", "Cancel" => "منصرف شدن", -"No" => "نه", +"Choose" => "انتخاب کردن", "Yes" => "بله", -"Ok" => "قبول", +"No" => "نه", "The object type is not specified." => "نوع شی تعیین نشده است.", "Error" => "خطا", "The app name is not specified." => "نام برنامه تعیین نشده است.", @@ -107,6 +107,8 @@ "Edit categories" => "ویرایش گروه ها", "Add" => "افزودن", "Security Warning" => "اخطار امنیتی", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "نسخه ی PHP شما در برابر حملات NULL Byte آسیب پذیر است.(CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "لطفا برنامه ی PHP خودتان را بروز کنید تا بتوانید ایمن تر از ownCloud استفاده کنید.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "هیچ مولد تصادفی امن در دسترس نیست، لطفا فرمت PHP OpenSSL را فعال نمایید.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "بدون وجود یک تولید کننده اعداد تصادفی امن ، یک مهاجم ممکن است این قابلیت را داشته باشد که پیشگویی کند پسوورد های راه انداز گرفته شده و کنترلی روی حساب کاربری شما داشته باشد .", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند.", diff --git a/core/l10n/fi.php b/core/l10n/fi.php new file mode 100644 index 0000000000000000000000000000000000000000..655d544d393f04ca042d997719c3a775bdc49cb2 --- /dev/null +++ b/core/l10n/fi.php @@ -0,0 +1,4 @@ + "asetukset", +"Username" => "Käyttäjätunnus" +); diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index e9386cad4313fe14c9b070df0783b951c235bbf5..ec79d03122784070ca9d434dbe7b33d545c91eb8 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -42,11 +42,11 @@ "months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", -"Choose" => "Valitse", +"Ok" => "Ok", "Cancel" => "Peru", -"No" => "Ei", +"Choose" => "Valitse", "Yes" => "Kyllä", -"Ok" => "Ok", +"No" => "Ei", "Error" => "Virhe", "The app name is not specified." => "Sovelluksen nimeä ei ole määritelty.", "The required file {file} is not installed!" => "Vaadittua tiedostoa {file} ei ole asennettu!", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index 84c4c0abdf4c081d4addc7eee420df402d201306..3b89d69b3b9f9cdf104041f395de6681acb2c095 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -44,11 +44,11 @@ "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", -"Choose" => "Choisir", +"Ok" => "Ok", "Cancel" => "Annuler", -"No" => "Non", +"Choose" => "Choisir", "Yes" => "Oui", -"Ok" => "Ok", +"No" => "Non", "The object type is not specified." => "Le type d'objet n'est pas spécifié.", "Error" => "Erreur", "The app name is not specified." => "Le nom de l'application n'est pas spécifié.", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 4e8eb6e4fbdde21692cd33db202e5ac0c3ea08ec..fd237a39c862c4e01e43c4cea3c8758557fdda44 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", -"Choose" => "Escoller", +"Ok" => "Aceptar", "Cancel" => "Cancelar", -"No" => "Non", +"Choose" => "Escoller", "Yes" => "Si", -"Ok" => "Aceptar", +"No" => "Non", "The object type is not specified." => "Non se especificou o tipo de obxecto.", "Error" => "Erro", "The app name is not specified." => "Non se especificou o nome do aplicativo.", diff --git a/core/l10n/he.php b/core/l10n/he.php index 1db5820bdf736824ff58afce5c391943eaec6907..56f273e95dea107e5ce0b6e35385e8a775d5433c 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -44,11 +44,11 @@ "months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", -"Choose" => "בחירה", +"Ok" => "בסדר", "Cancel" => "ביטול", -"No" => "לא", +"Choose" => "בחירה", "Yes" => "כן", -"Ok" => "בסדר", +"No" => "לא", "The object type is not specified." => "סוג הפריט לא צוין.", "Error" => "שגיאה", "The app name is not specified." => "שם היישום לא צוין.", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 86136329d8f696c5a9d959434e79378b08fffc19..d32d8d4b2278580c8f8dfd79b55662c8fc3eeece 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -28,11 +28,11 @@ "months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", -"Choose" => "Izaberi", +"Ok" => "U redu", "Cancel" => "Odustani", -"No" => "Ne", +"Choose" => "Izaberi", "Yes" => "Da", -"Ok" => "U redu", +"No" => "Ne", "Error" => "Pogreška", "Share" => "Podijeli", "Error while sharing" => "Greška prilikom djeljenja", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 0f110bfc4c7c9b69000f250747f0092ca18fe6c8..eb0a3d1a91d51e62106256c099d52dfae71f1cdb 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -44,11 +44,11 @@ "months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", -"Choose" => "Válasszon", +"Ok" => "Ok", "Cancel" => "Mégse", -"No" => "Nem", +"Choose" => "Válasszon", "Yes" => "Igen", -"Ok" => "Ok", +"No" => "Nem", "The object type is not specified." => "Az objektum típusa nincs megadva.", "Error" => "Hiba", "The app name is not specified." => "Az alkalmazás neve nincs megadva.", diff --git a/core/l10n/id.php b/core/l10n/id.php index 0be3ef20fb5b3ce2953ffce8b4227b59483641f4..9eeaba3454327241eae86adb7c02a9d2f3a5c08e 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -1,19 +1,23 @@ "%s berbagi berkas dengan Anda", +"User %s shared a folder with you" => "%s berbagi folder dengan Anda", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "%s berbagi berkas \"%s\" dengan Anda. Silakan unduh di sini: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "%s berbagi folder \"%s\" dengan Anda. Silakan unduh di sini: %s", "Category type not provided." => "Tipe kategori tidak diberikan.", "No category to add?" => "Tidak ada kategori yang akan ditambahkan?", "This category already exists: %s" => "Kategori ini sudah ada: %s", -"Object type not provided." => "Tipe obyek tidak diberikan.", -"%s ID not provided." => "%s ID tidak diberikan.", -"Error adding %s to favorites." => "Kesalahan menambah %s ke favorit", -"No categories selected for deletion." => "Tidak ada kategori terpilih untuk penghapusan.", -"Error removing %s from favorites." => "Kesalahan menghapus %s dari favorit", -"Sunday" => "minggu", -"Monday" => "senin", -"Tuesday" => "selasa", -"Wednesday" => "rabu", -"Thursday" => "kamis", -"Friday" => "jumat", -"Saturday" => "sabtu", +"Object type not provided." => "Tipe objek tidak diberikan.", +"%s ID not provided." => "ID %s tidak diberikan.", +"Error adding %s to favorites." => "Galat ketika menambah %s ke favorit", +"No categories selected for deletion." => "Tidak ada kategori terpilih untuk dihapus.", +"Error removing %s from favorites." => "Galat ketika menghapus %s dari favorit", +"Sunday" => "Minggu", +"Monday" => "Senin", +"Tuesday" => "Selasa", +"Wednesday" => "Rabu", +"Thursday" => "Kamis", +"Friday" => "Jumat", +"Saturday" => "Sabtu", "January" => "Januari", "February" => "Februari", "March" => "Maret", @@ -24,11 +28,11 @@ "August" => "Agustus", "September" => "September", "October" => "Oktober", -"November" => "Nopember", +"November" => "November", "December" => "Desember", "Settings" => "Setelan", "seconds ago" => "beberapa detik yang lalu", -"1 minute ago" => "1 menit lalu", +"1 minute ago" => "1 menit yang lalu", "{minutes} minutes ago" => "{minutes} menit yang lalu", "1 hour ago" => "1 jam yang lalu", "{hours} hours ago" => "{hours} jam yang lalu", @@ -40,85 +44,96 @@ "months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", -"Choose" => "pilih", +"Ok" => "Oke", "Cancel" => "Batalkan", -"No" => "Tidak", +"Choose" => "Pilih", "Yes" => "Ya", -"Ok" => "Oke", -"Error" => "gagal", -"Shared" => "Terbagi", -"Share" => "Bagi", -"Error while sharing" => "gagal ketika membagikan", -"Error while unsharing" => "gagal ketika membatalkan pembagian", -"Error while changing permissions" => "gagal ketika merubah perijinan", -"Shared with you and the group {group} by {owner}" => "dibagikan dengan anda dan grup {group} oleh {owner}", -"Shared with you by {owner}" => "dibagikan dengan anda oleh {owner}", -"Share with" => "bagikan dengan", -"Share with link" => "bagikan dengan tautan", -"Password protect" => "lindungi dengan kata kunci", -"Password" => "Password", -"Email link to person" => "Email link ini ke orang", +"No" => "Tidak", +"The object type is not specified." => "Tipe objek tidak ditentukan.", +"Error" => "Galat", +"The app name is not specified." => "Nama aplikasi tidak ditentukan.", +"The required file {file} is not installed!" => "Berkas {file} yang dibutuhkan tidak terpasang!", +"Shared" => "Dibagikan", +"Share" => "Bagikan", +"Error while sharing" => "Galat ketika membagikan", +"Error while unsharing" => "Galat ketika membatalkan pembagian", +"Error while changing permissions" => "Galat ketika mengubah izin", +"Shared with you and the group {group} by {owner}" => "Dibagikan dengan Anda dan grup {group} oleh {owner}", +"Shared with you by {owner}" => "Dibagikan dengan Anda oleh {owner}", +"Share with" => "Bagikan dengan", +"Share with link" => "Bagikan lewat tautan", +"Password protect" => "Lindungi dengan sandi", +"Password" => "Sandi", +"Email link to person" => "Emailkan tautan ini ke orang", "Send" => "Kirim", -"Set expiration date" => "set tanggal kadaluarsa", -"Expiration date" => "tanggal kadaluarsa", -"Share via email:" => "berbagi memlalui surel:", -"No people found" => "tidak ada orang ditemukan", -"Resharing is not allowed" => "berbagi ulang tidak diperbolehkan", -"Shared in {item} with {user}" => "dibagikan dalam {item} dengan {user}", -"Unshare" => "batalkan berbagi", -"can edit" => "dapat merubah", +"Set expiration date" => "Setel tanggal kedaluwarsa", +"Expiration date" => "Tanggal kedaluwarsa", +"Share via email:" => "Bagian lewat email:", +"No people found" => "Tidak ada orang ditemukan", +"Resharing is not allowed" => "Berbagi ulang tidak diizinkan", +"Shared in {item} with {user}" => "Dibagikan dalam {item} dengan {user}", +"Unshare" => "Batalkan berbagi", +"can edit" => "dapat mengedit", "access control" => "kontrol akses", -"create" => "buat baru", -"update" => "baharui", +"create" => "buat", +"update" => "perbarui", "delete" => "hapus", "share" => "bagikan", -"Password protected" => "dilindungi kata kunci", -"Error unsetting expiration date" => "gagal melepas tanggal kadaluarsa", -"Error setting expiration date" => "gagal memasang tanggal kadaluarsa", -"Sending ..." => "Sedang mengirim ...", +"Password protected" => "Dilindungi sandi", +"Error unsetting expiration date" => "Galat ketika menghapus tanggal kedaluwarsa", +"Error setting expiration date" => "Galat ketika menyetel tanggal kedaluwarsa", +"Sending ..." => "Mengirim ...", "Email sent" => "Email terkirim", -"The update was successful. Redirecting you to ownCloud now." => "Update sukses. Membawa anda ke ownCloud sekarang.", -"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.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud.", +"The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", +"ownCloud password reset" => "Setel ulang sandi ownCloud", +"Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}", +"You will receive a link to reset your password via Email." => "Anda akan menerima tautan penyetelan ulang sandi lewat Email.", +"Reset email send." => "Email penyetelan ulang dikirim.", "Request failed!" => "Permintaan gagal!", -"Username" => "Username", -"Request reset" => "Meminta reset", -"Your password was reset" => "Password anda telah direset", -"To login page" => "Ke halaman login", -"New password" => "Password baru", -"Reset password" => "Reset password", +"Username" => "Nama Pengguna", +"Request reset" => "Ajukan penyetelan ulang", +"Your password was reset" => "Sandi Anda telah disetel ulang", +"To login page" => "Ke halaman masuk", +"New password" => "Sandi baru", +"Reset password" => "Setel ulang sandi", "Personal" => "Pribadi", "Users" => "Pengguna", "Apps" => "Aplikasi", "Admin" => "Admin", "Help" => "Bantuan", -"Access forbidden" => "Akses Ditiadakan", +"Access forbidden" => "Akses ditolak", "Cloud not found" => "Cloud tidak ditemukan", "Edit categories" => "Edit kategori", "Add" => "Tambahkan", -"Security Warning" => "peringatan keamanan", -"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "tanpa generator angka acak, penyerang mungkin dapat menebak token reset kata kunci dan mengambil alih akun anda.", +"Security Warning" => "Peringatan Keamanan", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Silakan perbarui instalasi PHP untuk dapat menggunakan ownCloud secara aman.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan sandi dan mengambil alih akun Anda.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi.", +"For information how to properly configure your server, please see the documentation." => "Untuk informasi lebih lanjut tentang pengaturan server yang benar, silakan lihat dokumentasi.", "Create an admin account" => "Buat sebuah akun admin", "Advanced" => "Tingkat Lanjut", "Data folder" => "Folder data", -"Configure the database" => "Konfigurasi database", +"Configure the database" => "Konfigurasikan basis data", "will be used" => "akan digunakan", -"Database user" => "Pengguna database", -"Database password" => "Password database", -"Database name" => "Nama database", -"Database tablespace" => "tablespace basis data", -"Database host" => "Host database", +"Database user" => "Pengguna basis data", +"Database password" => "Sandi basis data", +"Database name" => "Nama basis data", +"Database tablespace" => "Tablespace basis data", +"Database host" => "Host basis data", "Finish setup" => "Selesaikan instalasi", -"web services under your control" => "web service dibawah kontrol anda", +"web services under your control" => "layanan web dalam kontrol Anda", "Log out" => "Keluar", -"Automatic logon rejected!" => "login otomatis ditolak!", -"If you did not change your password recently, your account may be compromised!" => "apabila anda tidak merubah kata kunci belakangan ini, akun anda dapat di gunakan orang lain!", -"Please change your password to secure your account again." => "mohon ubah kata kunci untuk mengamankan akun anda", -"Lost your password?" => "Lupa password anda?", -"remember" => "selalu login", +"Automatic logon rejected!" => "Masuk otomatis ditolak!", +"If you did not change your password recently, your account may be compromised!" => "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!", +"Please change your password to secure your account again." => "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda.", +"Lost your password?" => "Lupa sandi?", +"remember" => "selalu masuk", "Log in" => "Masuk", -"Alternative Logins" => "Login dengan cara lain", -"prev" => "sebelum", -"next" => "selanjutnya" +"Alternative Logins" => "Cara Alternatif untuk Masuk", +"prev" => "sebelumnya", +"next" => "selanjutnya", +"Updating ownCloud to version %s, this may take a while." => "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat." ); diff --git a/core/l10n/is.php b/core/l10n/is.php index 997a582d22867cb4f4285f0114ac20574802232b..c6b7a6df3259dc73a1fd5e342983910614b04c39 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -43,11 +43,11 @@ "months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "árum síðan", -"Choose" => "Veldu", +"Ok" => "Í lagi", "Cancel" => "Hætta við", -"No" => "Nei", +"Choose" => "Veldu", "Yes" => "Já", -"Ok" => "Í lagi", +"No" => "Nei", "The object type is not specified." => "Tegund ekki tilgreind", "Error" => "Villa", "The app name is not specified." => "Nafn forrits ekki tilgreint", diff --git a/core/l10n/it.php b/core/l10n/it.php index 2d9b46ddfc128968f9041dcf7f13ab17c1cdef76..d24c3330bfded3f671b1dab13e4afde5574ce728 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -44,11 +44,11 @@ "months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", -"Choose" => "Scegli", +"Ok" => "Ok", "Cancel" => "Annulla", -"No" => "No", +"Choose" => "Scegli", "Yes" => "Sì", -"Ok" => "Ok", +"No" => "No", "The object type is not specified." => "Il tipo di oggetto non è specificato.", "Error" => "Errore", "The app name is not specified." => "Il nome dell'applicazione non è specificato.", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 617a8bf4f49c835f61acb66182403fd5578ee1e2..200e494d8c1743b767ffb8396252af878b3950cf 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -31,7 +31,7 @@ "November" => "11月", "December" => "12月", "Settings" => "設定", -"seconds ago" => "秒前", +"seconds ago" => "数秒前", "1 minute ago" => "1 分前", "{minutes} minutes ago" => "{minutes} 分前", "1 hour ago" => "1 時間前", @@ -44,11 +44,11 @@ "months ago" => "月前", "last year" => "一年前", "years ago" => "年前", -"Choose" => "選択", +"Ok" => "OK", "Cancel" => "キャンセル", -"No" => "いいえ", +"Choose" => "選択", "Yes" => "はい", -"Ok" => "OK", +"No" => "いいえ", "The object type is not specified." => "オブジェクタイプが指定されていません。", "Error" => "エラー", "The app name is not specified." => "アプリ名がしていされていません。", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 4cdada58d906443a4c2c19faf6607163794c5fdf..190a2f5eabe1e2560975a3877a5ede777a210c72 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -1,6 +1,16 @@ "მომხმარებელმა %s გაგიზიარათ ფაილი", +"User %s shared a folder with you" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s", +"Category type not provided." => "კატეგორიის ტიპი არ არის განხილული.", "No category to add?" => "არ არის კატეგორია დასამატებლად?", +"This category already exists: %s" => "კატეგორია უკვე არსებობს: %s", +"Object type not provided." => "ობიექტის ტიპი არ არის განხილული.", +"%s ID not provided." => "%s ID არ არის განხილული", +"Error adding %s to favorites." => "შეცდომა %s–ის ფევორიტებში დამატების დროს.", "No categories selected for deletion." => "სარედაქტირებელი კატეგორია არ არის არჩეული ", +"Error removing %s from favorites." => "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს.", "Sunday" => "კვირა", "Monday" => "ორშაბათი", "Tuesday" => "სამშაბათი", @@ -24,32 +34,44 @@ "seconds ago" => "წამის წინ", "1 minute ago" => "1 წუთის წინ", "{minutes} minutes ago" => "{minutes} წუთის წინ", +"1 hour ago" => "1 საათის წინ", +"{hours} hours ago" => "{hours} საათის წინ", "today" => "დღეს", "yesterday" => "გუშინ", "{days} days ago" => "{days} დღის წინ", "last month" => "გასულ თვეში", +"{months} months ago" => "{months} თვის წინ", "months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", -"Choose" => "არჩევა", +"Ok" => "დიახ", "Cancel" => "უარყოფა", -"No" => "არა", +"Choose" => "არჩევა", "Yes" => "კი", -"Ok" => "დიახ", +"No" => "არა", +"The object type is not specified." => "ობიექტის ტიპი არ არის მითითებული.", "Error" => "შეცდომა", +"The app name is not specified." => "აპლიკაციის სახელი არ არის მითითებული.", +"The required file {file} is not installed!" => "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული.", +"Shared" => "გაზიარებული", "Share" => "გაზიარება", "Error while sharing" => "შეცდომა გაზიარების დროს", "Error while unsharing" => "შეცდომა გაზიარების გაუქმების დროს", "Error while changing permissions" => "შეცდომა დაშვების ცვლილების დროს", +"Shared with you and the group {group} by {owner}" => "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ", +"Shared with you by {owner}" => "გაზიარდა თქვენთვის {owner}–ის მიერ", "Share with" => "გაუზიარე", "Share with link" => "გაუზიარე ლინკით", "Password protect" => "პაროლით დაცვა", "Password" => "პაროლი", +"Email link to person" => "ლინკის პიროვნების იმეილზე გაგზავნა", +"Send" => "გაგზავნა", "Set expiration date" => "მიუთითე ვადის გასვლის დრო", "Expiration date" => "ვადის გასვლის დრო", "Share via email:" => "გააზიარე მეილზე", "No people found" => "მომხმარებელი არ არის ნაპოვნი", "Resharing is not allowed" => "მეორეჯერ გაზიარება არ არის დაშვებული", +"Shared in {item} with {user}" => "გაზიარდა {item}–ში {user}–ის მიერ", "Unshare" => "გაზიარების მოხსნა", "can edit" => "შეგიძლია შეცვლა", "access control" => "დაშვების კონტროლი", @@ -60,9 +82,15 @@ "Password protected" => "პაროლით დაცული", "Error unsetting expiration date" => "შეცდომა ვადის გასვლის მოხსნის დროს", "Error setting expiration date" => "შეცდომა ვადის გასვლის მითითების დროს", +"Sending ..." => "გაგზავნა ....", +"Email sent" => "იმეილი გაიგზავნა", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community.", +"The update was successful. Redirecting you to ownCloud now." => "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე.", "ownCloud password reset" => "ownCloud პაროლის შეცვლა", "Use the following link to reset your password: {link}" => "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}", "You will receive a link to reset your password via Email." => "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე", +"Reset email send." => "რესეტის მეილი გაიგზავნა", +"Request failed!" => "მოთხოვნა შეწყდა!", "Username" => "მომხმარებელი", "Request reset" => "პაროლის შეცვლის მოთხოვნა", "Your password was reset" => "თქვენი პაროლი შეცვლილია", @@ -79,10 +107,14 @@ "Edit categories" => "კატეგორიების რედაქტირება", "Add" => "დამატება", "Security Warning" => "უსაფრთხოების გაფრთხილება", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "იმისათვის რომ გამოიყენოთ ownCloud უსაფრთხოდ, გთხოვთ განაახლოთ თქვენი PHP ვერსია.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "შემთხვევითი სიმბოლოების გენერატორი არ არსებობს, გთხოვთ ჩართოთ PHP OpenSSL გაფართოება.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "შემთხვევითი სიმბოლოების გენერატორის გარეშე, შემტევმა შეიძლება ამოიცნოს თქვენი პაროლი შეგიცვალოთ ის და დაეუფლოს თქვენს ექაუნთს.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს.", +"For information how to properly configure your server, please see the documentation." => "სერვერის კორექტულად დასაკონფიგურირებლად, ნახეთ შემდეგი დოკუმენტაცია.", "Create an admin account" => "შექმენი ადმინ ექაუნტი", -"Advanced" => "Advanced", +"Advanced" => "დამატებითი ფუნქციები", "Data folder" => "მონაცემთა საქაღალდე", "Configure the database" => "მონაცემთა ბაზის კონფიგურირება", "will be used" => "გამოყენებული იქნება", @@ -95,9 +127,13 @@ "web services under your control" => "თქვენი კონტროლის ქვეშ მყოფი ვებ სერვისები", "Log out" => "გამოსვლა", "Automatic logon rejected!" => "ავტომატური შესვლა უარყოფილია!", +"If you did not change your password recently, your account may be compromised!" => "თუ თქვენ არ შეცვლით პაროლს, თქვენი ანგარიში შეიძლება იყოს დაშვებადი სხვებისთვის", +"Please change your password to secure your account again." => "გთხოვთ შეცვალოთ თქვენი პაროლი, თქვენი ანგარიშის დასაცავად.", "Lost your password?" => "დაგავიწყდათ პაროლი?", "remember" => "დამახსოვრება", "Log in" => "შესვლა", +"Alternative Logins" => "ალტერნატიული Login–ი", "prev" => "წინა", -"next" => "შემდეგი" +"next" => "შემდეგი", +"Updating ownCloud to version %s, this may take a while." => "ownCloud–ის განახლება %s–ვერსიამდე. ეს მოითხოვს გარკვეულ დროს." ); diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 408afa372b7e5393fd96b806575a693cce679a96..2a75ce9c4f453d6a295348eda7da8e8f31294f4c 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -43,11 +43,11 @@ "months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", -"Choose" => "선택", +"Ok" => "승락", "Cancel" => "취소", -"No" => "아니요", +"Choose" => "선택", "Yes" => "예", -"Ok" => "승락", +"No" => "아니요", "The object type is not specified." => "객체 유형이 지정되지 않았습니다.", "Error" => "오류", "The app name is not specified." => "앱 이름이 지정되지 않았습니다.", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index 11137f27aa2fbbce826c83290c9a485fbea37987..79258b8e9741f23384686e078de0441d6c495972 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -28,11 +28,11 @@ "months ago" => "Méint hier", "last year" => "Läscht Joer", "years ago" => "Joren hier", -"Choose" => "Auswielen", +"Ok" => "OK", "Cancel" => "Ofbriechen", -"No" => "Nee", +"Choose" => "Auswielen", "Yes" => "Jo", -"Ok" => "OK", +"No" => "Nee", "Error" => "Fehler", "Share" => "Deelen", "Password" => "Passwuert", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index 563fd8884b054a2232811d8968f029935e8c59fd..0f55c341e56ba20e08fdf221434a0a1b3b17a93c 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -31,11 +31,11 @@ "months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", -"Choose" => "Pasirinkite", +"Ok" => "Gerai", "Cancel" => "Atšaukti", -"No" => "Ne", +"Choose" => "Pasirinkite", "Yes" => "Taip", -"Ok" => "Gerai", +"No" => "Ne", "Error" => "Klaida", "Share" => "Dalintis", "Error while sharing" => "Klaida, dalijimosi metu", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 2ddea9421be7738c00f3189e0cc57fbf0f6ec651..76188662fbb6fb59d817154712438c6506dded30 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -44,11 +44,11 @@ "months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", -"Choose" => "Izvēlieties", +"Ok" => "Labi", "Cancel" => "Atcelt", -"No" => "Nē", +"Choose" => "Izvēlieties", "Yes" => "Jā", -"Ok" => "Labi", +"No" => "Nē", "The object type is not specified." => "Nav norādīts objekta tips.", "Error" => "Kļūda", "The app name is not specified." => "Nav norādīts lietotnes nosaukums.", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index d9da76690044bf29efb97a5b91d13941ede40714..9743d8b299ec0b7c0e04e9ce23d98bd5b4192055 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -43,11 +43,11 @@ "months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", -"Choose" => "Избери", +"Ok" => "Во ред", "Cancel" => "Откажи", -"No" => "Не", +"Choose" => "Избери", "Yes" => "Да", -"Ok" => "Во ред", +"No" => "Не", "The object type is not specified." => "Не е специфициран типот на објект.", "Error" => "Грешка", "The app name is not specified." => "Името на апликацијата не е специфицирано.", diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index af51079b570b3fe39f41a33a2d019cd5d69df76b..d8a2cf88367df9b7aedddc9b5efe85b2fd0f1594 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -21,10 +21,10 @@ "November" => "November", "December" => "Disember", "Settings" => "Tetapan", +"Ok" => "Ok", "Cancel" => "Batal", -"No" => "Tidak", "Yes" => "Ya", -"Ok" => "Ok", +"No" => "Tidak", "Error" => "Ralat", "Share" => "Kongsi", "Password" => "Kata laluan", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 97631d4df58bc0df15dc225769088b9747a15063..ef8be954ede180a0a0a2d2097fbbb6d326e87fc7 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -21,11 +21,11 @@ "last month" => "ပြီးခဲ့သောလ", "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", -"Choose" => "ရွေးချယ်", +"Ok" => "အိုကေ", "Cancel" => "ပယ်ဖျက်မည်", -"No" => "မဟုတ်ဘူး", +"Choose" => "ရွေးချယ်", "Yes" => "ဟုတ်", -"Ok" => "အိုကေ", +"No" => "မဟုတ်ဘူး", "Password" => "စကားဝှက်", "Set expiration date" => "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်", "Expiration date" => "သက်တမ်းကုန်ဆုံးမည့်ရက်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index 340625449eeb1704929977ffc9a0161df37245ae..4e1ee45eec9e5d60f2b8b1e426c33b366700dd1b 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -34,11 +34,11 @@ "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", -"Choose" => "Velg", +"Ok" => "Ok", "Cancel" => "Avbryt", -"No" => "Nei", +"Choose" => "Velg", "Yes" => "Ja", -"Ok" => "Ok", +"No" => "Nei", "Error" => "Feil", "Share" => "Del", "Error while sharing" => "Feil under deling", diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 6daa9227904591d52a2568b27a76910c0cf7bda7..5e050c33becb5a7b3d4e284d57dee1e7a282c9ea 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -44,11 +44,11 @@ "months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", -"Choose" => "Kies", +"Ok" => "Ok", "Cancel" => "Annuleren", -"No" => "Nee", +"Choose" => "Kies", "Yes" => "Ja", -"Ok" => "Ok", +"No" => "Nee", "The object type is not specified." => "Het object type is niet gespecificeerd.", "Error" => "Fout", "The app name is not specified." => "De app naam is niet gespecificeerd.", @@ -107,6 +107,8 @@ "Edit categories" => "Wijzigen categorieën", "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Uw PHP versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Werk uw PHP installatie bij om ownCloud veilig te kunnen gebruiken.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Er kon geen willekeurig nummer worden gegenereerd. Zet de PHP OpenSSL extentie aan.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Zonder random nummer generator is het mogelijk voor een aanvaller om de reset tokens van wachtwoorden te voorspellen. Dit kan leiden tot het inbreken op uw account.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Uw gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess bestand niet werkt.", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index abd5f5736af2f3500ca7a7e6b1eaaffa4428115d..ec432d495a44c8c65a4a218f73a9c594230575fa 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -29,11 +29,11 @@ "months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", -"Choose" => "Causís", +"Ok" => "D'accòrdi", "Cancel" => "Anulla", -"No" => "Non", +"Choose" => "Causís", "Yes" => "Òc", -"Ok" => "D'accòrdi", +"No" => "Non", "Error" => "Error", "Share" => "Parteja", "Error while sharing" => "Error al partejar", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 79b7301a0392aedaddea27138980dfddddd38d99..2821bf77eed074c058ef7952938131908dcddc6f 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -44,11 +44,11 @@ "months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", -"Choose" => "Wybierz", +"Ok" => "OK", "Cancel" => "Anuluj", -"No" => "Nie", +"Choose" => "Wybierz", "Yes" => "Tak", -"Ok" => "OK", +"No" => "Nie", "The object type is not specified." => "Nie określono typu obiektu.", "Error" => "Błąd", "The app name is not specified." => "Nie określono nazwy aplikacji.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index 15a3c997b0fde86ccd7ab7b56dfc2718e8cdb516..e5acd4da8f6bdfbddcd2a3adb131c8ab32d0cedc 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", -"Choose" => "Escolha", +"Ok" => "Ok", "Cancel" => "Cancelar", -"No" => "Não", +"Choose" => "Escolha", "Yes" => "Sim", -"Ok" => "Ok", +"No" => "Não", "The object type is not specified." => "O tipo de objeto não foi especificado.", "Error" => "Erro", "The app name is not specified." => "O nome do app não foi especificado.", @@ -107,6 +107,8 @@ "Edit categories" => "Editar categorias", "Add" => "Adicionar", "Security Warning" => "Aviso de Segurança", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Por favor atualize sua instalação do PHP para utilizar o ownCloud de forma segura.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nenhum gerador de número aleatório de segurança disponível. Habilite a extensão OpenSSL do PHP.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Sem um gerador de número aleatório de segurança, um invasor pode ser capaz de prever os símbolos de redefinição de senhas e assumir sua conta.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Seu diretório de dados e arquivos são provavelmente acessíveis pela internet, porque o .htaccess não funciona.", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 41506bd9ec4d3c15b41481a136ad4f11b59cc362..67d43e372a14075eb60efaeb73dd80a5d3fd6ab8 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -44,11 +44,11 @@ "months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", -"Choose" => "Escolha", +"Ok" => "Ok", "Cancel" => "Cancelar", -"No" => "Não", +"Choose" => "Escolha", "Yes" => "Sim", -"Ok" => "Ok", +"No" => "Não", "The object type is not specified." => "O tipo de objecto não foi especificado", "Error" => "Erro", "The app name is not specified." => "O nome da aplicação não foi especificado", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index da9f1a7da943859ccbe0796b53919c01253d8e2e..51c1523d7e01a529a91198c930d51c89e2446b0d 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -43,11 +43,11 @@ "months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", -"Choose" => "Alege", +"Ok" => "Ok", "Cancel" => "Anulare", -"No" => "Nu", +"Choose" => "Alege", "Yes" => "Da", -"Ok" => "Ok", +"No" => "Nu", "The object type is not specified." => "Tipul obiectului nu a fost specificat", "Error" => "Eroare", "The app name is not specified." => "Numele aplicației nu a fost specificat", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index 2f90c5c5df3917ec986a3327b9c85a192d725e5a..0625a5d11d4f377a0007d9ff7d3bdf3d64e07add 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -44,11 +44,11 @@ "months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", -"Choose" => "Выбрать", +"Ok" => "Ок", "Cancel" => "Отмена", -"No" => "Нет", +"Choose" => "Выбрать", "Yes" => "Да", -"Ok" => "Ок", +"No" => "Нет", "The object type is not specified." => "Тип объекта не указан", "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php index 0399d56dfcf020d8e771fd77d28fc72443db2e7a..1afb9e20c9bce823f2e784d4fc36bee0f2857cab 100644 --- a/core/l10n/ru_RU.php +++ b/core/l10n/ru_RU.php @@ -44,11 +44,11 @@ "months ago" => "месяц назад", "last year" => "в прошлом году", "years ago" => "лет назад", -"Choose" => "Выбрать", +"Ok" => "Да", "Cancel" => "Отмена", -"No" => "Нет", +"Choose" => "Выбрать", "Yes" => "Да", -"Ok" => "Да", +"No" => "Нет", "The object type is not specified." => "Тип объекта не указан.", "Error" => "Ошибка", "The app name is not specified." => "Имя приложения не указано.", diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index eaafca2f3f6008478f4e63f7230b6bdec973c2f9..dc9801139a44da296f1b0ccd15f28e7afe029165 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -28,11 +28,11 @@ "months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", -"Choose" => "තෝරන්න", +"Ok" => "හරි", "Cancel" => "එපා", -"No" => "නැහැ", +"Choose" => "තෝරන්න", "Yes" => "ඔව්", -"Ok" => "හරි", +"No" => "නැහැ", "Error" => "දෝෂයක්", "Share" => "බෙදා හදා ගන්න", "Share with" => "බෙදාගන්න", diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 9b0bd45fce3980d12117a3f484a4f3d01439392d..b52c8b03c4159114b1e54379740282ced45066c2 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -44,11 +44,11 @@ "months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", -"Choose" => "Výber", +"Ok" => "Ok", "Cancel" => "Zrušiť", -"No" => "Nie", +"Choose" => "Výber", "Yes" => "Áno", -"Ok" => "Ok", +"No" => "Nie", "The object type is not specified." => "Nešpecifikovaný typ objektu.", "Error" => "Chyba", "The app name is not specified." => "Nešpecifikované meno aplikácie.", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index df86a608bbd44e66f58882ae4fd18c0e66376b8b..b3cd5c353cf652a8287d95f129657523802cf208 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -44,11 +44,11 @@ "months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", -"Choose" => "Izbor", +"Ok" => "V redu", "Cancel" => "Prekliči", -"No" => "Ne", +"Choose" => "Izbor", "Yes" => "Da", -"Ok" => "V redu", +"No" => "Ne", "The object type is not specified." => "Vrsta predmeta ni podana.", "Error" => "Napaka", "The app name is not specified." => "Ime programa ni podano.", diff --git a/core/l10n/sq.php b/core/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..6881d0105c7c6ff77b01881b83304d3fd9936802 --- /dev/null +++ b/core/l10n/sq.php @@ -0,0 +1,139 @@ + "Përdoruesi %s ndau me ju një skedar", +"User %s shared a folder with you" => "Përdoruesi %s ndau me ju një dosje", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "Përdoruesi %s ndau me ju skedarin \"%s\". Ky skedar është gati për shkarkim nga këtu: %s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "Përdoruesi %s ndau me ju dosjen \"%s\". Kjo dosje është gati për shkarkim nga këto: %s", +"Category type not provided." => "Mungon tipi i kategorisë.", +"No category to add?" => "Asnjë kategori për të shtuar?", +"This category already exists: %s" => "Kjo kategori tashmë ekziston: %s", +"Object type not provided." => "Mungon tipi i objektit.", +"%s ID not provided." => "Mungon ID-ja e %s.", +"Error adding %s to favorites." => "Veprim i gabuar gjatë shtimit të %s tek të parapëlqyerat.", +"No categories selected for deletion." => "Nuk selektuar për tu eliminuar asnjë kategori.", +"Error removing %s from favorites." => "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat.", +"Sunday" => "E djelë", +"Monday" => "E hënë", +"Tuesday" => "E martë", +"Wednesday" => "E mërkurë", +"Thursday" => "E enjte", +"Friday" => "E premte", +"Saturday" => "E shtunë", +"January" => "Janar", +"February" => "Shkurt", +"March" => "Mars", +"April" => "Prill", +"May" => "Maj", +"June" => "Qershor", +"July" => "Korrik", +"August" => "Gusht", +"September" => "Shtator", +"October" => "Tetor", +"November" => "Nëntor", +"December" => "Dhjetor", +"Settings" => "Parametrat", +"seconds ago" => "sekonda më parë", +"1 minute ago" => "1 minutë më parë", +"{minutes} minutes ago" => "{minutes} minuta më parë", +"1 hour ago" => "1 orë më parë", +"{hours} hours ago" => "{hours} orë më parë", +"today" => "sot", +"yesterday" => "dje", +"{days} days ago" => "{days} ditë më parë", +"last month" => "muajin e shkuar", +"{months} months ago" => "{months} muaj më parë", +"months ago" => "muaj më parë", +"last year" => "vitin e shkuar", +"years ago" => "vite më parë", +"Ok" => "Në rregull", +"Cancel" => "Anulo", +"Choose" => "Zgjidh", +"Yes" => "Po", +"No" => "Jo", +"The object type is not specified." => "Nuk është specifikuar tipi i objektit.", +"Error" => "Veprim i gabuar", +"The app name is not specified." => "Nuk është specifikuar emri i app-it.", +"The required file {file} is not installed!" => "Skedari i nevojshëm {file} nuk është i instaluar!", +"Shared" => "Ndarë", +"Share" => "Nda", +"Error while sharing" => "Veprim i gabuar gjatë ndarjes", +"Error while unsharing" => "Veprim i gabuar gjatë heqjes së ndarjes", +"Error while changing permissions" => "Veprim i gabuar gjatë ndryshimit të lejeve", +"Shared with you and the group {group} by {owner}" => "Ndarë me ju dhe me grupin {group} nga {owner}", +"Shared with you by {owner}" => "Ndarë me ju nga {owner}", +"Share with" => "Nda me", +"Share with link" => "Nda me lidhje", +"Password protect" => "Mbro me kod", +"Password" => "Kodi", +"Email link to person" => "Dërgo email me lidhjen", +"Send" => "Dërgo", +"Set expiration date" => "Cakto datën e përfundimit", +"Expiration date" => "Data e përfundimit", +"Share via email:" => "Nda me email:", +"No people found" => "Nuk u gjet asnjë person", +"Resharing is not allowed" => "Rindarja nuk lejohet", +"Shared in {item} with {user}" => "Ndarë në {item} me {user}", +"Unshare" => "Hiq ndarjen", +"can edit" => "mund të ndryshosh", +"access control" => "kontrollimi i hyrjeve", +"create" => "krijo", +"update" => "azhurno", +"delete" => "elimino", +"share" => "nda", +"Password protected" => "Mbrojtur me kod", +"Error unsetting expiration date" => "Veprim i gabuar gjatë heqjes së datës së përfundimit", +"Error setting expiration date" => "Veprim i gabuar gjatë caktimit të datës së përfundimit", +"Sending ..." => "Duke dërguar...", +"Email sent" => "Email-i u dërgua", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem komunitetin ownCloud.", +"The update was successful. Redirecting you to ownCloud now." => "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i.", +"ownCloud password reset" => "Rivendosja e kodit të ownCloud-it", +"Use the following link to reset your password: {link}" => "Përdorni lidhjen në vijim për të rivendosur kodin: {link}", +"You will receive a link to reset your password via Email." => "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin.", +"Reset email send." => "Emaili i rivendosjes u dërgua.", +"Request failed!" => "Kërkesa dështoi!", +"Username" => "Përdoruesi", +"Request reset" => "Bëj kërkesë për rivendosjen", +"Your password was reset" => "Kodi yt u rivendos", +"To login page" => "Tek faqja e hyrjes", +"New password" => "Kodi i ri", +"Reset password" => "Rivendos kodin", +"Personal" => "Personale", +"Users" => "Përdoruesit", +"Apps" => "App", +"Admin" => "Admin", +"Help" => "Ndihmë", +"Access forbidden" => "Ndalohet hyrja", +"Cloud not found" => "Cloud-i nuk u gjet", +"Edit categories" => "Ndrysho kategoritë", +"Add" => "Shto", +"Security Warning" => "Paralajmërim sigurie", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Versioni juaj i PHP-së është i cënueshëm nga sulmi NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Ju lutem azhurnoni instalimin tuaj të PHP-së që të përdorni ownCloud-in në mënyrë të sigurt.", +"No secure random number generator is available, please enable the PHP OpenSSL extension." => "Nuk disponohet asnjë krijues numrash të rastësishëm, ju lutem aktivizoni shtesën PHP OpenSSL.", +"Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Pa një krijues numrash të rastësishëm të sigurt një person i huaj mund të jetë në gjendje të parashikojë kodin dhe të marri llogarinë tuaj.", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Dosja dhe skedarët e të dhënave tuaja mbase janë të arritshme nga interneti sepse skedari .htaccess nuk po punon.", +"For information how to properly configure your server, please see the documentation." => "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni dokumentacionin.", +"Create an admin account" => "Krijo një llogari administruesi", +"Advanced" => "Të përparuara", +"Data folder" => "Emri i dosjes", +"Configure the database" => "Konfiguro database-in", +"will be used" => "do të përdoret", +"Database user" => "Përdoruesi i database-it", +"Database password" => "Kodi i database-it", +"Database name" => "Emri i database-it", +"Database tablespace" => "Tablespace-i i database-it", +"Database host" => "Pozicioni (host) i database-it", +"Finish setup" => "Mbaro setup-in", +"web services under your control" => "shërbime web nën kontrollin tënd", +"Log out" => "Dalje", +"Automatic logon rejected!" => "Hyrja automatike u refuzua!", +"If you did not change your password recently, your account may be compromised!" => "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të jetë komprometuar.", +"Please change your password to secure your account again." => "Ju lutemi, ndryshoni kodin për ta siguruar përsëri llogarinë tuaj.", +"Lost your password?" => "Ke humbur kodin?", +"remember" => "kujto", +"Log in" => "Hyrje", +"Alternative Logins" => "Hyrje alternative", +"prev" => "mbrapa", +"next" => "para", +"Updating ownCloud to version %s, this may take a while." => "Po azhurnoj ownCloud-in me versionin %s. Mund të zgjasi pak." +); diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 557cb6a8aba0ba8865f03a4f28a3c4d52962129f..b71d8cdd9451d05fffda342059f929ede4b41329 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -41,11 +41,11 @@ "months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", -"Choose" => "Одабери", +"Ok" => "У реду", "Cancel" => "Откажи", -"No" => "Не", +"Choose" => "Одабери", "Yes" => "Да", -"Ok" => "У реду", +"No" => "Не", "The object type is not specified." => "Врста објекта није подешена.", "Error" => "Грешка", "The app name is not specified." => "Име програма није унето.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index 590f2f3c846d741ab1a8da8e4d62728c545f6456..553afea5f71075ca937a7318ae187d4231c2e571 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -44,11 +44,11 @@ "months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", -"Choose" => "Välj", +"Ok" => "Ok", "Cancel" => "Avbryt", -"No" => "Nej", +"Choose" => "Välj", "Yes" => "Ja", -"Ok" => "Ok", +"No" => "Nej", "The object type is not specified." => "Objekttypen är inte specificerad.", "Error" => "Fel", "The app name is not specified." => " Namnet på appen är inte specificerad.", @@ -107,6 +107,8 @@ "Edit categories" => "Redigera kategorier", "Add" => "Lägg till", "Security Warning" => "Säkerhetsvarning", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Uppdatera din PHP-installation för att använda ownCloud säkert.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Ingen säker slumptalsgenerator finns tillgänglig. Du bör aktivera PHP OpenSSL-tillägget.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Utan en säker slumptalsgenerator kan angripare få möjlighet att förutsäga lösenordsåterställningar och ta över ditt konto.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar.", diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index 9863ca8154e80b85e80be36669fd038637e4345f..b45f38627a39f6626c644bb2a4289e7f2a893541 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -39,11 +39,11 @@ "months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", -"Choose" => "தெரிவுசெய்க ", +"Ok" => "சரி", "Cancel" => "இரத்து செய்க", -"No" => "இல்லை", +"Choose" => "தெரிவுசெய்க ", "Yes" => "ஆம்", -"Ok" => "சரி", +"No" => "இல்லை", "The object type is not specified." => "பொருள் வகை குறிப்பிடப்படவில்லை.", "Error" => "வழு", "The app name is not specified." => "செயலி பெயர் குறிப்பிடப்படவில்லை.", diff --git a/core/l10n/te.php b/core/l10n/te.php index a18af79ab17fc27766dc860487404f9577cc3380..040ab9b550e81740deb2f06af26b5c4a7d94339e 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -33,10 +33,10 @@ "months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", +"Ok" => "సరే", "Cancel" => "రద్దుచేయి", -"No" => "కాదు", "Yes" => "అవును", -"Ok" => "సరే", +"No" => "కాదు", "Error" => "పొరపాటు", "Password" => "సంకేతపదం", "Send" => "పంపించు", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 560c150066c2977bef212a13fa7d90cc007d5fd5..47d4b87b17cbd92b8b11d9c60adf2d5b84d9730a 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -43,11 +43,11 @@ "months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", -"Choose" => "เลือก", +"Ok" => "ตกลง", "Cancel" => "ยกเลิก", -"No" => "ไม่ตกลง", +"Choose" => "เลือก", "Yes" => "ตกลง", -"Ok" => "ตกลง", +"No" => "ไม่ตกลง", "The object type is not specified." => "ชนิดของวัตถุยังไม่ได้รับการระบุ", "Error" => "พบข้อผิดพลาด", "The app name is not specified." => "ชื่อของแอปยังไม่ได้รับการระบุชื่อ", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index 342a010da0aae55f674c07c64eb24210fcc68548..d6b25b40933e773a864d5b9660d7bdfa6aa1982f 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -44,11 +44,11 @@ "months ago" => "ay önce", "last year" => "geçen yıl", "years ago" => "yıl önce", -"Choose" => "seç", +"Ok" => "Tamam", "Cancel" => "İptal", -"No" => "Hayır", +"Choose" => "seç", "Yes" => "Evet", -"Ok" => "Tamam", +"No" => "Hayır", "The object type is not specified." => "Nesne türü belirtilmemiş.", "Error" => "Hata", "The app name is not specified." => "uygulama adı belirtilmedi.", @@ -101,7 +101,7 @@ "Users" => "Kullanıcılar", "Apps" => "Uygulamalar", "Admin" => "Yönetici", -"Help" => "Yardı", +"Help" => "Yardım", "Access forbidden" => "Erişim yasaklı", "Cloud not found" => "Bulut bulunamadı", "Edit categories" => "Kategorileri düzenle", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 685a31d52edffa8b1153a089c2fe840702de00c6..1e86ed7d36c93b6c7d916087dde268ee3a7902d4 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -44,11 +44,11 @@ "months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", -"Choose" => "Обрати", +"Ok" => "Ok", "Cancel" => "Відмінити", -"No" => "Ні", +"Choose" => "Обрати", "Yes" => "Так", -"Ok" => "Ok", +"No" => "Ні", "The object type is not specified." => "Не визначено тип об'єкту.", "Error" => "Помилка", "The app name is not specified." => "Не визначено ім'я програми.", @@ -107,6 +107,8 @@ "Edit categories" => "Редагувати категорії", "Add" => "Додати", "Security Warning" => "Попередження про небезпеку", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Не доступний безпечний генератор випадкових чисел, будь ласка, активуйте PHP OpenSSL додаток.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Без безпечного генератора випадкових чисел зловмисник може визначити токени скидання пароля і заволодіти Вашим обліковим записом.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює.", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index e2448c4d651789fd23ea55c4f978187f66f783d9..544d041e48f6b272970d1c3f1281a696bacf2797 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -14,11 +14,11 @@ "November" => "نومبر", "December" => "دسمبر", "Settings" => "سیٹینگز", -"Choose" => "منتخب کریں", +"Ok" => "اوکے", "Cancel" => "منسوخ کریں", -"No" => "نہیں", +"Choose" => "منتخب کریں", "Yes" => "ہاں", -"Ok" => "اوکے", +"No" => "نہیں", "Error" => "ایرر", "Error while sharing" => "شئیرنگ کے دوران ایرر", "Error while unsharing" => "شئیرنگ ختم کرنے کے دوران ایرر", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index f03c58f34919aea91001b9860ef36bac668a5ddf..709a8743086c32325b00ea37677fca74a134fba7 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -44,11 +44,11 @@ "months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", -"Choose" => "Chọn", +"Ok" => "Đồng ý", "Cancel" => "Hủy", -"No" => "Không", +"Choose" => "Chọn", "Yes" => "Có", -"Ok" => "Đồng ý", +"No" => "Không", "The object type is not specified." => "Loại đối tượng không được chỉ định.", "Error" => "Lỗi", "The app name is not specified." => "Tên ứng dụng không được chỉ định.", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 57f0e96378ca47168f1b8db39297468bf204c4f4..9fbfac2eec1c624d8f43b0190240aea9fedc039c 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -1,5 +1,12 @@ "用户 %s 与您分享了一个文件", +"User %s shared a folder with you" => "用户 %s 与您分享了一个文件夹", +"User %s shared the file \"%s\" with you. It is available for download here: %s" => "用户 %s 与您分享了文件“%s”。点击下载:%s", +"User %s shared the folder \"%s\" with you. It is available for download here: %s" => "用户 %s 与您分享了文件夹“%s”。点击下载:%s", +"Category type not provided." => "未选择分类类型。", "No category to add?" => "没有分类添加了?", +"This category already exists: %s" => "此分类已存在:%s", +"Object type not provided." => "未选择对象类型。", "No categories selected for deletion." => "没有选者要删除的分类.", "Sunday" => "星期天", "Monday" => "星期一", @@ -24,19 +31,26 @@ "seconds ago" => "秒前", "1 minute ago" => "1 分钟前", "{minutes} minutes ago" => "{minutes} 分钟前", +"1 hour ago" => "1小时前", +"{hours} hours ago" => "{hours}小时前", "today" => "今天", "yesterday" => "昨天", "{days} days ago" => "{days} 天前", "last month" => "上个月", +"{months} months ago" => "{months}月前", "months ago" => "月前", "last year" => "去年", "years ago" => "年前", -"Choose" => "选择", +"Ok" => "好的", "Cancel" => "取消", -"No" => "否", +"Choose" => "选择", "Yes" => "是", -"Ok" => "好的", +"No" => "否", +"The object type is not specified." => "未指定对象类型。", "Error" => "错误", +"The app name is not specified." => "未指定应用名称。", +"The required file {file} is not installed!" => "未安装所需要的文件 {file} !", +"Shared" => "已分享", "Share" => "分享", "Error while sharing" => "分享出错", "Error while unsharing" => "取消分享出错", @@ -47,6 +61,8 @@ "Share with link" => "分享链接", "Password protect" => "密码保护", "Password" => "密码", +"Email link to person" => "面向个人的电子邮件链接", +"Send" => "发送", "Set expiration date" => "设置失效日期", "Expiration date" => "失效日期", "Share via email:" => "通过电子邮件分享:", @@ -63,6 +79,10 @@ "Password protected" => "密码保护", "Error unsetting expiration date" => "取消设置失效日期出错", "Error setting expiration date" => "设置失效日期出错", +"Sending ..." => "发送中……", +"Email sent" => "电子邮件已发送", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "升级失败。请向ownCloud社区报告此问题。", +"The update was successful. Redirecting you to ownCloud now." => "升级成功。现在为您跳转到ownCloud。", "ownCloud password reset" => "私有云密码重置", "Use the following link to reset your password: {link}" => "使用下面的链接来重置你的密码:{link}", "You will receive a link to reset your password via Email." => "你将会收到一个重置密码的链接", @@ -84,8 +104,11 @@ "Edit categories" => "编辑分类", "Add" => "添加", "Security Warning" => "安全警告", +"Please update your PHP installation to use ownCloud securely." => "请升级您的PHP版本以稳定运行ownCloud。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "没有安全随机码生成器,请启用 PHP OpenSSL 扩展。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "没有安全随机码生成器,黑客可以预测密码重置令牌并接管你的账户。", +"Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。", +"For information how to properly configure your server, please see the documentation." => "要获得大概如何配置您的服务器的相关信息,参见说明文档。", "Create an admin account" => "建立一个 管理帐户", "Advanced" => "进阶", "Data folder" => "数据存放文件夹", @@ -105,6 +128,8 @@ "Lost your password?" => "忘记密码?", "remember" => "备忘", "Log in" => "登陆", +"Alternative Logins" => "备选登录", "prev" => "后退", -"next" => "前进" +"next" => "前进", +"Updating ownCloud to version %s, this may take a while." => "ownCloud正在升级至 %s 版,这可能需要一点时间。" ); diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 631baf7cef9f6cada8dd961bd2bf7bb7ee2f6c29..926d4691ed12f544a5e11e93ec1a464ca6d6f6bf 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -44,11 +44,11 @@ "months ago" => "月前", "last year" => "去年", "years ago" => "年前", -"Choose" => "选择(&C)...", +"Ok" => "好", "Cancel" => "取消", -"No" => "否", +"Choose" => "选择(&C)...", "Yes" => "是", -"Ok" => "好", +"No" => "否", "The object type is not specified." => "未指定对象类型。", "Error" => "错误", "The app name is not specified." => "未指定App名称。", @@ -128,7 +128,6 @@ "If you did not change your password recently, your account may be compromised!" => "如果您没有最近修改您的密码,您的帐户可能会受到影响!", "Please change your password to secure your account again." => "请修改您的密码,以保护您的账户安全。", "Lost your password?" => "忘记密码?", -"remember" => "记住", "Log in" => "登录", "Alternative Logins" => "其他登录方式", "prev" => "上一页", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index d02b7be6601c9f85ad38d284aefa84265a5bc590..178ab88e5e091f4a93088003434d5b3dc302bfd2 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -23,10 +23,10 @@ "yesterday" => "昨日", "last month" => "前一月", "months ago" => "個月之前", +"Ok" => "OK", "Cancel" => "取消", -"No" => "No", "Yes" => "Yes", -"Ok" => "OK", +"No" => "No", "Error" => "錯誤", "Shared" => "已分享", "Share" => "分享", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index a6c4251d1fad3a44981b41bcd30f195b96fab02a..3199688be308e124143a56a0752479e94c13812d 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -44,11 +44,11 @@ "months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", -"Choose" => "選擇", +"Ok" => "好", "Cancel" => "取消", -"No" => "No", -"Yes" => "Yes", -"Ok" => "Ok", +"Choose" => "選擇", +"Yes" => "是", +"No" => "否", "The object type is not specified." => "未指定物件類型。", "Error" => "錯誤", "The app name is not specified." => "沒有指定 app 名稱。", @@ -68,7 +68,7 @@ "Send" => "寄出", "Set expiration date" => "設置到期日", "Expiration date" => "到期日", -"Share via email:" => "透過 email 分享:", +"Share via email:" => "透過電子郵件分享:", "No people found" => "沒有找到任何人", "Resharing is not allowed" => "不允許重新分享", "Shared in {item} with {user}" => "已和 {user} 分享 {item}", @@ -82,18 +82,18 @@ "Password protected" => "受密碼保護", "Error unsetting expiration date" => "解除過期日設定失敗", "Error setting expiration date" => "錯誤的到期日設定", -"Sending ..." => "正在寄出...", +"Sending ..." => "正在傳送...", "Email sent" => "Email 已寄出", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", "ownCloud password reset" => "ownCloud 密碼重設", -"Use the following link to reset your password: {link}" => "請循以下聯結重設你的密碼: {link}", +"Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", "You will receive a link to reset your password via Email." => "重設密碼的連結將會寄到你的電子郵件信箱。", "Reset email send." => "重設郵件已送出。", "Request failed!" => "請求失敗!", "Username" => "使用者名稱", "Request reset" => "請求重設", -"Your password was reset" => "你的密碼已重設", +"Your password was reset" => "您的密碼已重設", "To login page" => "至登入頁面", "New password" => "新密碼", "Reset password" => "重設密碼", @@ -103,12 +103,12 @@ "Admin" => "管理者", "Help" => "幫助", "Access forbidden" => "存取被拒", -"Cloud not found" => "未發現雲", +"Cloud not found" => "未發現雲端", "Edit categories" => "編輯分類", "Add" => "增加", "Security Warning" => "安全性警告", -"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的PHP版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", -"Please update your PHP installation to use ownCloud securely." => "請更新您的PHP安裝以更安全地使用ownCloud。", +"Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)", +"Please update your PHP installation to use ownCloud securely." => "請更新您的 PHP 安裝以更安全地使用 ownCloud 。", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "沒有可用的亂數產生器,請啟用 PHP 中的 OpenSSL 擴充功能。", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "若沒有安全的亂數產生器,攻擊者可能可以預測密碼重設信物,然後控制您的帳戶。", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。", @@ -124,11 +124,11 @@ "Database tablespace" => "資料庫 tablespace", "Database host" => "資料庫主機", "Finish setup" => "完成設定", -"web services under your control" => "網路服務在您控制之下", +"web services under your control" => "由您控制的網路服務", "Log out" => "登出", "Automatic logon rejected!" => "自動登入被拒!", "If you did not change your password recently, your account may be compromised!" => "如果您最近並未更改密碼,您的帳號可能已經遭到入侵!", -"Please change your password to secure your account again." => "請更改您的密碼以再次取得您的帳戶的控制權。", +"Please change your password to secure your account again." => "請更改您的密碼以再次取得您帳戶的控制權。", "Lost your password?" => "忘記密碼?", "remember" => "記住", "Log in" => "登入", diff --git a/core/setup.php b/core/setup.php index b61590e9e4b581c31c1a89d497bd85970655f432..40e30db533aaca594be9586975a22eeadebd22b1 100644 --- a/core/setup.php +++ b/core/setup.php @@ -19,7 +19,7 @@ $hasOracle = is_callable('oci_connect'); $hasMSSQL = is_callable('sqlsrv_connect'); $datadir = OC_Config::getValue('datadirectory', OC::$SERVERROOT.'/data'); $vulnerableToNullByte = false; -if(file_exists(__FILE__."\0Nullbyte")) { // Check if the used PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243) +if(@file_exists(__FILE__."\0Nullbyte")) { // Check if the used PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243) $vulnerableToNullByte = true; } diff --git a/core/templates/installation.php b/core/templates/installation.php index c70903cba552ae4f3a3d2c6f3ba37be830161fe1..de7ff8c168cfbafd4e1c1dbb1656671fd5ed6055 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -63,6 +63,7 @@
" value="" />
@@ -138,9 +139,11 @@ value="" autocomplete="off" />

- - + + +

diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 9af56b72c331a00c2b7066a788a59ee340d591d3..cfe0a5519434fbff5ea01615d780e6bdd5d816d5 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -75,7 +75,9 @@ class="active"> - + + + diff --git a/core/templates/login.php b/core/templates/login.php index 2c9884f52469f8963887493b9441aee1c7eade02..571e0a865d96bcc959439b4530330672e5a471f1 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -4,23 +4,14 @@ '); } ?> -

    - -
  • - t('Automatic logon rejected!')); ?>
    - t('If you did not change your password recently, your account may be compromised!')); ?> -
    - t('Please change your password to secure your account again.')); ?> -
  • - - - -
  • - t('Lost your password?')); ?> -
  • -
    - -
+ +
+ t('Automatic logon rejected!')); ?>
+ t('If you did not change your password recently, your account may be compromised!')); ?> +
+ t('Please change your password to secure your account again.')); ?> +
+

@@ -37,6 +28,13 @@

+ + + + t('Lost your password?')); ?> + + + diff --git a/cron.php b/cron.php index 086f96f3665acafb658ce556447f9c0e2419c117..7c875843c7545adc8e1463a111a74ad94c560929 100644 --- a/cron.php +++ b/cron.php @@ -21,7 +21,7 @@ */ // Unfortunately we need this class for shutdown function -class my_temporary_cron_class { +class TemporaryCronClass { public static $sent = false; public static $lockfile = ""; public static $keeplock = false; @@ -30,12 +30,12 @@ class my_temporary_cron_class { // We use this function to handle (unexpected) shutdowns function handleUnexpectedShutdown() { // Delete lockfile - if( !my_temporary_cron_class::$keeplock && file_exists( my_temporary_cron_class::$lockfile )) { - unlink( my_temporary_cron_class::$lockfile ); + if( !TemporaryCronClass::$keeplock && file_exists( TemporaryCronClass::$lockfile )) { + unlink( TemporaryCronClass::$lockfile ); } // Say goodbye if the app did not shutdown properly - if( !my_temporary_cron_class::$sent ) { + if( !TemporaryCronClass::$sent ) { if( OC::$CLI ) { echo 'Unexpected error!'.PHP_EOL; } @@ -64,7 +64,7 @@ OC_Helper::cleanTmpNoClean(); // Exit if background jobs are disabled! $appmode = OC_BackgroundJob::getExecutionType(); if( $appmode == 'none' ) { - my_temporary_cron_class::$sent = true; + TemporaryCronClass::$sent = true; if( OC::$CLI ) { echo 'Background Jobs are disabled!'.PHP_EOL; } @@ -76,7 +76,7 @@ if( $appmode == 'none' ) { if( OC::$CLI ) { // Create lock file first - my_temporary_cron_class::$lockfile = OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ).'/cron.lock'; + TemporaryCronClass::$lockfile = OC_Config::getValue( "datadirectory", OC::$SERVERROOT.'/data' ).'/cron.lock'; // We call ownCloud from the CLI (aka cron) if( $appmode != 'cron' ) { @@ -85,15 +85,15 @@ if( OC::$CLI ) { } // check if backgroundjobs is still running - if( file_exists( my_temporary_cron_class::$lockfile )) { - my_temporary_cron_class::$keeplock = true; - my_temporary_cron_class::$sent = true; + if( file_exists( TemporaryCronClass::$lockfile )) { + TemporaryCronClass::$keeplock = true; + TemporaryCronClass::$sent = true; echo "Another instance of cron.php is still running!"; exit( 1 ); } // Create a lock file - touch( my_temporary_cron_class::$lockfile ); + touch( TemporaryCronClass::$lockfile ); // Work OC_BackgroundJob_Worker::doAllSteps(); @@ -112,5 +112,5 @@ else{ } // done! -my_temporary_cron_class::$sent = true; +TemporaryCronClass::$sent = true; exit(); diff --git a/db_structure.xml b/db_structure.xml index 575950455edfdf59b2d1066a67c3cafdf9e0e8ad..dce90697b1c5952bd6ac546aabde6d08700fed47 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -696,14 +696,6 @@ property_index - - propertyname - ascending - - - propertypath - ascending - userid ascending @@ -918,7 +910,6 @@ displayname text - true 64 diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 73f8c20027350ade76275ae211c90c0d89019da9..0cee119c30bdc6383f9dc5aeb5fafc2ca75d9d6f 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "Instellings" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,9 +238,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "sal gebruik word" msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Maak opstelling klaar" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index e864f4fc420285ec07719bbc2affce4a890935dc..46e77a89fa1304628793d1f59b5704a1b7193641 100644 --- a/l10n/af_ZA/files.po +++ b/l10n/af_ZA/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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/af_ZA/files_encryption.po b/l10n/af_ZA/files_encryption.po index 535d61f3944e2ad9099a07268529c8a148d1f446..ad2760165afda3a77ddf1efea710b3a3706e0d26 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/af_ZA/files_external.po b/l10n/af_ZA/files_external.po index d8d3d0197b653027605df01cc367b13c38844dc9..c832854e86b40d305e488e22f5e693d8eb3d1ca9 100644 --- a/l10n/af_ZA/files_external.po +++ b/l10n/af_ZA/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index 13198e5bec20f029ab3424944a060a6543497688..395e310b0b3fb582901ebc503beabdf9c79d4c48 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/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: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "Wagwoord" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "webdienste onder jou beheer" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index ab00b3efd96780ac1409f6633e0f35f2ff3409f5..d71f287f72e80dcd741c2b39c98ff7f01a4cc1a0 100644 --- a/l10n/af_ZA/files_trashbin.po +++ b/l10n/af_ZA/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index cf1a612ba6ed129afd9e8319b3984db150301695..b27e22d90aaa7c2462d4dbd24f1710d178a0252b 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 0aefa5d8a3d737d7f112b0ca0c62f4c909dc8636..6150500229118b5203ce138fbd115d3d11dd6a0e 100644 --- a/l10n/af_ZA/lib.po +++ b/l10n/af_ZA/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/af_ZA/settings.po b/l10n/af_ZA/settings.po index f1cfa82d304c0af4053d275fc378e255024ba401..83b7447a27845fad955470885b018cc46b5921b8 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Wagwoord" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hulp" diff --git a/l10n/af_ZA/user_webdavauth.po b/l10n/af_ZA/user_webdavauth.po index 5ccd72fea359c9b0cfd294d593cf7751d879156f..bb29159478ce7b7443eef28281d59c000a71ec69 100644 --- a/l10n/af_ZA/user_webdavauth.po +++ b/l10n/af_ZA/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-01 00:17+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 597e0b3f73ec86fd35c903725e2442fffc624260..487be693009d42fddaf14d124c8bf3e1a2ca259d 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: blackcoder \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -164,86 +164,88 @@ msgstr "كانون الاول" msgid "Settings" msgstr "تعديلات" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "منذ دقيقة" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} منذ دقائق" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "قبل ساعة مضت" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ساعة مضت" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "اليوم" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} يوم سابق" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} شهر مضت" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "سنة مضت" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "اختيار" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "موافق" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "الغاء" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "لا" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "اختيار" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "نعم" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "موافق" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "لا" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "نوع العنصر غير محدد." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "خطأ" @@ -263,7 +265,7 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" @@ -323,59 +325,59 @@ msgstr "مشاركة عبر البريد الإلكتروني:" msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "إنشاء" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "تحديث" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "حذف" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "مشاركة" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "تم ارسال البريد الالكتروني" @@ -535,23 +537,23 @@ msgstr "سيتم استخدمه" msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "انهاء التعديلات" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index 8c8d446e722c2acfe94d51535ecab53fea590b7e..56662a6ad736edc28de08572b762cc129b523aab 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Matalqah \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -72,7 +72,7 @@ msgstr "خطأ في الكتابة على القرص الصلب" msgid "Not enough storage available" msgstr "لا يوجد مساحة تخزينية كافية" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "مسار غير صحيح." @@ -92,39 +92,46 @@ msgstr "محذوف" msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "قيد الانتظار" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} موجود مسبقا" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "استبدال" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "اقترح إسم" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "إلغاء" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "استبدل {new_name} بـ {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "تراجع" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "جاري تنفيذ عملية الحذف" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "جاري رفع 1 ملف" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "\".\" اسم ملف غير صحيح." @@ -153,68 +160,60 @@ msgid "" "big." msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض الوقت اذا كان حجم الملفات كبير." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "فشل في رفع ملفاتك , إما أنها مجلد أو حجمها 0 بايت" -#: js/files.js:263 -msgid "Upload Error" -msgstr "خطأ في رفع الملفات" - -#: js/files.js:274 -msgid "Close" -msgstr "إغلق" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "جاري رفع 1 ملف" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "جاري رفع {count} ملفات" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "تم إلغاء عملية رفع الملفات ." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "عملية رفع الملفات قيد التنفيذ. اغلاق الصفحة سوف يلغي عملية رفع الملفات." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "عنوان ال URL لا يجوز أن يكون فارغا." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "خطأ" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "الاسم" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "حجم" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "معدل" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "مجلد عدد 1" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} مجلدات" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "ملف واحد" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} ملفات" diff --git a/l10n/ar/files_encryption.po b/l10n/ar/files_encryption.po index e11e221b6e2b02542015b13657abcffb23a7adb0..8ebdd5b0b95d65578301db74915570de9067f462 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 11:00+0000\n" -"Last-Translator: Raed667 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ar/files_external.po b/l10n/ar/files_external.po index d7c1d01ac437892069d65c18ae63a89393858f02..3a0cbd39490cb02577b8e6379dd3b3e2a838c458 100644 --- a/l10n/ar/files_external.po +++ b/l10n/ar/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index 92546656f2ff041f2cffa93cb908fe87829a3491..909d047e1467d26730e51463efd65cb1ede3eed0 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/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-12-23 00:09+0100\n" -"PO-Revision-Date: 2012-12-22 19:42+0000\n" -"Last-Translator: aboodilankaboot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "كلمة المرور" msgid "Submit" msgstr "تطبيق" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "تحميل" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "خدمات الشبكة تحت سيطرتك" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index d62876c8c0b93fe4e27850a7b6e098f2c4cc5404..be9ba8516994432fe94f2332048a1c6ffcec884f 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 22:01+0000\n" -"Last-Translator: blackcoder \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,6 +32,10 @@ msgstr "تعذّر استرجاع %s " msgid "perform restore operation" msgstr "إبدء عملية الإستعادة" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "خطأ" + #: js/trash.js:34 msgid "delete file permanently" msgstr "حذف بشكل دائم" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index c086e82cd3196102a8f8ca536ddd92f42d5e8af3..0ef6f3e755ef57e339f225ea4c6e862e7d8a3b5b 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 01a1e5169f26ee3ddc91fc78d82b75ff6ba24f72..eef5380b767208ee99aee604ac6e157253b18312 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ahmad Matalqah , 2013. +# Matalqah , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Matalqah \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -94,10 +94,6 @@ msgstr "اعداد اسم مستخدم للمدير" msgid "Set an admin password." msgstr "اعداد كلمة مرور للمدير" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "تحديد مجلد " - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 16efc1fce657dee97c77af30a29e93b665c54c54..125a75204152c3897ea5820d0fdac0fba08b6d6c 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 11:00+0000\n" -"Last-Translator: Matalqah \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -97,7 +97,7 @@ msgstr "تم التحديث الى " msgid "Disable" msgstr "إيقاف" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "تفعيل" @@ -105,64 +105,64 @@ msgstr "تفعيل" msgid "Please wait...." msgstr "الرجاء الانتظار ..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "خطأ" + +#: js/apps.js:90 msgid "Updating...." msgstr "جاري التحديث ..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "حصل خطأ أثناء تحديث التطبيق" -#: js/apps.js:87 -msgid "Error" -msgstr "خطأ" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "تم التحديث بنجاح" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "حفظ" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "تم الحذف" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "تراجع" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "تعذر حذف المستخدم" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "مجموعات" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "مدير المجموعة" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "حذف" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "اضافة مجموعة" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "يجب ادخال اسم مستخدم صحيح" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "حصل خطأ اثناء انشاء مستخدم" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "يجب ادخال كلمة مرور صحيحة" @@ -321,11 +321,15 @@ msgstr "مستوى السجل" msgid "More" msgstr "المزيد" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "أقل" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "إصدار" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "كلمة المرور" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "المساعدة" diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index 14d1b06562b22ca8ca2d6973f0456e87956506dd..7defa1d4b06c9eb4e5a7015e5bb45b6dc8f484c4 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 21:50+0000\n" -"Last-Translator: blackcoder \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/be/core.po b/l10n/be/core.po index 265ab2c4dc869a9fa9e4370ddf695e21d017d892..daa1be716a79d88b6a163261c54912e704b4b32f 100644 --- a/l10n/be/core.po +++ b/l10n/be/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: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,9 +238,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завяршыць ўстаноўку." diff --git a/l10n/be/files.po b/l10n/be/files.po index 5c01708ef4db86195177a8cbc7c2a10f546630a9..ec67242474b774f0734029581a96752078c99205 100644 --- a/l10n/be/files.po +++ b/l10n/be/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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/be/files_encryption.po b/l10n/be/files_encryption.po index f1aff43a6c5a1683710bcbe11a050e005d481451..f0897fc482ea10c9496085c8b325e1eec119ae9d 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/be/files_external.po b/l10n/be/files_external.po index 016c8149190f930e448856d5afa9ba1afc6280ef..05c52d24758f6eba577aff4253eff266a1c334eb 100644 --- a/l10n/be/files_external.po +++ b/l10n/be/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index c09045efa9b7bfb0877fbea5fe066cf545449ccb..2fb3fa7b5c3934c772e06815c4b578e6929b8b05 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/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: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 79e1f2ab9e49b142891dd54e32c9f6d119b2cfae..cd40cf486ae298de4722757d17e481d94e07194b 100644 --- a/l10n/be/files_trashbin.po +++ b/l10n/be/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/be/files_versions.po b/l10n/be/files_versions.po index 8b4294e5f202ba0032637496d0b30c6a677aea8c..a04f5ae5a2310c8a65df8b1a1ce2ebdd4dd9eaed 100644 --- a/l10n/be/files_versions.po +++ b/l10n/be/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 1759595aea3442911faee8cfe7549778e98b8535..13d868719d5568cf129590a0e74fd0472164b354 100644 --- a/l10n/be/lib.po +++ b/l10n/be/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -117,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/be/settings.po b/l10n/be/settings.po index 22ae916f22aafbce6068102e85bb9022550a5264..cf3755961301141005da7edb90b1baeb5e9df22f 100644 --- a/l10n/be/settings.po +++ b/l10n/be/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/be/user_webdavauth.po b/l10n/be/user_webdavauth.po index 16028ee79d808030b822e498304ac99d017c26c9..9e0304b10bc8e81f89232ee3c7986573be82eff3 100644 --- a/l10n/be/user_webdavauth.po +++ b/l10n/be/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:05+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index bdb83f2a72bc5a989884ef9af3c48854d806c268..73f65ac14345372a0ac3e3fb98e5066078ccc4ba 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -164,76 +164,76 @@ msgstr "" msgid "Settings" msgstr "Настройки" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "преди 1 минута" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "преди 1 час" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "днес" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "последният месец" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "последната година" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "последните години" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отказ" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -241,9 +241,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Грешка" @@ -263,7 +265,7 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -323,59 +325,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -535,23 +537,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 73079f4fcd557d37972137f51922691f78badbb5..1e12a345fe668831e76396dfea430602147faf3d 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -72,7 +72,7 @@ msgstr "Възникна проблем при запис в диска" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Невалидна директория." @@ -92,39 +92,46 @@ msgstr "Изтриване" msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Чакащо" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "препокриване" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "отказ" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "възтановяване" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -153,68 +160,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Възникна грешка при качването" - -#: js/files.js:274 -msgid "Close" -msgstr "Затвори" - -#: js/files.js:313 -msgid "1 file uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Качването е спряно." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Грешка" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Име" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Размер" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Променено" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 папка" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 файл" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} файла" diff --git a/l10n/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 4ec6da246a3540490bd731e7fc8b3535af2b2212..5f2bd2b9f5dbdb8c1e5a2665604738e92ec3c890 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bg_BG/files_external.po b/l10n/bg_BG/files_external.po index a6df90bcaa31568125d25f24a536f6440f38f78a..0e80e601f247ab747c5239f2f97ebab649610235 100644 --- a/l10n/bg_BG/files_external.po +++ b/l10n/bg_BG/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 0d7fe218e8cb96dcfe99e57b83ab8edb8ca820fb..18f3a9f6d7a0700addc4ee3981a83db707d7e159 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/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: 2013-01-10 00:04+0100\n" -"PO-Revision-Date: 2013-01-09 20:45+0000\n" -"Last-Translator: Stefan Ilivanov \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Парола" msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Няма наличен преглед за" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "уеб услуги под Ваш контрол" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index 794a8d34f60e021c87c0686efe31c4ea70545773..cf61ec83cae71095b3cced358ded0da133ed29dc 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Невъзможно изтриване на %s завинаги" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" @@ -33,6 +33,10 @@ msgstr "Невъзможно възтановяване на %s" msgid "perform restore operation" msgstr "извършване на действие по възстановяване" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Грешка" + #: js/trash.js:34 msgid "delete file permanently" msgstr "изтриване на файла завинаги" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index 895db875d9a5bcc9565ba01505ae024ee68f5024..b88246549b4684641dd57d942c4af82173c3f7af 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 154126f65177f395f6f84738d13bb4e95a130f1b..0ae91bad8eff8b8fb746ba58ac01f4f6f8be8328 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Kiril , 2013. -# Stefan Ilivanov , 2013. +# Kiril , 2013 +# Stefan Ilivanov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Kiril \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,10 +95,6 @@ msgstr "Въведете потребителско име за админист msgid "Set an admin password." msgstr "Въведете парола за администратор." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Укажете папка за данни" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 4a17d6cb1fdfb1ffec288143af01c22a83db07a1..c6d607a17e7aaf4ebb3edbc22cafe3822e369923 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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 16:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -95,7 +95,7 @@ msgstr "" msgid "Disable" msgstr "Изключено" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Включено" @@ -103,64 +103,64 @@ msgstr "Включено" msgid "Please wait...." msgstr "Моля почакайте...." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Грешка" + +#: js/apps.js:90 msgid "Updating...." msgstr "Обновява се..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Грешка" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Обновено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Записване..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "изтрито" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "възтановяване" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Изтриване" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -319,11 +319,15 @@ msgstr "" msgid "More" msgstr "Още" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "По-малко" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Версия" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Парола" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Помощ" diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index c541db398fdb852ae9f80a3e6f2fa46d27932459..606fb7fe9c7ed66450ad3723e337fe0c2450f0ad 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index aa67e8b68f495604eb21a538e6ae82713eadb295..47cccfcd63276c5078f774d0f1c433eb0cbaf749 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -162,86 +162,88 @@ msgstr "ডিসেম্বর" msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 মিনিট পূর্বে" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} মিনিট পূর্বে" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ঘন্টা পূর্বে" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ঘন্টা পূর্বে" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "আজ" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} দিন পূর্বে" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "গতমাস" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} মাস পূর্বে" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "গত বছর" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "বছর পূর্বে" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "বেছে নিন" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "তথাস্তু" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "বাতির" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "না" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "বেছে নিন" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "হ্যাঁ" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "তথাস্তু" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "না" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "অবজেক্টের ধরণটি সুনির্দিষ্ট নয়।" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "সমস্যা" @@ -261,7 +263,7 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " @@ -321,59 +323,59 @@ msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "ভাগাভাগি বাতিল কর" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "ই-মেইল পাঠানো হয়েছে" @@ -533,23 +535,23 @@ msgstr "ব্যবহৃত হবে" msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index bf2845409d824a5e52b5bd39ed5f4141709a5bb1..9a39dab1c1561cfa5711ace95316faef23d9011e 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "ডিস্কে লিখতে ব্যর্থ" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ভুল ডিরেক্টরি" @@ -91,39 +91,46 @@ msgstr "মুছে ফেল" msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "মুলতুবি" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} টি বিদ্যমান" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "প্রতিস্থাপন" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "নাম সুপারিশ করুন" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "বাতিল" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "১টি ফাইল আপলোড করা হচ্ছে" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "টি একটি অননুমোদিত নাম।" @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "আপনার ফাইলটি আপলোড করা সম্ভব হলো না, কেননা এটি হয় একটি ফোল্ডার কিংবা এর আকার ০ বাইট" -#: js/files.js:263 -msgid "Upload Error" -msgstr "আপলোড করতে সমস্যা " - -#: js/files.js:274 -msgid "Close" -msgstr "বন্ধ" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "যথেষ্ঠ পরিমাণ স্থান নেই" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "১টি ফাইল আপলোড করা হচ্ছে" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} টি ফাইল আপলোড করা হচ্ছে" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "আপলোড বাতিল করা হয়েছে।" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ফাইল আপলোড চলমান। এই পৃষ্ঠা পরিত্যাগ করলে আপলোড বাতিল করা হবে।" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL ফাঁকা রাখা যাবে না।" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "সমস্যা" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "নাম" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "আকার" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "১টি ফোল্ডার" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} টি ফোল্ডার" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "১টি ফাইল" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} টি ফাইল" diff --git a/l10n/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 7c8a89fc3b7a199225ab7099eece613a103fe572..0bcc04a1797d722d0576df0367708b4f1c9ca07b 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/files_external.po b/l10n/bn_BD/files_external.po index 840f97b24990cc11e07b6ecc801644b40c68e2aa..a277faf06483355949e98c86804654c9ee3a3e3b 100644 --- a/l10n/bn_BD/files_external.po +++ b/l10n/bn_BD/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "দয়া করে সঠিক এবং বৈধ Dropbox app key and msgid "Error configuring Google Drive storage" msgstr "Google Drive সংরক্ষণাগার নির্ধারণ করতে সমস্যা " -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 55a97e9d95cc3b6b59099a078178e94d73ec069e..00d132cd17afca47544efa779b7295d64305a89d 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/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: 2013-01-11 00:05+0100\n" -"PO-Revision-Date: 2013-01-10 09:58+0000\n" -"Last-Translator: Shubhra Paul \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "কূটশব্দ" msgid "Submit" msgstr "জমা দাও" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "ওয়েব সার্ভিস আপনার হাতের মুঠোয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index d4cfe626a62b961a19c02223c2495e08d1f33160..5327ace1423b1e34d8020a8632be4147a0a34b93 100644 --- a/l10n/bn_BD/files_trashbin.po +++ b/l10n/bn_BD/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "সমস্যা" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 446a2d3471cbb16ae0b862435f561fccf9389813..72d49d3c8c7ec65c7f1392b502d1bac92d05ddc8 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index c9df48c68387fc48142808a19d6e91f9f4515768..0509e1a16ddbabae46a79dc499ff5f23f7d868be 100644 --- a/l10n/bn_BD/lib.po +++ b/l10n/bn_BD/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index 609d01de0bf9aaf096fd8beec865ec65d2c8801d..f70b3f4d8d3f3a791b1c62116c0002cc38d9e781 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -93,7 +93,7 @@ msgstr "" msgid "Disable" msgstr "নিষ্ক্রিয়" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "সক্রিয় " @@ -101,64 +101,64 @@ msgstr "সক্রিয় " msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "সমস্যা" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "সমস্যা" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "সংরক্ষণ করা হচ্ছে.." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "গোষ্ঠীসমূহ" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "গোষ্ঠী প্রশাসক" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "মুছে ফেল" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -317,11 +317,15 @@ msgstr "" msgid "More" msgstr "বেশী" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "কম" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index 6bf9079f19bb0285006dd7aa490cbdde3efaed66..e5c329e580b76d124bcc1e24e841e7192d959e8b 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL:http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ca/core.po b/l10n/ca/core.po index bddc798b035cf5d958439048c45c55967cc7a6a1..a619724318e5e44c2e841711581abbbec6e73bc8 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -164,86 +164,88 @@ msgstr "Desembre" msgid "Settings" msgstr "Arranjament" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "fa 1 minut" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "fa {minutes} minuts" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "fa 1 hora" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "fa {hours} hores" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "avui" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ahir" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "fa {days} dies" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "el mes passat" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "fa {months} mesos" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "l'any passat" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "anys enrere" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escull" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "D'acord" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancel·la" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escull" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "D'acord" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "No s'ha especificat el tipus d'objecte." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Error" @@ -263,7 +265,7 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Error en compartir" @@ -323,59 +325,59 @@ msgstr "Comparteix per correu electrònic" msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "pot editar" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "control d'accés" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "crea" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "actualitza" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "elimina" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "comparteix" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data d'expiració" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Error en establir la data d'expiració" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -535,23 +537,23 @@ msgstr "s'usarà" msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Acaba la configuració" diff --git a/l10n/ca/files.po b/l10n/ca/files.po index f7cd52792be07fe0af79dccdda857b8d6596586f..ae6109e30ff78ffd2b96f553e3529b93f769a4ce 100644 --- a/l10n/ca/files.po +++ b/l10n/ca/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -77,7 +77,7 @@ msgstr "Ha fallat en escriure al disc" msgid "Not enough storage available" msgstr "No hi ha prou espai disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directori no vàlid." @@ -97,39 +97,46 @@ msgstr "Suprimeix" msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Pendents" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} ja existeix" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "substitueix" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "sugereix un nom" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "cancel·la" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "s'ha substituït {old_name} per {new_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "desfés" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "executa d'operació d'esborrar" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 fitxer pujant" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "fitxers pujant" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' és un nom no vàlid per un fitxer." @@ -158,68 +165,60 @@ msgid "" "big." msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són grans." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No es pot pujar el fitxer perquè és una carpeta o té 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Error en la pujada" - -#: js/files.js:274 -msgid "Close" -msgstr "Tanca" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 fitxer pujant" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} fitxers en pujada" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "No hi ha prou espai disponible" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "La pujada s'ha cancel·lat." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "La URL no pot ser buida" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Error" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nom" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Mida" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificat" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} carpetes" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fitxer" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} fitxers" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 98f7c39d55d97267260364d1d740c03dbae29787..951708dd5231c4e1e15aaabededfa46796acc7e2 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ca/files_external.po b/l10n/ca/files_external.po index 47984036986ba51c1604b6450eccd21f550b7775..bd05bbeecc70e455bedacb4cff90abd0f5600d2b 100644 --- a/l10n/ca/files_external.po +++ b/l10n/ca/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -39,13 +39,13 @@ msgstr "Proporcioneu una clau d'aplicació i secret vàlids per a Dropbox" msgid "Error configuring Google Drive storage" msgstr "Error en configurar l'emmagatzemament Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avís: \"smbclient\" no està instal·lat. No es pot muntar la compartició CIFS/SMB. Demaneu a l'administrador del sistema que l'instal·li." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index 682f63bb56b516691a90306c35828cfe98ddd936..d4394d00f77050bafa1a1188bbb4527783e2d4d9 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/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-10-02 02:02+0200\n" -"PO-Revision-Date: 2012-10-01 08:50+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Baixa" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "controleu els vostres serveis web" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 5b2e39179cf54ff8e75fbad2bf01b48174bd3f67..e06aadb4b68b1aadce3d09ce1d48497c41fae076 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "No s'ha pogut esborrar permanentment %s" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" @@ -32,6 +32,10 @@ msgstr "No s'ha pogut restaurar %s" msgid "perform restore operation" msgstr "executa l'operació de restauració" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Error" + #: js/trash.js:34 msgid "delete file permanently" msgstr "esborra el fitxer permanentment" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index 8aeff6e34cd440b4c48d685cbf63d66ca90c6a79..9b325d09663ca7dc35d141cdf2dbf39e68f1293b 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 11:20+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -43,11 +43,11 @@ msgstr "fallada" msgid "File %s could not be reverted to version %s" msgstr "El fitxer %s no s'ha pogut revertir a la versió %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hi ha versións antigues disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "No heu especificat el camí" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index c252e933fc0d100b9f70d3d95b2ce2d2611102f9..29f4a9f8ac7c815f1746abe0aad57195533908db 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012-2013. +# rogerc , 2013 +# rogerc , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -95,10 +95,6 @@ msgstr "Establiu un nom d'usuari per l'administrador." msgid "Set an admin password." msgstr "Establiu una contrasenya per l'administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifiqueu una carpeta de dades." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 6db4edeb8bb9798dc8c9035cc2a0452a46d2d684..57ef354d7cb51b2c1931978e48056d3177807b16 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 11:20+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -98,7 +98,7 @@ msgstr "Actualitza a {appversion}" msgid "Disable" msgstr "Desactiva" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activa" @@ -106,64 +106,64 @@ msgstr "Activa" msgid "Please wait...." msgstr "Espereu..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Error" + +#: js/apps.js:90 msgid "Updating...." msgstr "Actualitzant..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Error en actualitzar l'aplicació" -#: js/apps.js:87 -msgid "Error" -msgstr "Error" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Actualitzada" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "S'està desant..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "esborrat" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "desfés" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "No s'ha pogut eliminar l'usuari" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grups" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grup Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Suprimeix" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "afegeix grup" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Heu de facilitar un nom d'usuari vàlid" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error en crear l'usuari" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Heu de facilitar una contrasenya vàlida" @@ -322,11 +322,15 @@ msgstr "Nivell de registre" msgid "More" msgstr "Més" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Menys" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versió" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index bd7df15438f42dbfd1dc3219f0fcd09768d8f727..bcde4299fd412857b476dfc90bbd06072997040a 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 07:22+0000\n" -"Last-Translator: rogerc \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -26,7 +26,7 @@ msgstr "Autenticació WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index bb56f2d9241d0c59559d9531360e7864b36293e9..0db794fe6ca1a8de8aac0de154abdb567021d60b 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jan Krejci , 2011. -# Martin , 2011-2012. -# Michal Hrušecký , 2012. -# Tomáš Chvátal , 2012-2013. +# Jan Krejci , 2011 +# Martin , 2011-2012 +# Michal Hrušecký , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 11:21+0000\n" +"Last-Translator: cernydav \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" @@ -164,86 +164,88 @@ msgstr "Prosinec" msgid "Settings" msgstr "Nastavení" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "před minutou" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "před {minutes} minutami" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "před hodinou" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "před {hours} hodinami" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "dnes" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "včera" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "před {days} dny" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "minulý mesíc" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "před {months} měsíci" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "před měsíci" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "minulý rok" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "před lety" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Vybrat" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Zrušit" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Vybrat" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ano" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Není určen typ objektu." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Chyba" @@ -263,7 +265,7 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Chyba při sdílení" @@ -295,7 +297,7 @@ msgstr "Sdílet s odkazem" msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Heslo" @@ -323,59 +325,59 @@ msgstr "Sdílet e-mailem:" msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "vytvořit" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "aktualizovat" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "smazat" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "sdílet" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Odesílám..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-mail odeslán" @@ -411,7 +413,7 @@ msgid "Request failed!" msgstr "Požadavek selhal." #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Uživatelské jméno" @@ -521,37 +523,37 @@ msgstr "Pokročilé" msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Dokončit nastavení" @@ -563,33 +565,33 @@ msgstr "webové služby pod Vaší kontrolou" msgid "Log out" msgstr "Odhlásit se" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatické přihlášení odmítnuto." -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Ztratili jste své heslo?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "zapamatovat" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Přihlásit" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternativní přihlášení" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index dfa5fe3d6729328f20037fcc3b6c24e17d297e5e..d5d74b7b838dc8c0c2782766d665889ad73e9554 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,7 +73,7 @@ msgstr "Zápis na disk selhal" msgid "Not enough storage available" msgstr "Nedostatek dostupného úložného prostoru" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Neplatný adresář" @@ -93,39 +93,46 @@ msgstr "Smazat" msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Čekající" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} již existuje" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "nahradit" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "navrhnout název" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "zrušit" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "nahrazeno {new_name} s {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "zpět" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "provést smazání" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "odesílá se 1 soubor" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "soubory se odesílají" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' je neplatným názvem souboru." @@ -154,68 +161,60 @@ msgid "" "big." msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo má velikost 0 bajtů" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Chyba odesílání" - -#: js/files.js:274 -msgid "Close" -msgstr "Zavřít" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nedostatek dostupného místa" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "odesílá se 1 soubor" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "odesílám {count} souborů" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Odesílání zrušeno." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL nemůže být prázdná" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Chyba" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Název" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Velikost" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Změněno" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 složka" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} složky" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 soubor" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} soubory" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 566eff0e84ab5771fa773761edcb96b4f8fb35ff..cf291239f34808658786c849d6b7283058808dc2 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index 910268632e1688c9f9cb8ca0aa3d09e410bf6123..fe3dea1568f88a7a2fdda6a729e66fd00f84f7df 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,13 +41,13 @@ msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbo msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index bf14914d7660317ea07413f42b592e5ad8787204..c68599b2ae873d1a44b109d3b0c20424308da7ab 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/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-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:59+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,24 +28,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odeslat" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Náhled není dostupný pro" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "služby webu pod Vaší kontrolou" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 3f6246643a0acc2248e87075f854c6e7b2444342..48adf5d966f6077cf421d10897d70311a7e361cb 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nelze trvale odstranit %s" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" @@ -32,6 +32,10 @@ msgstr "Nelze obnovit %s" msgid "perform restore operation" msgstr "provést obnovu" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Chyba" + #: js/trash.js:34 msgid "delete file permanently" msgstr "trvale odstranit soubor" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 30a2abc5e8006cfab92f105ef2c81068294bd99f..1425b506984b338521df18d9abada96dccf6f1a4 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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -42,11 +42,11 @@ msgstr "sehlhání" msgid "File %s could not be reverted to version %s" msgstr "Soubor %s nemohl být navrácen na verzi %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nejsou dostupné žádné starší verze" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nezadána cesta" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index 46d2847f738b409d790a8c6f2c31ec84a8e0a15f..aeba218b379cec54c98c4a688dfab701ba9150ca 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Martin , 2012. -# Tomáš Chvátal , 2012-2013. +# Martin , 2012 +# Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,10 +95,6 @@ msgstr "Zadejte uživatelské jméno správce." msgid "Set an admin password." msgstr "Zadejte heslo správce." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Určete složku dat." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 83e4c17fbf72fd890cccf4797cdf46d56d5f8b91..7cf113bc598d5aa5296dd12ff869a4254c5a2ff8 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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -98,7 +98,7 @@ msgstr "Aktualizovat na {appversion}" msgid "Disable" msgstr "Zakázat" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Povolit" @@ -106,64 +106,64 @@ msgstr "Povolit" msgid "Please wait...." msgstr "Čekejte prosím..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Chyba" + +#: js/apps.js:90 msgid "Updating...." msgstr "Aktualizuji..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Chyba při aktualizaci aplikace" -#: js/apps.js:87 -msgid "Error" -msgstr "Chyba" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Aktualizováno" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Ukládám..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "smazáno" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "zpět" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nelze odebrat uživatele" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupiny" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Správa skupiny" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Smazat" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "přidat skupinu" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Musíte zadat platné uživatelské jméno" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Chyba při vytváření užiatele" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Musíte zadat platné heslo" @@ -322,11 +322,15 @@ msgstr "Úroveň záznamu" msgid "More" msgstr "Více" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Méně" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Verze" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 28b3d2f8f195622c352a2d3d9de5d44ff002be4e..a7466ca6bf10e8f3fa66a7aefd4f2aa32eb02704 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 09:06+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "Ověření WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po new file mode 100644 index 0000000000000000000000000000000000000000..70dc34cea532310d7379f867e9216337c59ba5a5 --- /dev/null +++ b/l10n/cy_GB/core.po @@ -0,0 +1,606 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# ubuntucymraeg , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 14:10+0000\n" +"Last-Translator: ubuntucymraeg \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/share.php:97 +#, php-format +msgid "User %s shared a file with you" +msgstr "Rhannodd defnyddiwr %s ffeil â chi" + +#: ajax/share.php:99 +#, php-format +msgid "User %s shared a folder with you" +msgstr "Rhannodd defnyddiwr %s blygell â chi" + +#: ajax/share.php:101 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "Rhannodd defnyddiwr %s ffeil \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" + +#: ajax/share.php:104 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "Rhannodd defnyddiwr %s blygell \"%s\" â chi. Gellir ei llwytho lawr o fan hyn: %s" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "Math o gategori heb ei ddarparu." + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "Dim categori i'w ychwanegu?" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "Mae'r categori hwn eisoes yn bodoli: %s" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "Math o wrthrych heb ei ddarparu." + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "%s ID heb ei ddarparu." + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "Gwall wrth ychwanegu %s at ffefrynnau." + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "Ni ddewiswyd categorïau i'w dileu." + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "Gwall wrth dynnu %s o ffefrynnau." + +#: js/config.php:34 +msgid "Sunday" +msgstr "Sul" + +#: js/config.php:35 +msgid "Monday" +msgstr "Llun" + +#: js/config.php:36 +msgid "Tuesday" +msgstr "Mawrth" + +#: js/config.php:37 +msgid "Wednesday" +msgstr "Mercher" + +#: js/config.php:38 +msgid "Thursday" +msgstr "Iau" + +#: js/config.php:39 +msgid "Friday" +msgstr "Gwener" + +#: js/config.php:40 +msgid "Saturday" +msgstr "Sadwrn" + +#: js/config.php:45 +msgid "January" +msgstr "Ionawr" + +#: js/config.php:46 +msgid "February" +msgstr "Chwefror" + +#: js/config.php:47 +msgid "March" +msgstr "Mawrth" + +#: js/config.php:48 +msgid "April" +msgstr "Ebrill" + +#: js/config.php:49 +msgid "May" +msgstr "Mai" + +#: js/config.php:50 +msgid "June" +msgstr "Mehefin" + +#: js/config.php:51 +msgid "July" +msgstr "Gorffennaf" + +#: js/config.php:52 +msgid "August" +msgstr "Awst" + +#: js/config.php:53 +msgid "September" +msgstr "Medi" + +#: js/config.php:54 +msgid "October" +msgstr "Hydref" + +#: js/config.php:55 +msgid "November" +msgstr "Tachwedd" + +#: js/config.php:56 +msgid "December" +msgstr "Rhagfyr" + +#: js/js.js:286 +msgid "Settings" +msgstr "Gosodiadau" + +#: js/js.js:718 +msgid "seconds ago" +msgstr "eiliad yn ôl" + +#: js/js.js:719 +msgid "1 minute ago" +msgstr "1 munud yn ôl" + +#: js/js.js:720 +msgid "{minutes} minutes ago" +msgstr "{minutes} munud yn ôl" + +#: js/js.js:721 +msgid "1 hour ago" +msgstr "1 awr yn ôl" + +#: js/js.js:722 +msgid "{hours} hours ago" +msgstr "{hours} awr yn ôl" + +#: js/js.js:723 +msgid "today" +msgstr "heddiw" + +#: js/js.js:724 +msgid "yesterday" +msgstr "ddoe" + +#: js/js.js:725 +msgid "{days} days ago" +msgstr "{days} diwrnod yn ôl" + +#: js/js.js:726 +msgid "last month" +msgstr "mis diwethaf" + +#: js/js.js:727 +msgid "{months} months ago" +msgstr "{months} mis yn ôl" + +#: js/js.js:728 +msgid "months ago" +msgstr "misoedd yn ôl" + +#: js/js.js:729 +msgid "last year" +msgstr "y llynedd" + +#: js/js.js:730 +msgid "years ago" +msgstr "blwyddyn yn ôl" + +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Iawn" + +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 +msgid "Cancel" +msgstr "Diddymu" + +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Dewisiwch" + +#: js/oc-dialogs.js:215 +msgid "Yes" +msgstr "Ie" + +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Na" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 +msgid "Error" +msgstr "Gwall" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "Nid yw enw'r pecyn wedi cael ei nodi." + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "Nid yw'r ffeil ofynnol {file} wedi ei gosod!" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "Rhannwyd" + +#: js/share.js:90 +msgid "Share" +msgstr "Rhannu" + +#: js/share.js:125 js/share.js:617 +msgid "Error while sharing" +msgstr "Gwall wrth rannu" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "Gwall wrth ddad-rannu" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "Gwall wrth newid caniatâd" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "Rhannwyd â chi gan {owner}" + +#: js/share.js:159 +msgid "Share with" +msgstr "Rhannu gyda" + +#: js/share.js:164 +msgid "Share with link" +msgstr "Dolen ar gyfer rhannu" + +#: js/share.js:167 +msgid "Password protect" +msgstr "Diogelu cyfrinair" + +#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +msgid "Password" +msgstr "Cyfrinair" + +#: js/share.js:173 +msgid "Email link to person" +msgstr "E-bostio dolen at berson" + +#: js/share.js:174 +msgid "Send" +msgstr "Anfon" + +#: js/share.js:178 +msgid "Set expiration date" +msgstr "Gosod dyddiad dod i ben" + +#: js/share.js:179 +msgid "Expiration date" +msgstr "Dyddiad dod i ben" + +#: js/share.js:211 +msgid "Share via email:" +msgstr "Rhannu drwy e-bost:" + +#: js/share.js:213 +msgid "No people found" +msgstr "Heb ganfod pobl" + +#: js/share.js:251 +msgid "Resharing is not allowed" +msgstr "Does dim hawl ail-rannu" + +#: js/share.js:287 +msgid "Shared in {item} with {user}" +msgstr "Rhannwyd yn {item} â {user}" + +#: js/share.js:308 +msgid "Unshare" +msgstr "Dad-rannu" + +#: js/share.js:320 +msgid "can edit" +msgstr "yn gallu golygu" + +#: js/share.js:322 +msgid "access control" +msgstr "rheolaeth mynediad" + +#: js/share.js:325 +msgid "create" +msgstr "creu" + +#: js/share.js:328 +msgid "update" +msgstr "diweddaru" + +#: js/share.js:331 +msgid "delete" +msgstr "dileu" + +#: js/share.js:334 +msgid "share" +msgstr "rhannu" + +#: js/share.js:368 js/share.js:564 +msgid "Password protected" +msgstr "Diogelwyd â chyfrinair" + +#: js/share.js:577 +msgid "Error unsetting expiration date" +msgstr "Gwall wrth ddad-osod dyddiad dod i ben" + +#: js/share.js:589 +msgid "Error setting expiration date" +msgstr "Gwall wrth osod dyddiad dod i ben" + +#: js/share.js:604 +msgid "Sending ..." +msgstr "Yn anfon ..." + +#: js/share.js:615 +msgid "Email sent" +msgstr "Anfonwyd yr e-bost" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud." + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr." + +#: lostpassword/controller.php:48 +msgid "ownCloud password reset" +msgstr "ailosod cyfrinair ownCloud" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "Ailosod anfon e-bost." + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "Methodd y cais!" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 +#: templates/login.php:28 +msgid "Username" +msgstr "Enw defnyddiwr" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "Gwneud cais i ailosod" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ailosodwyd eich cyfrinair" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "I'r dudalen mewngofnodi" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Cyfrinair newydd" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Ailosod cyfrinair" + +#: strings.php:5 +msgid "Personal" +msgstr "Personol" + +#: strings.php:6 +msgid "Users" +msgstr "Defnyddwyr" + +#: strings.php:7 +msgid "Apps" +msgstr "Pecynnau" + +#: strings.php:8 +msgid "Admin" +msgstr "Gweinyddu" + +#: strings.php:9 +msgid "Help" +msgstr "Cymorth" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "Mynediad wedi'i wahardd" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "Methwyd canfod cwmwl" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "Golygu categorïau" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "Ychwanegu" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "Rhybudd Diogelwch" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel." + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Does dim cynhyrchydd rhifau hap diogel ar gael, galluogwch estyniad PHP OpenSSL." + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Heb gynhyrchydd rhifau hap diogel efallai y gall ymosodwr ragweld tocynnau ailosod cyfrinair a meddiannu eich cyfrif." + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "Mwy na thebyg fod modd cyrraeddd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth." + +#: templates/installation.php:44 +msgid "Create an admin account" +msgstr "Crewch gyfrif gweinyddol" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "Uwch" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "Plygell data" + +#: templates/installation.php:74 +msgid "Configure the database" +msgstr "Cyflunio'r gronfa ddata" + +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 +msgid "will be used" +msgstr "ddefnyddir" + +#: templates/installation.php:137 +msgid "Database user" +msgstr "Defnyddiwr cronfa ddata" + +#: templates/installation.php:144 +msgid "Database password" +msgstr "Cyfrinair cronfa ddata" + +#: templates/installation.php:149 +msgid "Database name" +msgstr "Enw cronfa ddata" + +#: templates/installation.php:159 +msgid "Database tablespace" +msgstr "Tablespace cronfa ddata" + +#: templates/installation.php:166 +msgid "Database host" +msgstr "Gwesteiwr cronfa ddata" + +#: templates/installation.php:172 +msgid "Finish setup" +msgstr "Gorffen sefydlu" + +#: templates/layout.guest.php:40 +msgid "web services under your control" +msgstr "gwasanaethau gwe a reolir gennych" + +#: templates/layout.user.php:58 +msgid "Log out" +msgstr "Allgofnodi" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "Gwrthodwyd mewngofnodi awtomatig!" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Os na wnaethoch chi newid eich cyfrinair yn ddiweddar, gall eich cyfrif fod yn anniogel!" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "Newidiwch eich cyfrinair i ddiogleu eich cyfrif eto." + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "Wedi colli'ch cyfrinair?" + +#: templates/login.php:41 +msgid "remember" +msgstr "cofio" + +#: templates/login.php:43 +msgid "Log in" +msgstr "Mewngofnodi" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "Mewngofnodiadau Amgen" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "blaenorol" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "nesaf" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Yn diweddaru owncloud i fersiwn %s, gall hyn gymryd amser." diff --git a/l10n/cy_GB/files.po b/l10n/cy_GB/files.po new file mode 100644 index 0000000000000000000000000000000000000000..21de4f158fa7a92e327524a5b3dd632711cbfb5c --- /dev/null +++ b/l10n/cy_GB/files.po @@ -0,0 +1,315 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# ubuntucymraeg , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"PO-Revision-Date: 2013-04-21 20:50+0000\n" +"Last-Translator: ubuntucymraeg \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "Methwyd symud %s" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "Methu ailenwi ffeil" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "Ni lwythwyd ffeil i fyny. Gwall anhysbys." + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "Does dim gwall, llwythodd y ffeil i fyny'n llwyddiannus" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb upload_max_filesize yn php.ini:" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML" + +#: ajax/upload.php:30 +msgid "The uploaded file was only partially uploaded" +msgstr "Dim ond yn rhannol y llwythwyd y ffeil i fyny" + +#: ajax/upload.php:31 +msgid "No file was uploaded" +msgstr "Ni lwythwyd ffeil i fyny" + +#: ajax/upload.php:32 +msgid "Missing a temporary folder" +msgstr "Plygell dros dro yn eisiau" + +#: ajax/upload.php:33 +msgid "Failed to write to disk" +msgstr "Methwyd ysgrifennu i'r ddisg" + +#: ajax/upload.php:51 +msgid "Not enough storage available" +msgstr "Dim digon o le storio ar gael" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "Cyfeiriadur annilys." + +#: appinfo/app.php:12 +msgid "Files" +msgstr "Ffeiliau" + +#: js/fileactions.js:125 +msgid "Delete permanently" +msgstr "Dileu'n barhaol" + +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +msgid "Delete" +msgstr "Dileu" + +#: js/fileactions.js:193 +msgid "Rename" +msgstr "Ailenwi" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +msgid "Pending" +msgstr "I ddod" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "{new_name} already exists" +msgstr "{new_name} yn bodoli'n barod" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "replace" +msgstr "amnewid" + +#: js/filelist.js:252 +msgid "suggest name" +msgstr "awgrymu enw" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "cancel" +msgstr "diddymu" + +#: js/filelist.js:299 +msgid "replaced {new_name} with {old_name}" +msgstr "newidiwyd {new_name} yn lle {old_name}" + +#: js/filelist.js:299 +msgid "undo" +msgstr "dadwneud" + +#: js/filelist.js:324 +msgid "perform delete operation" +msgstr "cyflawni gweithred dileu" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 ffeil yn llwytho i fyny" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "ffeiliau'n llwytho i fyny" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "Mae '.' yn enw ffeil annilys." + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "Does dim hawl cael enw ffeil gwag." + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Enw annilys, ni chaniateir, '\\', '/', '<', '>', ':', '\"', '|', '?' na '*'." + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "Mae eich storfa'n llawn, ni ellir diweddaru a chydweddu ffeiliau mwyach!" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "Mae eich storfa bron a bod yn llawn ({usedSpacePercent}%)" + +#: js/files.js:226 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau'n fawr." + +#: js/files.js:259 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "Methu llwytho'ch ffeil i fyny gan ei fod yn gyferiadur neu'n cynnwys 0 beit" + +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Dim digon o le ar gael" + +#: js/files.js:312 +msgid "Upload cancelled." +msgstr "Diddymwyd llwytho i fyny." + +#: js/files.js:408 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "Mae ffeiliau'n cael eu llwytho i fyny. Bydd gadael y dudalen hon nawr yn diddymu'r broses." + +#: js/files.js:481 +msgid "URL cannot be empty." +msgstr "Does dim hawl cael URL gwag." + +#: js/files.js:486 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Gwall" + +#: js/files.js:872 templates/index.php:70 +msgid "Name" +msgstr "Enw" + +#: js/files.js:873 templates/index.php:81 +msgid "Size" +msgstr "Maint" + +#: js/files.js:874 templates/index.php:83 +msgid "Modified" +msgstr "Addaswyd" + +#: js/files.js:893 +msgid "1 folder" +msgstr "1 blygell" + +#: js/files.js:895 +msgid "{count} folders" +msgstr "{count} plygell" + +#: js/files.js:903 +msgid "1 file" +msgstr "1 ffeil" + +#: js/files.js:905 +msgid "{count} files" +msgstr "{count} ffeil" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "Llwytho i fyny" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "Trafod ffeiliau" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "Maint mwyaf llwytho i fyny" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "mwyaf. posib:" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "Angen ar gyfer llwytho mwy nag un ffeil neu blygell i lawr yr un pryd." + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "Galluogi llwytho i lawr ZIP" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "0 yn ddiderfyn" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "Maint mewnbynnu mwyaf ffeiliau ZIP" + +#: templates/admin.php:26 +msgid "Save" +msgstr "Cadw" + +#: templates/index.php:7 +msgid "New" +msgstr "Newydd" + +#: templates/index.php:10 +msgid "Text file" +msgstr "Ffeil destun" + +#: templates/index.php:12 +msgid "Folder" +msgstr "Plygell" + +#: templates/index.php:14 +msgid "From link" +msgstr "Dolen o" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "Ffeiliau ddilewyd" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "Diddymu llwytho i fyny" + +#: templates/index.php:55 +msgid "You don’t have write permissions here." +msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." + +#: templates/index.php:62 +msgid "Nothing in here. Upload something!" +msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" + +#: templates/index.php:76 +msgid "Download" +msgstr "Llwytho i lawr" + +#: templates/index.php:88 templates/index.php:89 +msgid "Unshare" +msgstr "Dad-rannu" + +#: templates/index.php:108 +msgid "Upload too large" +msgstr "Maint llwytho i fyny'n rhy fawr" + +#: templates/index.php:110 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." + +#: templates/index.php:115 +msgid "Files are being scanned, please wait." +msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." + +#: templates/index.php:118 +msgid "Current scanning" +msgstr "Sganio cyfredol" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "Uwchraddio storfa system ffeiliau..." diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..6ffe72043a4ec6a2fcceb72b304c0cc56451e1ef --- /dev/null +++ b/l10n/cy_GB/files_encryption.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/cy_GB/files_external.po b/l10n/cy_GB/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..1b5cc6d42496118cc0a62a1aa1b83df15da03fc2 --- /dev/null +++ b/l10n/cy_GB/files_external.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 17:20+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:424 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:427 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "Defnyddwyr" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "Dileu" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..01a7b7ff6e51b3b57893b8429062d435d862f3fe --- /dev/null +++ b/l10n/cy_GB/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: +# ubuntucymraeg , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 15:00+0000\n" +"Last-Translator: ubuntucymraeg \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "Cyflwyno" + +#: templates/public.php:10 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "Rhannodd %s blygell %s â chi" + +#: templates/public.php:13 +#, php-format +msgid "%s shared the file %s with you" +msgstr "Rhannodd %s ffeil %s â chi" + +#: templates/public.php:19 templates/public.php:43 +msgid "Download" +msgstr "Llwytho i lawr" + +#: templates/public.php:40 +msgid "No preview available for" +msgstr "Does dim rhagolwg ar gael ar gyfer" + +#: templates/public.php:50 +msgid "web services under your control" +msgstr "gwasanaethau gwe a reolir gennych" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..5e9bb4d912a6b9124b59c0328053cb5dce976fed --- /dev/null +++ b/l10n/cy_GB/files_trashbin.po @@ -0,0 +1,85 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# ubuntucymraeg , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 21:10+0000\n" +"Last-Translator: ubuntucymraeg \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "Methwyd dileu %s yn barhaol" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "Methwyd adfer %s" + +#: js/trash.js:7 js/trash.js:96 +msgid "perform restore operation" +msgstr "gweithrediad adfer" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Gwall" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "dileu ffeil yn barhaol" + +#: js/trash.js:121 +msgid "Delete permanently" +msgstr "Dileu'n barhaol" + +#: js/trash.js:174 templates/index.php:17 +msgid "Name" +msgstr "Enw" + +#: js/trash.js:175 templates/index.php:27 +msgid "Deleted" +msgstr "Wedi dileu" + +#: js/trash.js:184 +msgid "1 folder" +msgstr "1 blygell" + +#: js/trash.js:186 +msgid "{count} folders" +msgstr "{count} plygell" + +#: js/trash.js:194 +msgid "1 file" +msgstr "1 ffeil" + +#: js/trash.js:196 +msgid "{count} files" +msgstr "{count} ffeil" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "Does dim byd yma. Mae eich bin sbwriel yn wag!" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "Adfer" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "Dileu" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "Ffeiliau Ddilewyd" diff --git a/l10n/cy_GB/files_versions.po b/l10n/cy_GB/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..0f19e914bb45c4b9cc9749c553a3d5b64bc42092 --- /dev/null +++ b/l10n/cy_GB/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..8a34f9cc6b7a5739eacdedcb04140df9ed88dbc4 --- /dev/null +++ b/l10n/cy_GB/lib.po @@ -0,0 +1,255 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# ubuntucymraeg , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 19:21+0000\n" +"Last-Translator: ubuntucymraeg \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: app.php:349 +msgid "Help" +msgstr "Cymorth" + +#: app.php:362 +msgid "Personal" +msgstr "Personol" + +#: app.php:373 +msgid "Settings" +msgstr "Gosodiadau" + +#: app.php:385 +msgid "Users" +msgstr "Defnyddwyr" + +#: app.php:398 +msgid "Apps" +msgstr "Pecynnau" + +#: app.php:406 +msgid "Admin" +msgstr "Gweinyddu" + +#: files.php:209 +msgid "ZIP download is turned off." +msgstr "Mae llwytho ZIP wedi ei ddiffodd." + +#: files.php:210 +msgid "Files need to be downloaded one by one." +msgstr "Mae angen llwytho ffeiliau i lawr fesul un." + +#: files.php:211 files.php:244 +msgid "Back to Files" +msgstr "Nôl i Ffeiliau" + +#: files.php:241 +msgid "Selected files too large to generate zip file." +msgstr "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip." + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "methwyd pennu" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "Nid yw'r pecyn wedi'i alluogi" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "Gwall dilysu" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "Tocyn wedi dod i ben. Ail-lwythwch y dudalen." + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "Ffeiliau" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "Testun" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "Delweddau" + +#: setup.php:34 +msgid "Set an admin username." +msgstr "Creu enw defnyddiwr i'r gweinyddwr." + +#: setup.php:37 +msgid "Set an admin password." +msgstr "Gosod cyfrinair y gweinyddwr." + +#: setup.php:55 +#, php-format +msgid "%s enter the database username." +msgstr "%s rhowch enw defnyddiwr y gronfa ddata." + +#: setup.php:58 +#, php-format +msgid "%s enter the database name." +msgstr "%s rhowch enw'r gronfa ddata." + +#: setup.php:61 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "%s does dim hawl defnyddio dot yn enw'r gronfa ddata" + +#: setup.php:64 +#, php-format +msgid "%s set the database host." +msgstr "%s gosod gwesteiwr y gronfa ddata." + +#: setup.php:132 setup.php:324 setup.php:369 +msgid "PostgreSQL username and/or password not valid" +msgstr "Enw a/neu gyfrinair PostgreSQL annilys" + +#: setup.php:133 setup.php:156 setup.php:233 +msgid "You need to enter either an existing account or the administrator." +msgstr "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr." + +#: setup.php:155 setup.php:457 setup.php:524 +msgid "Oracle username and/or password not valid" +msgstr "Enw a/neu gyfrinair Oracle annilys" + +#: setup.php:232 +msgid "MySQL username and/or password not valid" +msgstr "Enw a/neu gyfrinair MySQL annilys" + +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "Gwall DB: \"%s\"" + +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"" + +#: setup.php:303 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes." + +#: setup.php:304 +msgid "Drop this user from MySQL" +msgstr "Gollwng y defnyddiwr hwn o MySQL" + +#: setup.php:309 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli" + +#: setup.php:310 +msgid "Drop this user from MySQL." +msgstr "Gollwng y defnyddiwr hwn o MySQL." + +#: setup.php:583 setup.php:615 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s" + +#: setup.php:635 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "Enw a/neu gyfrinair MS SQL annilys: %s" + +#: setup.php:853 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." + +#: setup.php:854 +#, php-format +msgid "Please double check the installation guides." +msgstr "Gwiriwch y canllawiau gosod eto." + +#: template.php:113 +msgid "seconds ago" +msgstr "eiliad yn ôl" + +#: template.php:114 +msgid "1 minute ago" +msgstr "1 munud yn ôl" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "%d munud yn ôl" + +#: template.php:116 +msgid "1 hour ago" +msgstr "1 awr yn ôl" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "%d awr yn ôl" + +#: template.php:118 +msgid "today" +msgstr "heddiw" + +#: template.php:119 +msgid "yesterday" +msgstr "ddoe" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "%d diwrnod yn ôl" + +#: template.php:121 +msgid "last month" +msgstr "mis diwethaf" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "%d mis yn ôl" + +#: template.php:123 +msgid "last year" +msgstr "y llynedd" + +#: template.php:124 +msgid "years ago" +msgstr "blwyddyn yn ôl" + +#: updater.php:78 +#, php-format +msgid "%s is available. Get more information" +msgstr "%s ar gael. Mwy o wybodaeth" + +#: updater.php:81 +msgid "up to date" +msgstr "cyfredol" + +#: updater.php:84 +msgid "updates check is disabled" +msgstr "gwirio am ddiweddariadau wedi'i analluogi" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Methu canfod categori \"%s\"" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..9612ffbaf6b8331517a7c60f6842f0fc7241d28f --- /dev/null +++ b/l10n/cy_GB/settings.po @@ -0,0 +1,500 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 20:40+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "Gwall dilysu" + +#: ajax/changedisplayname.php:32 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Cais annilys" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Gwall" + +#: js/apps.js:90 +msgid "Updating...." +msgstr "" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:96 +msgid "Updated" +msgstr "" + +#: js/personal.js:109 +msgid "Saving..." +msgstr "" + +#: js/users.js:43 +msgid "deleted" +msgstr "" + +#: js/users.js:43 +msgid "undo" +msgstr "dadwneud" + +#: js/users.js:75 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:88 templates/users.php:26 templates/users.php:80 +#: templates/users.php:105 +msgid "Groups" +msgstr "" + +#: js/users.js:91 templates/users.php:82 templates/users.php:119 +msgid "Group Admin" +msgstr "" + +#: js/users.js:111 templates/users.php:161 +msgid "Delete" +msgstr "Dileu" + +#: js/users.js:262 +msgid "add group" +msgstr "" + +#: js/users.js:414 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:415 js/users.js:421 js/users.js:436 +msgid "Error creating user" +msgstr "" + +#: js/users.js:420 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:29 personal.php:30 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "Rhybudd Diogelwch" + +#: templates/admin.php:18 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "Gwiriwch y canllawiau gosod eto." + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This ownCloud server has no working internet connection. This means that " +"some of the features like mounting of external storage, notifications about " +"updates or installation of 3rd party apps don´t work. Accessing files from " +"remote and sending of notification emails might also not work. We suggest to" +" enable internet connection for this server if you want to have all features" +" of ownCloud." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:121 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:150 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:158 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:168 +msgid "Security" +msgstr "" + +#: templates/admin.php:181 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:182 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:185 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:195 +msgid "Log" +msgstr "" + +#: templates/admin.php:196 +msgid "Log level" +msgstr "" + +#: templates/admin.php:227 +msgid "More" +msgstr "" + +#: templates/admin.php:228 +msgid "Less" +msgstr "" + +#: templates/admin.php:235 templates/personal.php:102 +msgid "Version" +msgstr "" + +#: templates/admin.php:238 templates/personal.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:11 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:12 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:28 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:34 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:36 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:38 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:15 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:26 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:37 templates/users.php:23 templates/users.php:79 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/personal.php:38 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:39 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:40 +msgid "Current password" +msgstr "" + +#: templates/personal.php:42 +msgid "New password" +msgstr "Cyfrinair newydd" + +#: templates/personal.php:44 +msgid "Change password" +msgstr "" + +#: templates/personal.php:56 templates/users.php:78 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:57 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:58 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:61 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:70 +msgid "Email" +msgstr "" + +#: templates/personal.php:72 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:73 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:79 templates/personal.php:80 +msgid "Language" +msgstr "" + +#: templates/personal.php:86 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:91 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:93 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:77 +msgid "Login Name" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:41 templates/users.php:139 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:59 templates/users.php:154 +msgid "Other" +msgstr "Arall" + +#: templates/users.php:84 +msgid "Storage" +msgstr "" + +#: templates/users.php:95 +msgid "change display name" +msgstr "" + +#: templates/users.php:99 +msgid "set new password" +msgstr "" + +#: templates/users.php:134 +msgid "Default" +msgstr "" diff --git a/l10n/cy_GB/user_ldap.po b/l10n/cy_GB/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..60042b502e0b38dd0744102002d04e3fb3c73a44 --- /dev/null +++ b/l10n/cy_GB/user_ldap.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 19:00+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "Methwyd dileu" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:31 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:36 +msgid "Host" +msgstr "" + +#: templates/settings.php:38 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:39 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:40 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:41 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:43 +msgid "User DN" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:46 +msgid "Password" +msgstr "Cyfrinair" + +#: templates/settings.php:49 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:50 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:53 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:59 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:60 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:63 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:64 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:68 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:70 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:70 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:71 +msgid "Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:72 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:74 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:74 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:75 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:75 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:76 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:77 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:77 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:77 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:78 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:78 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:80 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:82 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:82 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:83 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:83 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:84 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:84 templates/settings.php:87 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:85 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:86 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:86 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:87 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:88 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:90 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:92 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:93 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:94 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:95 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:95 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:99 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:99 +msgid "Help" +msgstr "Cymorth" diff --git a/l10n/cy_GB/user_webdavauth.po b/l10n/cy_GB/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..38625a8e005ab34d1314f5918504845cea120ef0 --- /dev/null +++ b/l10n/cy_GB/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cy_GB\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/da/core.po b/l10n/da/core.po index a146c2a18c096a43fdc452ddfc9da9f6101c5e3f..3b03eb966dad402d8f8a2e014b4e7fec5369b8b8 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Bawl , 2013. # , 2012. # Frederik Lassen , 2013. # , 2011, 2012. @@ -17,8 +18,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -170,86 +171,88 @@ msgstr "December" msgid "Settings" msgstr "Indstillinger" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut siden" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dage siden" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "sidste måned" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "måneder siden" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "sidste år" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Vælg" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Fortryd" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nej" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Vælg" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nej" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Objekttypen er ikke angivet." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Fejl" @@ -269,7 +272,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Fejl under deling" @@ -329,59 +332,59 @@ msgstr "Del via email:" msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "kan redigere" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "opret" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "opdater" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "slet" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "del" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-mail afsendt" @@ -484,11 +487,11 @@ msgstr "Sikkerhedsadvarsel" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Opdater venligs din PHP-installation for at kunne bruge ownCloud sikkert." #: templates/installation.php:32 msgid "" @@ -541,23 +544,23 @@ msgstr "vil blive brugt" msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Afslut opsætning" diff --git a/l10n/da/files.po b/l10n/da/files.po index 994240a9197824d3538261f1858c048d85afeef5..c43e600f79ff5e821b89108724ee3c77e605c371 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -80,7 +80,7 @@ msgstr "Fejl ved skrivning til disk." msgid "Not enough storage available" msgstr "Der er ikke nok plads til rådlighed" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ugyldig mappe." @@ -100,39 +100,46 @@ msgstr "Slet" msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Afventer" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} eksisterer allerede" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "erstat" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "fortryd" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "erstattede {new_name} med {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "fortryd" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "udfør slet operation" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 fil uploades" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' er et ugyldigt filnavn." @@ -161,68 +168,60 @@ msgid "" "big." msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunne ikke uploade din fil, da det enten er en mappe eller er tom" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Fejl ved upload" - -#: js/files.js:274 -msgid "Close" -msgstr "Luk" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 fil uploades" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} filer uploades" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Upload afbrudt." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URLen kan ikke være tom." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Fejl" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Navn" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Størrelse" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Ændret" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fil" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 416d8486d5ca123c5477df62a6004c40e50f085b..8c8605731d332e952e6cb7ed4212bfaaab2a483d 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 09:46+0000\n" -"Last-Translator: Frederik Lassen \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/da/files_external.po b/l10n/da/files_external.po index 2ce6c9268d545817a648c5d917763364c43a837e..e8c3c21931e8ddbb76c3712cd0af2e761025edfa 100644 --- a/l10n/da/files_external.po +++ b/l10n/da/files_external.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Bawl , 2013. # , 2012. # Morten Juhl-Johansen Zölde-Fejér , 2012. # Ole Holm Frandsen , 2012. @@ -10,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +41,13 @@ msgstr "Angiv venligst en valid Dropbox app nøgle og hemmelighed" msgid "Error configuring Google Drive storage" msgstr "Fejl ved konfiguration af Google Drive plads" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr " Advarsel: \"smbclient\" ikke er installeret. Montering af CIFS / SMB delinger er ikke muligt. Spørg din systemadministrator om at installere det." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -63,7 +64,7 @@ msgstr "Mappenavn" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Eksternt lager" #: templates/settings.php:11 msgid "Configuration" @@ -79,7 +80,7 @@ msgstr "Kan anvendes" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Tilføj lager" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 99b2cdf8e9cf2670d5bcb11647979c8432ea6e8c..95f966c2f2a2b144aae1a4afc1538efa92530622 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/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-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" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "Kodeord" msgid "Submit" msgstr "Send" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Webtjenester under din kontrol" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 4c32d1c2f550b552857cbb44d0f3342d2ba67dbb..d0728a8d9c007321a2b17ed600548550d61813d3 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Bawl , 2013. # Frederik Lassen , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +19,12 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kunne ikke slette %s permanent" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" @@ -32,6 +33,10 @@ msgstr "Kunne ikke gendanne %s" msgid "perform restore operation" msgstr "udfør gendannelsesoperation" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Fejl" + #: js/trash.js:34 msgid "delete file permanently" msgstr "slet fil permanent" @@ -78,4 +83,4 @@ msgstr "Slet" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Slettede filer" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 6b6ab2ac91f3c355a8d2171d5c7b81289c13c6f6..7ceccbf2615f840206725317008c9a8dd98a2337 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-05 00:18+0100\n" -"PO-Revision-Date: 2013-03-04 18:20+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 2c3e3e7ff53994808c7fb35ea70eb584463e6758..f14b4dd25869e2e52d859087714fe74289a39662 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Frederik Lassen , 2013. -# Morten Juhl-Johansen Zölde-Fejér , 2012-2013. -# , 2012. -# Thomas , 2013. +# cronner , 2012 +# Frederik Lassen , 2013 +# Morten Juhl-Johansen Zölde-Fejér , 2012-2013 +# osos , 2012 +# cronner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: cronner \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -98,10 +98,6 @@ msgstr "Angiv et admin brugernavn." msgid "Set an admin password." msgstr "Angiv et admin kodeord." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specificer en data mappe." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 57f9c33b59981a105d86ccd4efd70d60c1d8640a..47340bcdeedd15366c43ba38d315da36089a8afb 100644 --- a/l10n/da/settings.po +++ b/l10n/da/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: 2013-03-07 00:16+0100\n" -"PO-Revision-Date: 2013-03-06 11:50+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -104,7 +104,7 @@ msgstr "Opdatér til {appversion}" msgid "Disable" msgstr "Deaktiver" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Aktiver" @@ -112,64 +112,64 @@ msgstr "Aktiver" msgid "Please wait...." msgstr "Vent venligst..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Fejl" + +#: js/apps.js:90 msgid "Updating...." msgstr "Opdaterer...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Der opstod en fejl under app opgraderingen" -#: js/apps.js:87 -msgid "Error" -msgstr "Fejl" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Opdateret" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gemmer..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "Slettet" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "fortryd" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kan ikke fjerne bruger" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppe Administrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slet" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "Tilføj gruppe" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Et gyldigt brugernavn skal angives" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fejl ved oprettelse af bruger" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "En gyldig adgangskode skal angives" @@ -328,11 +328,15 @@ msgstr "Log niveau" msgid "More" msgstr "Mere" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Mindre" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 32a2a3729ab90af29dd57d91636c64ec99146674..0590c136e9223905d37dd25657ab132c72a4f9c9 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-30 00:23+0100\n" -"PO-Revision-Date: 2013-01-29 12:07+0000\n" -"Last-Translator: Morten Juhl-Johansen Zölde-Fejér \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -27,7 +27,7 @@ msgstr "WebDAV-godkendelse" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/de/core.po b/l10n/de/core.po index f0729827c4d55c495221a846337172a7cc7d0b27..ff7be036306bbcaba1d5a641efc2e54ddff73869 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -3,30 +3,31 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. -# , 2011. -# , 2012. -# , 2011. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Susi <>, 2012. -# , 2012. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# infinity8 , 2011 +# Mirodin , 2012 +# , 2011 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2013 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2012 +# mike.f , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# Susi <>, 2012 +# , 2012 +# , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 13:20+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"Last-Translator: Lukas Reschke \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -177,86 +178,88 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "vor einer Minute" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "Heute" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "Gestern" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswählen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nein" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswählen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nein" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Der Objekttyp ist nicht angegeben." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Fehler" @@ -276,7 +279,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -336,59 +339,59 @@ msgstr "Über eine E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "erstellen" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "aktualisieren" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "löschen" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "teilen" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Fehler beim entfernen des Ablaufdatums" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-Mail wurde verschickt" @@ -534,37 +537,37 @@ msgstr "Fortgeschritten" msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de/files.po b/l10n/de/files.po index 7c0c02f65225382e51533ecf40b8ca020c03d9dd..c401e3168dd43be357f53edf95138e9f0fdea123 100644 --- a/l10n/de/files.po +++ b/l10n/de/files.po @@ -3,34 +3,35 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2013. -# Michael Krell , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2012. -# Thomas Müller <>, 2012. -# , 2012. -# , 2013. -# , 2013. -# , 2013. +# goeck , 2012 +# Mirodin , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2013 +# Michael Krell , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# I Robot , 2012 +# Thomas Müller <>, 2012 +# traductor , 2012 +# Linutux , 2013 +# kabum , 2013 +# kabum , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:21+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -91,7 +92,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicherplatz verfügbar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -111,39 +112,46 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "Name vorschlagen" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} ersetzt durch {new_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "Löschvorgang ausführen" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "Eine Datei wird hoch geladen" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "Dateien werden hoch geladen" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' ist kein gültiger Dateiname." @@ -172,68 +180,60 @@ msgid "" "big." msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas dauern." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Deine Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Fehler beim Upload" - -#: js/files.js:274 -msgid "Close" -msgstr "Schließen" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "Eine Datei wird hoch geladen" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} Dateien werden hochgeladen" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nicht genug Speicherplatz verfügbar" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Dateiupload läuft. Wenn Du die Seite jetzt verlässt, wird der Upload abgebrochen." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Fehler" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Name" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Größe" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 Datei" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index 3cfd6711a27e2bee724937260e9138e094dcfb28..9e734d80a38085d2f2d9df5415e413b743fefcf4 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-18 00:05+0100\n" -"PO-Revision-Date: 2013-02-17 14:12+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/files_external.po b/l10n/de/files_external.po index d7c22d28d71309902960af4771f465666a7bdf2c..3bd88c78ecd301a35abb493830e0b9e8b1bd5b77 100644 --- a/l10n/de/files_external.po +++ b/l10n/de/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,13 +43,13 @@ msgstr "Bitte trage einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitte Deinen System-Administrator, dies zu installieren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index b48b1dfa72bdad923f1bd0fb0b6a18e0ff337550..d3e9a367638b6ec0f0961bc73e8280bd08d4aaa8 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 21:36+0000\n" -"Last-Translator: Mirodin \n" -"Language-Team: German (http://www.transifex.com/projects/p/owncloud/language/de/)\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,24 +30,24 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index b78f37fc5476e09ee6cadd2f521ad05568e67afc..e4aa758e230f3cb145fa2bc26cf0f7a966359305 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# I Robot , 2013. -# Marcel Kühlhorn , 2013. -# Tristan , 2013. -# , 2013. +# I Robot , 2013 +# Marcel Kühlhorn , 2013 +# Mirodin , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 15:30+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:26+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,12 +21,12 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Konnte %s nicht dauerhaft löschen" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" @@ -35,6 +35,10 @@ msgstr "Konnte %s nicht wiederherstellen" msgid "perform restore operation" msgstr "Wiederherstellung ausführen" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Fehler" + #: js/trash.js:34 msgid "delete file permanently" msgstr "Datei dauerhaft löschen" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index c62bef6afd5323a29e3c98f5045e6bdfcf175b4a..fd4ea22a0ec198d3d046d8d0ca2aef622d2e2432 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-23 00:02+0100\n" -"PO-Revision-Date: 2013-03-22 09:34+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index a0f639ee1f1d8e35c840ce0ce27c9b4e7670b96d..6e43319234da83d6f93866a8a40c665ba1384d7c 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,23 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# I Robot , 2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Marcel Kühlhorn , 2012-2013. -# Phi Lieb <>, 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# Mirodin , 2012 +# I Robot , 2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Marcel Kühlhorn , 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 13:20+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -103,10 +103,6 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Datei-Verzeichnis angeben." - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -195,7 +191,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfe die Instalationsanleitungen." +msgstr "Bitte prüfe die Installationsanleitungen." #: template.php:113 msgid "seconds ago" diff --git a/l10n/de/settings.po b/l10n/de/settings.po index 8cdc6a64dc890ebf05cf02bb41119f20373051c6..0f6b2fc926ba2796ce18b6979aee872fe3f0f7a2 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.po @@ -3,32 +3,32 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011, 2012. -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan T , 2012. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2012. -# , 2012. -# Tristan , 2013. -# , 2013. -# , 2013. +# goeck , 2011, 2012 +# Mirodin , 2012 +# Robin Appelman , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan T , 2012 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2012 +# AndryXY , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 +# kabum , 2013 +# Wachhund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-23 00:03+0100\n" -"PO-Revision-Date: 2013-03-22 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 07:21+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -112,7 +112,7 @@ msgstr "Aktualisiere zu {appversion}" msgid "Disable" msgstr "Deaktivieren" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Aktivieren" @@ -120,64 +120,64 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Fehler" + +#: js/apps.js:90 msgid "Updating...." msgstr "Aktualisierung..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Fehler beim Aktualisieren der App" -#: js/apps.js:87 -msgid "Error" -msgstr "Fehler" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speichern..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "gelöscht" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Benutzer konnte nicht entfernt werden." -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Löschen" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Beim Anlegen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" @@ -211,7 +211,7 @@ msgstr "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil d #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -332,15 +332,19 @@ msgstr "Log" msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mehr" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:228 +msgid "Less" +msgstr "Weniger" + +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index d2653f16859cdda6d2cbb70cb80e18a285696976..a756a0d8570bd4070761fadd94c8dd1595f3aeaf 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 22:10+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index da85b4e89ce0e02d4208c6e001134c5c78b0468f..666f0eeb26a96d08db6c3102fbb36674c3d0678e 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -3,34 +3,35 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. -# , 2011. -# , 2012. -# , 2012. -# , 2012. -# , 2011. -# I Robot , 2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# , 2013. -# , 2013. -# Susi <>, 2013. -# , 2012. -# , 2013. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# infinity8 , 2011 +# a.tangemann , 2012 +# Mirodin , 2012 +# deh3nne , 2012 +# george , 2011 +# I Robot , 2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2013 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# mike.f , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# Valermos , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# traductor , 2013 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 12:50+0000\n" +"Last-Translator: Lukas Reschke \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -181,86 +182,88 @@ msgstr "Dezember" msgid "Settings" msgstr "Einstellungen" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "Vor 1 Minute" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Vor {minutes} Minuten" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Vor einer Stunde" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Vor {hours} Stunden" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "Heute" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "Gestern" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "Vor {days} Tag(en)" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "Vor {months} Monaten" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "Vor Jahren" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswählen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Abbrechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nein" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswählen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nein" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Der Objekttyp ist nicht angegeben." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Fehler" @@ -280,7 +283,7 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Fehler beim Teilen" @@ -340,59 +343,59 @@ msgstr "Mittels einer E-Mail teilen:" msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "erstellen" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "aktualisieren" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "löschen" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "teilen" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Email gesendet" @@ -538,37 +541,37 @@ msgstr "Fortgeschritten" msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Installation abschließen" diff --git a/l10n/de_DE/files.po b/l10n/de_DE/files.po index 74f281d94e1cb31cb0cbcc44a4676a3d17f9b7b8..0e5e25200e8483fc21751a75bfa6383ba8917835 100644 --- a/l10n/de_DE/files.po +++ b/l10n/de_DE/files.po @@ -3,40 +3,40 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Andreas Tangemann , 2013. -# , 2012-2013. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan-Christoph Borchardt , 2011. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2013. -# Michael Krell , 2012. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel , 2013. -# , 2013. -# , 2013. -# , 2013. -# Susi <>, 2013. -# , 2012. -# Thomas Müller <>, 2012. -# , 2013. -# , 2012. -# Tristan , 2013. +# goeck , 2012 +# a.tangemann , 2013 +# a.tangemann , 2012-2013 +# Mirodin , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan-Christoph Borchardt , 2011 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# thiel , 2013 +# Michael Krell , 2012 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# quick_wango , 2013 +# robN , 2013 +# stefanniedermann , 2013 +# Valermos , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# Thomas Müller <>, 2012 +# traductor , 2013 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 08:22+0000\n" +"Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -97,7 +97,7 @@ msgstr "Fehler beim Schreiben auf die Festplatte" msgid "Not enough storage available" msgstr "Nicht genug Speicher vorhanden." -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ungültiges Verzeichnis." @@ -117,39 +117,46 @@ msgstr "Löschen" msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Ausstehend" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} existiert bereits" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "Einen Namen vorschlagen" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "abbrechen" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} wurde ersetzt durch {new_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "führe das Löschen aus" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 Datei wird hochgeladen" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "Dateien werden hoch geladen" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' ist kein gültiger Dateiname." @@ -178,68 +185,60 @@ msgid "" "big." msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien einen Moment dauern." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ihre Datei kann nicht hochgeladen werden, da sie entweder ein Verzeichnis oder 0 Bytes groß ist." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Fehler beim Upload" - -#: js/files.js:274 -msgid "Close" -msgstr "Schließen" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nicht genügend Speicherplatz verfügbar" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} Dateien wurden hochgeladen" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Upload abgebrochen." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Der Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Die URL darf nicht leer sein." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Fehler" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Name" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Größe" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Bearbeitet" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 Ordner" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} Ordner" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 Datei" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} Dateien" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index f69dc4f485301ac1d8e8e3a3634055d9fd324212..cb549f90fd212793ccc0001eed45118c4a20bf93 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-17 00:24+0100\n" -"PO-Revision-Date: 2013-02-16 23:00+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/files_external.po b/l10n/de_DE/files_external.po index 34fa61b23a1c32497c47d023f00fcdc4b36b0e17..3b72b5747dd19c4e90a06ee6cfe801ddc1784880 100644 --- a/l10n/de_DE/files_external.po +++ b/l10n/de_DE/files_external.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: a.tangemann \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,13 +43,13 @@ msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." msgid "Error configuring Google Drive storage" msgstr "Fehler beim Einrichten von Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Warnung: \"smbclient\" ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index c1d9610ac763311f86cabfc7be8c973cbd9a7bf7..0f52dc9f53f1c2e7b0a920f613d26da8e569aaf9 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -12,10 +12,10 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 21:36+0000\n" -"Last-Translator: Mirodin \n" -"Language-Team: German (Germany) (http://www.transifex.com/projects/p/owncloud/language/de_DE/)\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -30,24 +30,24 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Download" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index c02de29c29141a395286f25d3893a72e38e83772..00c1b90925ebd69f29746ffc5cceb56dc9e22ec2 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 15:20+0000\n" -"Last-Translator: Marcel Kühlhorn \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +24,12 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Konnte %s nicht dauerhaft löschen" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" @@ -38,6 +38,10 @@ msgstr "Konnte %s nicht wiederherstellen" msgid "perform restore operation" msgstr "Wiederherstellung ausführen" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Fehler" + #: js/trash.js:34 msgid "delete file permanently" msgstr "Datei dauerhaft löschen" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 934aa7d67f85499be05e984e7937e810c6fdd6dd..341c1a1b007613bcbde5b7873e1aa0907012fb75 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -17,9 +17,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 21:00+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 66c220851526ed78b1e2cff8060de4d137454238..e21abf4d383580b8b3852d8af0d0c7989556bbb8 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,24 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Andreas Tangemann , 2013. -# , 2012. -# , 2012. -# I Robot , 2013. -# Jan-Christoph Borchardt , 2012. -# Marcel Kühlhorn , 2012-2013. -# Phi Lieb <>, 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# a.tangemann , 2013 +# a.tangemann , 2012 +# Mirodin , 2012 +# I Robot , 2013 +# Jan-Christoph Borchardt , 2012 +# Marcel Kühlhorn , 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann , 2013 +# I Robot , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -104,10 +104,6 @@ msgstr "Setze Administrator Benutzername." msgid "Set an admin password." msgstr "Setze Administrator Passwort" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Datei-Verzeichnis angeben" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -196,7 +192,7 @@ msgstr "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil di #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: template.php:113 msgid "seconds ago" diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index 9b99f5b2e2e79362878b8a04da3cc77bc53a6324..718fd022b4e854741f042591a72b5b1a829f659a 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -3,37 +3,37 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011-2012. -# Andreas Tangemann , 2013. -# , 2012. -# , 2012. -# I Robot , 2012-2013. -# I Robot , 2012. -# Jan-Christoph Borchardt , 2011. -# Jan T , 2012. -# Lukas Reschke , 2013. -# , 2012. -# , 2012. -# Marcel Kühlhorn , 2012-2013. -# , 2012. -# , 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel , 2013. -# , 2013. -# , 2012. -# , 2013. -# Susi <>, 2013. -# , 2012. -# , 2013. -# , 2012. -# , 2012. -# Tristan , 2013. +# goeck , 2011-2012 +# a.tangemann , 2013 +# Mirodin , 2012 +# Robin Appelman , 2012 +# I Robot , 2012-2013 +# I Robot , 2012 +# Jan-Christoph Borchardt , 2011 +# Jan T , 2012 +# Lukas Reschke , 2013 +# Lukas Reschke , 2012 +# fmms , 2012 +# Marcel Kühlhorn , 2012-2013 +# piccobello , 2012 +# JamFX , 2012 +# Phi Lieb <>, 2012 +# quick_wango , 2013 +# robN , 2013 +# seeed , 2012 +# stefanniedermann , 2013 +# Susi <>, 2013 +# I Robot , 2012 +# traductor , 2013 +# traductor , 2012 +# traductor , 2012 +# Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 20:50+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 07:20+0000\n" "Last-Translator: Mirodin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -125,6 +125,10 @@ msgstr "Aktivieren" msgid "Please wait...." msgstr "Bitte warten...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Fehler" + #: js/apps.js:90 msgid "Updating...." msgstr "Update..." @@ -133,56 +137,52 @@ msgstr "Update..." msgid "Error while updating app" msgstr "Es ist ein Fehler während des Updates aufgetreten" -#: js/apps.js:93 -msgid "Error" -msgstr "Fehler" - #: js/apps.js:96 msgid "Updated" msgstr "Aktualisiert" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speichern..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "gelöscht" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "rückgängig machen" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Der Benutzer konnte nicht entfernt werden." -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppenadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Löschen" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "Gruppe hinzufügen" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Es muss ein gültiger Benutzername angegeben werden" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Es muss ein gültiges Passwort angegeben werden" @@ -216,7 +216,7 @@ msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfigurie #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Instalationsanleitungen." +msgstr "Bitte prüfen Sie die Installationsanleitungen." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -337,15 +337,19 @@ msgstr "Log" msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "Mehr" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:228 +msgid "Less" +msgstr "Weniger" + +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index da76dff3ac094faaf507970261d192a2c02c62c4..05ec894d85d6caa360148af893d9f8bba8898694 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-21 00:03+0100\n" -"PO-Revision-Date: 2013-03-20 08:40+0000\n" -"Last-Translator: traductor \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/el/core.po b/l10n/el/core.po index 92363bd29f2d7d1a64cf0bb22c3991e98acf6a2c..17bdcf4ca724d3c6fae7de819161a8909b4f990a 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -12,12 +12,13 @@ # , 2011. # Petros Kyladitis , 2011-2012. # , 2013. +# Wasilis Mandratzis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -169,86 +170,88 @@ msgstr "Δεκέμβριος" msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 λεπτό πριν" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} λεπτά πριν" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ώρα πριν" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ώρες πριν" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "σήμερα" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "χτες" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ημέρες πριν" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} μήνες πριν" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "χρόνια πριν" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Επιλέξτε" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Οκ" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Άκυρο" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Όχι" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Επιλέξτε" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ναι" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Οκ" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Όχι" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Δεν καθορίστηκε ο τύπος του αντικειμένου." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Σφάλμα" @@ -268,7 +271,7 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" @@ -328,59 +331,59 @@ msgstr "Διαμοιρασμός μέσω email:" msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "δημιουργία" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "ενημέρωση" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "διαγραφή" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Το Email απεστάλη " @@ -483,11 +486,11 @@ msgstr "Προειδοποίηση Ασφαλείας" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Παρακαλώ ενημερώστε την εγκατάσταση PHP σας ώστε να χρησιμοποιήσετε ασφαλέστερα το ownCloud." #: templates/installation.php:32 msgid "" @@ -540,23 +543,23 @@ msgstr "θα χρησιμοποιηθούν" msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" diff --git a/l10n/el/files.po b/l10n/el/files.po index 3dda014a5c7e849606478ef2680948d8dff20f5a..6d69eade9c58719386d11eb3d8dac19d3989a356 100644 --- a/l10n/el/files.po +++ b/l10n/el/files.po @@ -10,15 +10,16 @@ # Efstathios Iosifidis , 2012. # Konstantinos Tzanidis , 2012. # Marios Bekatoros <>, 2012. -# Petros Kyladitis , 2011-2012. +# Petros Kyladitis , 2011-2013. +# Wasilis Mandratzis , 2013. # Γιάννης Ανθυμίδης , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: axil Pι \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -51,7 +52,7 @@ msgstr "Δεν υπάρχει σφάλμα, το αρχείο εστάλει ε #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "Το απεσταλμένο αρχείο ξεπερνά την οδηγία upload_max_filesize στο php.ini:" +msgstr "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini" #: ajax/upload.php:29 msgid "" @@ -79,7 +80,7 @@ msgstr "Αποτυχία εγγραφής στο δίσκο" msgid "Not enough storage available" msgstr "Μη επαρκής διαθέσιμος αποθηκευτικός χώρος" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Μη έγκυρος φάκελος." @@ -99,38 +100,45 @@ msgstr "Διαγραφή" msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Εκκρεμεί" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} υπάρχει ήδη" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "αντικατέστησε" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "συνιστώμενο όνομα" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "ακύρωση" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "αντικαταστάθηκε το {new_name} με {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" -msgstr "εκτέλεση διαδικασία διαγραφής" +msgstr "εκτέλεση της διαδικασίας διαγραφής" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 αρχείο ανεβαίνει" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "αρχεία ανεβαίνουν" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -138,7 +146,7 @@ msgstr "'.' είναι μη έγκυρο όνομα αρχείου." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "Το όνομα αρχείου δεν πρέπει να είναι κενό." +msgstr "Το όνομα αρχείου δεν μπορεί να είναι κενό." #: js/files.js:64 msgid "" @@ -160,68 +168,60 @@ msgid "" "big." msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να πάρει ώρα εάν τα αρχεία έχουν μεγάλο μέγεθος." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Αδυναμία στην αποστολή του αρχείου σας αφού είναι φάκελος ή έχει 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Σφάλμα Αποστολής" - -#: js/files.js:274 -msgid "Close" -msgstr "Κλείσιμο" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Δεν υπάρχει αρκετός διαθέσιμος χώρος" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 αρχείο ανεβαίνει" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} αρχεία ανεβαίνουν" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Η αποστολή ακυρώθηκε." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Η αποστολή του αρχείου βρίσκεται σε εξέλιξη. Το κλείσιμο της σελίδας θα ακυρώσει την αποστολή." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." -msgstr "Η URL δεν πρέπει να είναι κενή." +msgstr "Η URL δεν μπορεί να είναι κενή." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Σφάλμα" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Όνομα" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Μέγεθος" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 φάκελος" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} φάκελοι" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 αρχείο" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} αρχεία" @@ -291,7 +291,7 @@ msgstr "Δεν έχετε δικαιώματα εγγραφής εδώ." #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "Δεν υπάρχει τίποτα εδώ. Μεταφορτώστε κάτι!" +msgstr "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!" #: templates/index.php:76 msgid "Download" @@ -313,12 +313,12 @@ msgstr "Τα αρχεία που προσπαθείτε να ανεβάσετε #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε" +msgstr "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε." #: templates/index.php:118 msgid "Current scanning" -msgstr "Τρέχουσα αναζήτηση " +msgstr "Τρέχουσα ανίχνευση" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "Αναβάθμιση μνήμης cache του συστήματος αρχείων..." +msgstr "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." diff --git a/l10n/el/files_encryption.po b/l10n/el/files_encryption.po index 7196402db423993479cc1d90a1195bcb8ba24ea6..657368cb3f414031c4be07c726b54a61a29f8f8c 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/el/files_external.po b/l10n/el/files_external.po index bf0a4d38f958d1ab56f582fba0a41979d90dd3f3..ee87024042455ac3855f014b1227c39492b70f54 100644 --- a/l10n/el/files_external.po +++ b/l10n/el/files_external.po @@ -7,14 +7,15 @@ # Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. # Petros Kyladitis , 2012. +# Wasilis Mandratzis , 2013. # Γιάννης , 2012. # Γιάννης Ανθυμίδης , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -43,13 +44,13 @@ msgstr "Παρακαλούμε δώστε έγκυρο κλειδί Dropbox κα msgid "Error configuring Google Drive storage" msgstr "Σφάλμα ρυθμίζωντας αποθήκευση Google Drive " -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Προσοχή: Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η προσάρτηση CIFS/SMB. Παρακαλώ ενημερώστε τον διαχειριστή συστήματος να το εγκαταστήσει." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -66,7 +67,7 @@ msgstr "Όνομα φακέλου" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Εξωτερική αποθήκευση" #: templates/settings.php:11 msgid "Configuration" @@ -82,7 +83,7 @@ msgstr "Εφαρμόσιμο" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Προσθηκη αποθηκευσης" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index d5a761b6f70d7aeb251f93390ca0521b5d8d4384..5f558cf1183b27e3e45eac3417c56864846110e2 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/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-28 23:34+0200\n" -"PO-Revision-Date: 2012-09-28 01:07+0000\n" -"Last-Translator: Dimitris M. \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,24 +28,24 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Λήψη" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 584be8fdd48424e82f0fd45f9586f3ded46c33ae..b3db2cb37252c14a8e77ebc8ef39a944bb107130 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Αδύνατη η μόνιμη διαγραφή του %s" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" @@ -32,6 +32,10 @@ msgstr "Αδυναμία επαναφοράς %s" msgid "perform restore operation" msgstr "εκτέλεση λειτουργία επαναφοράς" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Σφάλμα" + #: js/trash.js:34 msgid "delete file permanently" msgstr "μόνιμη διαγραφή αρχείου" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index bd9ae0b92a4f3e539b1864c84dd83b9ee1fab193..d87bcb7f29d2171678a19d78141dd37501ae7fb0 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -6,12 +6,13 @@ # Dimitris M. , 2012-2013. # Efstathios Iosifidis , 2012. # Nisok Kosin , 2012. +# Wasilis Mandratzis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -43,17 +44,17 @@ msgstr "αποτυχία" msgid "File %s could not be reverted to version %s" msgstr "Το αρχείο %s δεν είναι δυνατό να επαναφερθεί στην έκδοση %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Μη διαθέσιμες παλιές εκδόσεις" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Δεν καθορίστηκε διαδρομή" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Εκδόσεις" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index d459cda2f1baec853b4e156b8e1f921db195ff99..73635112f6e29bdd9711b0807d77d822b83b3fc6 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.po @@ -3,16 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dimitris M. , 2013. -# Efstathios Iosifidis , 2013. -# Efstathios Iosifidis , 2012. -# , 2013. +# Dimitris M. , 2013 +# Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012 +# xneo1 , 2013 +# Wasilis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -97,10 +98,6 @@ msgstr "Εισάγετε όνομα χρήστη διαχειριστή." msgid "Set an admin password." msgstr "Εισάγετε συνθηματικό διαχειριστή." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Καθορίστε τον φάκελο δεδομένων." - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -119,7 +116,7 @@ msgstr "%s μάλλον δεν χρησιμοποιείτε τελείες στ #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s ρυθμίση του κεντρικόυ υπολογιστή βάσης δεδομένων. " #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" @@ -150,7 +147,7 @@ msgstr "Σφάλμα Βάσης Δεδομένων: \"%s\"" #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\"" #: setup.php:303 #, php-format @@ -173,12 +170,12 @@ msgstr "Απόρριψη αυτού του χρήστη από την MySQL" #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s" #: setup.php:853 msgid "" diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 57cd5917caf6d19c39f9a56bade153365ce6d198..f80aa6d858446c997f7739d4be7e1e7ef38c61bf 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -15,13 +15,14 @@ # , 2011. # Petros Kyladitis , 2011-2012. # , 2013. +# Wasilis Mandratzis , 2013. # Γιάννης Ανθυμίδης , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -105,7 +106,7 @@ msgstr "Ενημέρωση σε {appversion}" msgid "Disable" msgstr "Απενεργοποίηση" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Ενεργοποίηση" @@ -113,64 +114,64 @@ msgstr "Ενεργοποίηση" msgid "Please wait...." msgstr "Παρακαλώ περιμένετε..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Σφάλμα" + +#: js/apps.js:90 msgid "Updating...." msgstr "Ενημέρωση..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Σφάλμα κατά την ενημέρωση της εφαρμογής" -#: js/apps.js:87 -msgid "Error" -msgstr "Σφάλμα" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Ενημερώθηκε" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Αποθήκευση..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "διαγράφηκε" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "αναίρεση" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Αδυναμία αφαίρεση χρήστη" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Ομάδες" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Ομάδα Διαχειριστών" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Διαγραφή" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "προσθήκη ομάδας" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Πρέπει να δοθεί έγκυρο όνομα χρήστη" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Σφάλμα δημιουργίας χρήστη" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" @@ -208,13 +209,13 @@ msgstr "Ελέγξτε ξανά τις οδηγίες εγκατά #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Η ενοτητα 'fileinfo' λειπει" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " #: templates/admin.php:58 msgid "Locale not working" @@ -226,7 +227,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Αυτός ο ownCloud διακομιστης δεν μπορείτε να εφαρμοσει το σύνολο τοπικής προσαρμογής συστημάτων στο %s. Αυτό σημαίνει ότι μπορεί να υπάρξουν προβλήματα με ορισμένους χαρακτήρες σε ονόματα αρχείων. Σας συνιστούμε να εγκαταστήσετε τις απαραίτητες συσκευασίες στο σύστημά σας για να υποστηρίχθει το %s. " #: templates/admin.php:75 msgid "Internet connection not working" @@ -240,7 +241,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "Αυτός ο διακομιστής ownCloud δεν έχει σύνδεση στο Διαδίκτυο. Αυτό σημαίνει ότι ορισμένα από τα χαρακτηριστικά γνωρίσματα όπως η τοποθέτηση εξωτερικής αποθήκευσης, οι κοινοποιήσεις σχετικά με ανανεωσεις, ή εγκατάσταση 3ων εφαρμογές δεν λειτουργούν. Η πρόσβαση σε αρχεία και η αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην λειτουργεί. Σας προτείνουμε να σύνδεθειτε στο διαδικτυο αυτό τον διακομιστή, εάν θέλετε να έχετε όλα τα χαρακτηριστικά του ownCloud." #: templates/admin.php:92 msgid "Cron" @@ -315,7 +316,7 @@ msgstr "Επιβολή στους πελάτες να συνδεθούν στο msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "Παρακαλώ συνδεθείτε με το ownCloud μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή SSL. " #: templates/admin.php:195 msgid "Log" @@ -329,11 +330,15 @@ msgstr "Επίπεδο καταγραφής" msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Λιγότερα" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2013. # Konstantinos Tzanidis , 2012. # Marios Bekatoros <>, 2012. +# Wasilis Mandratzis , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -49,7 +50,7 @@ msgstr "Η διαγραφή απέτυχε" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Πάρτε πάνω από τις πρόσφατες ρυθμίσεις διαμόρφωσης του διακομιστή?" #: js/settings.js:83 msgid "Keep settings?" @@ -111,7 +112,7 @@ msgstr "Base DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "Ένα DN Βάσης ανά γραμμή " #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -182,11 +183,11 @@ msgstr "Ρυθμίσεις Σύνδεσης" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "Ενεργοποιηση ρυθμισεων" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Όταν δεν είναι επιλεγμένο, αυτή η ρύθμιση θα πρέπει να παραλειφθεί. " #: templates/settings.php:71 msgid "Port" @@ -194,25 +195,25 @@ msgstr "Θύρα" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Host " #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Δώστε μια προαιρετική εφεδρική υποδοχή. Πρέπει να είναι ένα αντίγραφο του κύριου LDAP / AD διακομιστη." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Δημιουργία αντιγράφων ασφαλείας (Replica) Υποδοχη" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "Απενεργοποιηση του κεντρικου διακομιστη" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα." #: templates/settings.php:75 msgid "Use TLS" @@ -220,7 +221,7 @@ msgstr "Χρήση TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Μην το χρησιμοποιήσετε επιπροσθέτως, για LDAPS συνδέσεις , θα αποτύχει." #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" @@ -242,7 +243,7 @@ msgstr "Δεν προτείνεται, χρήση μόνο για δοκιμές #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache Time-To-Live" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -266,15 +267,15 @@ msgstr "Base User Tree" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "Ένα DN βάσης χρηστών ανά γραμμή" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "Χαρακτηριστικά αναζήτησης των χρηστών " #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Προαιρετικά? Ένα χαρακτηριστικό ανά γραμμή " #: templates/settings.php:85 msgid "Group Display Name Field" @@ -290,11 +291,11 @@ msgstr "Base Group Tree" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "Μια ομαδικη Βάση DN ανά γραμμή" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "Ομάδα Χαρακτηριστικων Αναζήτηση" #: templates/settings.php:88 msgid "Group-Member association" @@ -302,15 +303,15 @@ msgstr "Group-Member association" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "Ειδικά Χαρακτηριστικά " #: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Ποσοσταση πεδιου" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Προκαθισμενο πεδιο" #: templates/settings.php:93 msgid "in bytes" @@ -318,11 +319,11 @@ msgstr "σε bytes" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Email τυπος" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Χρήστης Προσωπικόςφάκελος Ονομασία Κανόνας " #: templates/settings.php:95 msgid "" @@ -332,7 +333,7 @@ msgstr "Αφήστε το κενό για το όνομα χρήστη (προε #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Δοκιμαστικες ρυθμισεις" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index ae9fa402bf85a1db0e5f3115e947fc857febf1e7..370f455b114dd2101fe0be36ebd3f760bb42c274 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 08:10+0000\n" -"Last-Translator: Marios Bekatoros <>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -29,7 +29,7 @@ msgstr "Αυθεντικοποίηση μέσω WebDAV " msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/eo/core.po b/l10n/eo/core.po index e66ebb9132ba1bd964cc9eb956d6811cc90cea42..fd104b957cc62f71872778dd2127c13703d64ddf 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -163,86 +163,88 @@ msgstr "Decembro" msgid "Settings" msgstr "Agordo" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "antaŭ 1 minuto" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "antaŭ {minutes} minutoj" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "antaŭ 1 horo" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "antaŭ {hours} horoj" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hodiaŭ" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "antaŭ {days} tagoj" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "lastamonate" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "antaŭ {months} monatoj" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "lastajare" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "jaroj antaŭe" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Elekti" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Akcepti" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Nuligi" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Elekti" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jes" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Akcepti" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Ne indikiĝis tipo de la objekto." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Eraro" @@ -262,7 +264,7 @@ msgstr "" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" @@ -322,59 +324,59 @@ msgstr "Kunhavigi per retpoŝto:" msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "povas redakti" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "krei" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "forigi" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "kunhavigi" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" @@ -534,23 +536,23 @@ msgstr "estos uzata" msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fini la instalon" diff --git a/l10n/eo/files.po b/l10n/eo/files.po index ad73a3419cf6570ced3396f3e7616858f52fc85e..fb3dd94df15915ba2b8ce7a6f251f954c6a35744 100644 --- a/l10n/eo/files.po +++ b/l10n/eo/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -73,7 +73,7 @@ msgstr "Malsukcesis skribo al disko" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Nevalida dosierujo." @@ -93,39 +93,46 @@ msgstr "Forigi" msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Traktotaj" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} jam ekzistas" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "anstataŭigi" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "sugesti nomon" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "nuligi" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "anstataŭiĝis {new_name} per {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "malfari" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 dosiero estas alŝutata" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' ne estas valida dosiernomo." @@ -154,68 +161,60 @@ msgid "" "big." msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosieroj grandas." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ne eblis alŝuti vian dosieron ĉar ĝi estas dosierujo aŭ havas 0 duumokojn" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Alŝuta eraro" - -#: js/files.js:274 -msgid "Close" -msgstr "Fermi" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Ne haveblas sufiĉa spaco" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 dosiero estas alŝutata" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} dosieroj alŝutatas" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "La alŝuto nuliĝis." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL ne povas esti malplena." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Eraro" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nomo" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Grando" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modifita" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 dosierujo" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} dosierujoj" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 dosiero" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} dosierujoj" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index 1a1260fd41311b86a4b74a259f1d11121d5be038..e909ea87bff7f6e29dd3b24cfcd23c0c4fc00249 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/eo/files_external.po b/l10n/eo/files_external.po index 6799bc9dd755b7d66458e7de7da39b83b653231a..97fd9187fc7e6f5251de21fd61dbcdb2babc2e58 100644 --- a/l10n/eo/files_external.po +++ b/l10n/eo/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,13 +38,13 @@ msgstr "Bonvolu provizi ŝlosilon de la aplikaĵo Dropbox validan kaj sekretan." msgid "Error configuring Google Drive storage" msgstr "Eraro dum agordado de la memorservo Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index e9778f8450ca1a365ab5657580360f77ebb1934f..e8fc61e3282087553754f0f023af9ef888577f3b 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-10-14 02:05+0200\n" -"PO-Revision-Date: 2012-10-13 03:01+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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,24 +26,24 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index a81fb19475d921a2c9bde7a115524c79fc89857c..ef1aba79f4894327df60619b68d132626e35d620 100644 --- a/l10n/eo/files_trashbin.po +++ b/l10n/eo/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Eraro" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index 0c1c4992f5d87c74d5f4906ded478421af32d80f..03a9d97ec3a6f547ac84199bf163545ac69ed527 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # Mariano , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -21,38 +22,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Ne eblas malfari: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "sukceso" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Dosiero %s estis malfarita al versio %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "malsukceso" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Ne eblis malfari dosieron %s al versio %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "Neniu malnova versio disponeblas" -#: history.php:73 +#: history.php:74 msgid "No path specified" -msgstr "" +msgstr "Neniu vojo estas specifita" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versioj" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Malfari dosieron al antaŭa versio per klako sur sia malfarad-butono" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 9d60ccaa85069a81127a52523544e0dbfe67e408..1bd6af554dc0889631df8460dca45ff1062295a6 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mariano , 2012. +# Mariano , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 84327bf8760d4e267f38dc0bd1f61870fee53ab3..5ad89620f39fefb1fd7bb3bc9963ee00d08202b4 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -95,7 +95,7 @@ msgstr "" msgid "Disable" msgstr "Malkapabligi" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Kapabligi" @@ -103,64 +103,64 @@ msgstr "Kapabligi" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Eraro" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Eraro" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Konservante..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "forigita" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "malfari" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupoj" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupadministranto" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Forigi" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -319,11 +319,15 @@ msgstr "" msgid "More" msgstr "Pli" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Malpli" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Eldono" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index d9f66ba5177fb4168c2b8e63e03b5e9160b34d1d..8217ee0e2b9ccb3f2adac4e0784be30425c456a9 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-21 00:04+0100\n" -"PO-Revision-Date: 2013-01-20 01:16+0000\n" -"Last-Translator: Mariano \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -27,7 +27,7 @@ msgstr "WebDAV-aŭtentigo" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/es/core.po b/l10n/es/core.po index baaaf2371b4b0587d4c1e51289a2b57001a2a5b6..79e7618ee720f7a3d22c0830273a2fdc4af1a0df 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -3,27 +3,27 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Felix Liberio , 2013. -# , 2012. -# Javier Llorente , 2012. -# , 2013. -# , 2011-2013. -# , 2012. -# oSiNaReF <>, 2012. -# Raul Fernandez Garcia , 2012. -# , 2012. -# , 2011. -# Rubén Trujillo , 2012. -# , 2011-2012. -# , 2012. -# Vladimir Martinez Sierra , 2013. +# felix.liberio , 2013 +# Javierkaiser , 2012 +# Javier Llorente , 2012 +# juanman , 2013 +# juanman , 2011-2013 +# malmirk , 2012 +# oSiNaReF <>, 2012 +# Raul Fernandez Garcia , 2012 +# rodrigo.calvo , 2012 +# Romain DEP. , 2011 +# Rubén Trujillo , 2012 +# xsergiolpx , 2011-2012 +# scambra , 2012 +# msvladimir , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 18:40+0000\n" +"Last-Translator: I Robot \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" @@ -174,86 +174,88 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Hace {hours} horas" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hoy" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ayer" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "mes pasado" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "Hace {months} meses" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "hace meses" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "año pasado" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "hace años" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Seleccionar" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Seleccionar" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "El tipo de objeto no se ha especificado." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Fallo" @@ -273,7 +275,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Error compartiendo" @@ -305,7 +307,7 @@ msgstr "Compartir con enlace" msgid "Password protect" msgstr "Protegido por contraseña" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Contraseña" @@ -333,59 +335,59 @@ msgstr "compartido via e-mail:" msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "No compartir" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "puede editar" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "control de acceso" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "crear" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "modificar" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "eliminar" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "compartir" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Error al eliminar la fecha de caducidad" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -421,7 +423,7 @@ msgid "Request failed!" msgstr "Pedido fallado!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Nombre de usuario" @@ -531,37 +533,37 @@ msgstr "Avanzado" msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Completar la instalación" @@ -573,33 +575,33 @@ msgstr "servicios web bajo tu control" msgid "Log out" msgstr "Salir" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Si usted no ha cambiado su contraseña recientemente, ¡puede que su cuenta esté comprometida!" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Por favor cambie su contraseña para asegurar su cuenta nuevamente." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "¿Has perdido tu contraseña?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "recuérdame" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Entrar" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Nombre de usuarios alternativos" diff --git a/l10n/es/files.po b/l10n/es/files.po index 0fb2c627f9b1ec76ae8a5cd8431099aeb96e6bb5..711f2bc08646d29133ee2c02548bf67efd80c3fb 100644 --- a/l10n/es/files.po +++ b/l10n/es/files.po @@ -5,6 +5,7 @@ # Translators: # Agustin Ferrario <>, 2012. # Agustin Ferrario , 2013. +# , 2013. # , 2012. # Javier Llorente , 2012. # , 2013. @@ -20,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: xsergiolpx \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \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" @@ -83,7 +84,7 @@ msgstr "La escritura en disco ha fallado" msgid "Not enough storage available" msgstr "No hay suficiente espacio disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directorio invalido." @@ -103,39 +104,46 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "deshacer" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "Eliminar" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "subiendo 1 archivo" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "subiendo archivos" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' es un nombre de archivo inválido." @@ -164,68 +172,60 @@ msgid "" "big." msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No ha sido posible subir tu archivo porque es un directorio o tiene 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Error al subir el archivo" - -#: js/files.js:274 -msgid "Close" -msgstr "cerrrar" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "subiendo 1 archivo" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "Subiendo {count} archivos" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "No hay suficiente espacio disponible" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Subida cancelada." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta invalido. El uso de \"Shared\" esta reservado para Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Error" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nombre" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Tamaño" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificado" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 carpeta" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} carpetas" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 archivo" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index f4c68c14f4c90f4cb7598baa6b5431dfc640ada0..3300c20e3c2c16837e4055f9448400420b1bf7cd 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/es/files_external.po b/l10n/es/files_external.po index 8b827af3ef8cec2fec4810b85151447fafccce90..57448b496cc73f6f6781a25674bcbb519b2415d4 100644 --- a/l10n/es/files_external.po +++ b/l10n/es/files_external.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Marcos \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -42,13 +42,13 @@ msgstr "Por favor , proporcione un secreto y una contraseña válida de la app D msgid "Error configuring Google Drive storage" msgstr "Error configurando el almacenamiento de Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 4b1847f27af71f1c39e0667b7af7c7789f455cb2..8f976d5650c6a92a0eed4af4225de26e136738ff 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/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-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 09:49+0000\n" -"Last-Translator: Rubén Trujillo \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -28,24 +28,24 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "No hay vista previa disponible para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Servicios web bajo su control" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index aaed94f5d3540158d3fd805d0e5dfe9b27fa546b..6467cca4813bebbdcbe4cc5b91bae92c488fd335 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 20:20+0000\n" -"Last-Translator: xsergiolpx \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -33,6 +33,10 @@ msgstr "No se puede restaurar %s" msgid "perform restore operation" msgstr "Restaurar" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Error" + #: js/trash.js:34 msgid "delete file permanently" msgstr "Eliminar archivo permanentemente" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 214d638d330571a8fba0aa6c23a0829010fb5c00..61295e5517abd040fadd397b614bc60592d09e81 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 22:51+0000\n" -"Last-Translator: vicentevrl \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -46,11 +46,11 @@ msgstr "fallo" msgid "File %s could not be reverted to version %s" msgstr "El archivo %s no puede ser revertido a la version %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hay versiones antiguas disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ruta no especificada" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 1fbfae9b268824d8c3a90854773d04d031f14674..a30ce7986eaa78031c7bc30efae0413c05c10448 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -3,21 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013. -# , 2013. -# , 2012. -# Marcos , 2013. -# Raul Fernandez Garcia , 2012. -# Ricardo A. Hermosilla Carrillo , 2013. -# Rubén Trujillo , 2012. -# , 2012. +# Agustin Ferrario , 2013 +# juanman , 2013 +# juanman , 2012 +# Marcos , 2013 +# Raul Fernandez Garcia , 2012 +# Ricardo Hermosilla , 2013 +# Rubén Trujillo , 2012 +# scambra , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Marcos \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \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" @@ -101,10 +101,6 @@ msgstr "Configurar un nombre de usuario del administrador" msgid "Set an admin password." msgstr "Configurar la contraseña del administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar la carpeta de datos." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/es/settings.po b/l10n/es/settings.po index 63989ebdbc557aaf9117435222bd5b8ad73a86bf..13236df5dc7bce569dafff856d83fb1e41492a31 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-23 00:03+0100\n" -"PO-Revision-Date: 2013-03-22 02:40+0000\n" -"Last-Translator: juanman \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \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" @@ -110,7 +110,7 @@ msgstr "Actualizado a {appversion}" msgid "Disable" msgstr "Desactivar" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activar" @@ -118,64 +118,64 @@ msgstr "Activar" msgid "Please wait...." msgstr "Espere por favor...." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Error" + +#: js/apps.js:90 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Error mientras se actualizaba" -#: js/apps.js:87 -msgid "Error" -msgstr "Error" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "borrado" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "deshacer" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "No se puede quitar el usuario" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eliminar" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "Añadir Grupo" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Se debe usar un nombre de usuario valido" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error al crear usuario" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Se debe usar una contraseña valida" @@ -334,11 +334,15 @@ msgstr "Nivel de Historial" msgid "More" msgstr "Más" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Menos" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index c3d87548a9b53165674a81a7c23b9b836d71bbac..305a875650d680849ee73030cccb52c39c87a214 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-21 00:04+0100\n" -"PO-Revision-Date: 2013-01-20 02:31+0000\n" -"Last-Translator: Agustin Ferrario \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \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" @@ -28,7 +28,7 @@ msgstr "Autenticación de WevDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index afa61493028675179cbb2d1d064e29952619f574..7a134d06ce6fa5d6ca4f3985d19d2528555a8e9e 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -163,86 +163,88 @@ msgstr "Diciembre" msgid "Settings" msgstr "Ajustes" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "hace 1 minuto" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hace {minutes} minutos" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Hace 1 hora" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hoy" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ayer" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "hace {days} días" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "el mes pasado" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "el año pasado" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "años atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Elegir" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Elegir" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sí" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "El tipo de objeto no esta especificado. " -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Error" @@ -262,7 +264,7 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Error al compartir" @@ -322,59 +324,59 @@ msgstr "compartido a través de e-mail:" msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Remover compartir" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "puede editar" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "control de acceso" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "crear" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "actualizar" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "borrar" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "compartir" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de caducidad" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Email enviado" @@ -534,23 +536,23 @@ msgstr "se utilizarán" msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Completar la instalación" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 70a66376b7cf59d6832356297ed3ccae315afcad..cd3608233170566e6c54ff66c5e527ff743e1fe9 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/files.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2012-2013. -# CJTess , 2013. -# , 2012-2013. -# Javier Victor Mariano Bruno , 2013. +# Agustin Ferrario , 2012-2013 +# cjtess , 2013 +# cjtess , 2012-2013 +# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 09:10+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" @@ -74,7 +74,7 @@ msgstr "Error al escribir en el disco" msgid "Not enough storage available" msgstr "No hay suficiente capacidad de almacenamiento" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directorio invalido." @@ -94,39 +94,46 @@ msgstr "Borrar" msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Pendiente" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} ya existe" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "reemplazar" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "sugerir nombre" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "reemplazado {new_name} con {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "deshacer" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "Eliminar" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "Subiendo 1 archivo" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "Subiendo archivos" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' es un nombre de archivo inválido." @@ -155,68 +162,60 @@ msgid "" "big." msgstr "Tu descarga esta siendo preparada. Esto puede tardar algun tiempo si los archivos son muy grandes." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "No fue posible subir el archivo porque es un directorio o porque su tamaño es 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Error al subir el archivo" - -#: js/files.js:274 -msgid "Close" -msgstr "Cerrar" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "No hay suficiente espacio disponible" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "Subiendo 1 archivo" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "Subiendo {count} archivos" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "La subida fue cancelada" -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "La URL no puede estar vacía" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Error" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nombre" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Tamaño" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificado" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 directorio" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} directorios" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 archivo" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} archivos" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index be26d5b095f5445f8de2e27d9d62bd4567540af0..e51d601c61b607cecdde2bf401845133c6721230 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 00:20+0100\n" -"PO-Revision-Date: 2013-02-11 16:00+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/es_AR/files_external.po b/l10n/es_AR/files_external.po index 503712efa1936173211b579abd01e463e41b368d..a5b2316b329b44f93237ee8d0b72ebda1e8dd37e 100644 --- a/l10n/es_AR/files_external.po +++ b/l10n/es_AR/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: juliabis \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Por favor, proporcioná un secreto y una contraseña válida para la apl msgid "Error configuring Google Drive storage" msgstr "Error al configurar el almacenamiento de Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Advertencia: El cliente smb (smbclient) no se encuentra instalado. El montado de archivos o ficheros CIFS/SMB no es posible. Por favor pida al administrador de su sistema que lo instale." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index 62233486fb0d792d78b73bc8d122c167d8e1b31d..bf0799a2226ad1bcd446d510d79f987e98601524 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/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-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 04:38+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servicios web controlados por vos" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index d2db48c94ddd9db4ad97205d5a1b28bf659739a0..b3f0b5a9fd4abb15f08d7b1cc5d8f4cf64f5b38e 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "No fue posible borrar %s de manera permanente" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "No se pudo restaurar %s" @@ -32,6 +32,10 @@ msgstr "No se pudo restaurar %s" msgid "perform restore operation" msgstr "Restaurar" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Error" + #: js/trash.js:34 msgid "delete file permanently" msgstr "Borrar archivo de manera permanente" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index db63d14a041af12ef8ad5ad95450d340e97880bd..b880bde3d920a418e2889a696956d77702bebe14 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 00:50+0000\n" -"Last-Translator: juliabis \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -43,11 +43,11 @@ msgstr "error" msgid "File %s could not be reverted to version %s" msgstr "El archivo %s no pudo ser revertido a la versión %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "No hay versiones antiguas disponibles" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ruta de acceso no especificada" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 3548c83c4716acc804e1a04f3f448dc3ca7fe203..20c71ecabd5a3dc4d60b81f80112ec3028ad0921 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Agustin Ferrario , 2013. -# CJTess , 2013. -# , 2012. -# Javier Victor Mariano Bruno , 2013. +# Agustin Ferrario , 2013 +# cjtess , 2013 +# cjtess , 2012 +# Javier Victor Mariano Bruno , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Configurar un nombre de administrador" msgid "Set an admin password." msgstr "Configurar una palabra clave de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar un directorio de datos" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 3bef9b9d41e15dd12ee1299e584b46a45767c8fb..6d8d5180772cc7f5d241b7481535e2610e8b9a99 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 14:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -96,7 +96,7 @@ msgstr "Actualizado a {appversion}" msgid "Disable" msgstr "Desactivar" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activar" @@ -104,64 +104,64 @@ msgstr "Activar" msgid "Please wait...." msgstr "Por favor, esperá...." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Error" + +#: js/apps.js:90 msgid "Updating...." msgstr "Actualizando...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Error al actualizar" -#: js/apps.js:87 -msgid "Error" -msgstr "Error" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "borrado" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "deshacer" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Imposible remover usuario" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Borrar" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "Agregar grupo" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Debe ingresar un nombre de usuario válido" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Error creando usuario" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Debe ingresar una contraseña válida" @@ -320,11 +320,15 @@ msgstr "Nivel de Log" msgid "More" msgstr "Más" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Menos" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versión" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index 6c88cac3fd09f92601d83b3db46ade2f069eea27..2d5007b68eab54574a821e53bdf02bebc4d4e743 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:22+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -28,7 +28,7 @@ msgstr "Autenticación de WevDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index bf3f11925127e95698616d7bfc07b90351b2f6db..73d7534b6136d0c99affca8f44a428d4f1ce2997 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pisike Sipelgas , 2013. # Rivo Zängov , 2011-2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -21,30 +22,30 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Kasutaja %s jagas Sinuga faili" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Kasutaja %s jagas Sinuga kataloogi." #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Kasutaja %s jagas Sinuga faili \"%s\". See on allalaadimiseks saadaval siin: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Kasutaja %s jagas Sinuga kataloogi \"%s\". See on allalaadimiseks saadaval siin: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Kategooria tüüp puudub." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -53,24 +54,24 @@ msgstr "Pole kategooriat, mida lisada?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "See kategooria juba eksisteerib: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Objekti tüüb puudub." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID puudub" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Viga %s lisamisel lemmikutesse." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -79,7 +80,7 @@ msgstr "Kustutamiseks pole kategooriat valitud." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Viga %s eemaldamisel lemmikutest" #: js/config.php:34 msgid "Sunday" @@ -161,106 +162,108 @@ msgstr "Detsember" msgid "Settings" msgstr "Seaded" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut tagasi" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutit tagasi" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 tund tagasi" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} tundi tagasi" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "täna" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "eile" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} päeva tagasi" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" -msgstr "" +msgstr "{months} kuud tagasi" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "aastat tagasi" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Vali" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Loobu" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Vali" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jah" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Objekti tüüb pole määratletud" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Viga" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Rakenduse nimi ole määratletud" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Vajalikku faili {file} pole paigaldatud!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Jagatud" #: js/share.js:90 msgid "Share" msgstr "Jaga" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Viga jagamisel" @@ -274,7 +277,7 @@ msgstr "Viga õiguste muutmisel" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Jagatud sinu ja {group} grupiga {owner} poolt" #: js/share.js:154 msgid "Shared with you by {owner}" @@ -298,11 +301,11 @@ msgstr "Parool" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "Saada link isikule emailiga" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "Saada" #: js/share.js:178 msgid "Set expiration date" @@ -320,72 +323,72 @@ msgstr "Jaga e-postiga:" msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "saab muuta" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "loo" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "uuenda" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "kustuta" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "jaga" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "Saadan ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "Email saadetud" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi." #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -475,36 +478,36 @@ msgstr "Turvahoiatus" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga." #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Palun uuenda oma paigaldatud PHP-d tagamaks ownCloudi turvalisus." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Turvalist juhuslike numbrite generaatorit pole saadaval. Palun luba PHP-s OpenSSL laiendus." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Ilma turvalise juhuslike numbrite generaatorita võib ründaja ennustada paroolivahetuse võtme ning hõivata su konto." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Su andmete kataloog ja failid on tõenäoliselt internetist vabalt saadaval kuna .htaccess fail ei toimi." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Serveri korrektseks seadistuseks palun tutvu dokumentatsiooniga." #: templates/installation.php:44 msgid "Create an admin account" @@ -532,23 +535,23 @@ msgstr "kasutatakse" msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Lõpeta seadistamine" @@ -588,7 +591,7 @@ msgstr "Logi sisse" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Alternatiivsed meldimised" #: templates/part.pagenavi.php:3 msgid "prev" @@ -601,4 +604,4 @@ msgstr "järgm" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Uuendan ownCloudi versioonile %s. Läheb pisut aega." diff --git a/l10n/et_EE/files.po b/l10n/et_EE/files.po index ffc50f16b81dee1fae3ca0f325ca5cd04cb380d9..9bfc400f497139c21a03f86c90946d3587c5be57 100644 --- a/l10n/et_EE/files.po +++ b/l10n/et_EE/files.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Pisike Sipelgas , 2013. # Rivo Zängov , 2011-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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,7 +23,7 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Ei saa liigutada faili %s - samanimeline fail on juba olemas" #: ajax/move.php:27 ajax/move.php:30 #, php-format @@ -44,7 +45,7 @@ msgstr "Ühtegi viga pole, fail on üles laetud" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Üleslaetava faili suurus ületab php.ini poolt määratud upload_max_filesize suuruse" #: ajax/upload.php:29 msgid "" @@ -72,7 +73,7 @@ msgstr "Kettale kirjutamine ebaõnnestus" msgid "Not enough storage available" msgstr "Saadaval pole piisavalt ruumi" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Vigane kaust." @@ -92,38 +93,45 @@ msgstr "Kustuta" msgid "Rename" msgstr "ümber" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Ootel" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} on juba olemas" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "asenda" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "soovita nime" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "loobu" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "asendas nime {old_name} nimega {new_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "tagasi" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "teosta kustutamine" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 faili üleslaadimisel" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "failide üleslaadimine" #: js/files.js:52 msgid "'.' is an invalid file name." @@ -141,80 +149,72 @@ msgstr "Vigane nimi, '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' pole lubatu #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Sinu andmemaht on täis! Faile ei uuendata ja sünkroniseerimist ei toimu!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Su andmemaht on peaaegu täis ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega kui on tegu suurte failidega. " -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Sinu faili üleslaadimine ebaõnnestus, kuna see on kaust või selle suurus on 0 baiti" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Üleslaadimise viga" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Pole piisavalt ruumi" -#: js/files.js:274 -msgid "Close" -msgstr "Sulge" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 faili üleslaadimisel" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} faili üleslaadimist" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Üleslaadimine tühistati." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL ei saa olla tühi." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Viga" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nimi" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Suurus" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Muudetud" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 kaust" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} kausta" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fail" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} faili" @@ -272,7 +272,7 @@ msgstr "Allikast" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Kustutatud failid" #: templates/index.php:48 msgid "Cancel upload" @@ -280,7 +280,7 @@ msgstr "Tühista üleslaadimine" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Siin puudvad Sul kirjutamisõigused." #: templates/index.php:62 msgid "Nothing in here. Upload something!" @@ -314,4 +314,4 @@ msgstr "Praegune skannimine" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Uuendan failisüsteemi puhvrit..." diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index c2fe900d3ac6bf9eb3b9d8b078be582246065a9a..8487c07b9f9a3eb9d984ace68d772b71e83078ea 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-13 00:03+0100\n" -"PO-Revision-Date: 2013-02-12 18:01+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/et_EE/files_external.po b/l10n/et_EE/files_external.po index 999202f7374234d866f07b50aff57fc36fd67e3f..23cd4c8a18a352f929c73114242781e49a611d38 100644 --- a/l10n/et_EE/files_external.po +++ b/l10n/et_EE/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pisike Sipelgas , 2013. # Rivo Zängov , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,18 +39,18 @@ msgstr "Palun sisesta korrektne Dropboxi rakenduse võti ja salasõna." msgid "Error configuring Google Drive storage" msgstr "Viga Google Drive'i salvestusruumi seadistamisel" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Hoiatus: \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "Hoiatus: FTP tugi puudub PHP paigalduses. Jagatud FTP hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata FTP tugi." #: templates/settings.php:3 msgid "External Storage" @@ -61,7 +62,7 @@ msgstr "Kausta nimi" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Väline andmehoidla" #: templates/settings.php:11 msgid "Configuration" @@ -77,7 +78,7 @@ msgstr "Rakendatav" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Lisa andmehoidla" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index c0302f73c0695ae76080e335801022aa77ce5aff..5f470a04c3e20064e570274c944df74e3b88249b 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-10-30 00:01+0100\n" -"PO-Revision-Date: 2012-10-29 22:43+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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,24 +26,24 @@ msgstr "Parool" msgid "Submit" msgstr "Saada" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lae alla" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 33291a6ce4448ed5f78892dc6e4d0f5a46d51c65..46f8a4c56d75fa9bf866d401f87c1b9a1d802965 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pisike Sipelgas , 2013. # Rivo Zängov , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +19,12 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s jäädavalt kustutamine ebaõnnestus" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "%s ei saa taastada" @@ -32,6 +33,10 @@ msgstr "%s ei saa taastada" msgid "perform restore operation" msgstr "soorita taastamine" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Viga" + #: js/trash.js:34 msgid "delete file permanently" msgstr "kustuta fail jäädavalt" @@ -78,4 +83,4 @@ msgstr "Kustuta" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Kustutatud failid" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index 77d1e70531ef50f71da3d940ac012af40d28a791..de58702159062c77dfc3a89134c624029b8ed338 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pisike Sipelgas , 2013. # Rivo Zängov , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -21,7 +22,7 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Ei suuda taastada faili: %s" #: history.php:40 msgid "success" @@ -30,7 +31,7 @@ msgstr "korras" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Fail %s taastati versioonile %s" #: history.php:49 msgid "failure" @@ -39,20 +40,20 @@ msgstr "ebaõnnestus" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Faili %s ei saa taastada versioonile %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Vanu versioone pole saadaval" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Asukohta pole määratud" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versioonid" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Taasta fail varasemale versioonile klikkides \"Revert\" nupule" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index e9c41ebe2614db0ccbda99a36e25744a446712d5..19268960f2283a9c9a5feeac74c676313219f531 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rivo Zängov , 2012-2013. +# pisike.sipelgas , 2013 +# Rivo Zängov , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -60,7 +61,7 @@ msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "Ei suuda tuvastada" #: json.php:28 msgid "Application is not enabled" @@ -94,45 +95,41 @@ msgstr "Määra admin kasutajanimi." msgid "Set an admin password." msgstr "Määra admini parool." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Määra andmete kaust." - #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s sisesta andmebaasi kasutajatunnus" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s sisesta andmebaasi nimi." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s punktide kasutamine andmebaasi nimes pole lubatud" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s määra andmebaasi server." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL kasutajatunnus ja/või parool pole õiged" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Sisesta kas juba olemasolev konto või administrator." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle kasutajatunnus ja/või parool pole õiged" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "MySQL kasutajatunnus ja/või parool pole õiged" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -147,12 +144,12 @@ msgstr "Andmebaasi viga: \"%s\"" #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Tõrkuv käsk oli: \"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL kasutaja '%s'@'localhost' on juba olemas." #: setup.php:304 msgid "Drop this user from MySQL" @@ -161,7 +158,7 @@ msgstr "Kustuta see kasutaja MySQL-ist" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL kasutaja '%s'@'%%' on juba olemas" #: setup.php:310 msgid "Drop this user from MySQL." @@ -170,23 +167,23 @@ msgstr "Kustuta see kasutaja MySQL-ist." #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL kasutajatunnus ja/või parool pole õiged: %s" #: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Palun tutvu veelkord paigalduse juhenditega." #: template.php:113 msgid "seconds ago" @@ -256,4 +253,4 @@ msgstr "uuenduste kontrollimine on välja lülitatud" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Ei leia kategooriat \"%s\"" diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index a1c6aebc2d6765e27b39b7d9dde77918b59961e8..3532232094f7fde8631e2423bc4e6bd61b24b9ce 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Pisike Sipelgas , 2013. # Rivo Zängov , 2011-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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,7 +31,7 @@ msgstr "Autentimise viga" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "Ei saa muuta kuvatavat nime" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -70,7 +71,7 @@ msgstr "Vigane päring" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Administraatorid ei saa ise end eemaldada admin grupist" #: ajax/togglegroups.php:30 #, php-format @@ -94,7 +95,7 @@ msgstr "Uuenda versioonile {appversion}" msgid "Disable" msgstr "Lülita välja" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Lülita sisse" @@ -102,66 +103,66 @@ msgstr "Lülita sisse" msgid "Please wait...." msgstr "Palun oota..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Viga" + +#: js/apps.js:90 msgid "Updating...." msgstr "Uuendamine..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Viga rakenduse uuendamisel" -#: js/apps.js:87 -msgid "Error" -msgstr "Viga" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Uuendatud" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvestamine..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "kustutatud" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "tagasi" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "Ei suuda kustutada kasutajat" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupid" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupi admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Kustuta" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "lisa grupp" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "Sisesta nõuetele vastav kasutajatunnus" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Viga kasutaja loomisel" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "Sisesta nõuetele vastav parool" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -178,36 +179,36 @@ 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 "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, mida pakub ownCloud, ei toimi. Soovitame tungivalt veebiserveri seadistust selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi-juurkataloogist mujale." #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Paigalduse hoiatus" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Palun tutvu veelkord paigalduse juhenditega." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Moodul 'fileinfo' puudub" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Lokalisatsioon ei toimi" #: templates/admin.php:63 #, php-format @@ -215,11 +216,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "ownCloud server ei suuda seadistada süsteemi lokalisatsiooni %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Internetiühendus ei toimi" #: templates/admin.php:78 msgid "" @@ -229,27 +230,27 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "ownCloud serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Käivita toiming lehe laadimisel" #: templates/admin.php:111 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 on registreeritud webcron teenusena. Lae cron.php lehte owncloud veebikataloogist iga minut üle http." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Kasuta süsteemi cron teenust. Käivita cron.php fail owncloud veebikataloogist kasutades süsteemi crontab toimingut iga minut." #: templates/admin.php:128 msgid "Sharing" @@ -257,35 +258,35 @@ msgstr "Jagamine" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Luba Share API" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Luba rakendustel kasutada Share API-t" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Luba lingid" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Luba edasijagamine" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Luba kasutajatel kõigiga jagada" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" #: templates/admin.php:168 msgid "Security" @@ -298,13 +299,13 @@ msgstr "Sunni peale HTTPS-i kasutamine" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "Sunnib kliente ownCloudiga ühenduma krüpteeritult." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "Palun ühendu selle ownCloud instantsiga üle HTTPS või keela SSL kasutamine." #: templates/admin.php:195 msgid "Log" @@ -318,11 +319,15 @@ msgstr "Logi tase" msgid "More" msgstr "Rohkem" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Vähem" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versioon" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "Arendatud ownCloud kogukonna poolt. Lähtekood on avaldatud ja kaetud AGPL litsentsiga." #: templates/apps.php:11 msgid "Add your App" @@ -383,15 +388,15 @@ msgstr "Tasuine kasutajatugi" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Kasutad %s saadavalolevast %s" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Hangi rakendusi failide sünkroniseerimiseks" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Näita veelkord Esmase Käivituse Juhendajat" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" @@ -423,11 +428,11 @@ msgstr "Näidatav nimi" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "Sinu kuvatav nimi muutus" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "Ei suuda muuta kuvatavat nime" #: templates/personal.php:61 msgid "Change display name" @@ -459,7 +464,7 @@ msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" @@ -471,7 +476,7 @@ msgstr "Lisa" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Vaikimisi maht" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" @@ -483,7 +488,7 @@ msgstr "Muu" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "Maht" #: templates/users.php:95 msgid "change display name" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index fac9cdb6af9bfe2f74359571a29e3dee33e89d4b..9da3698683dc9665b3ba528ace85ce4536a4c850 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/user_ldap.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pisike Sipelgas , 2013. # Rivo Zängov , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -20,23 +21,23 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Serveri seadistuse kustutamine ebaõnnestus" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Seadistus on korrektne ning ühendus on olemas!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "Seadistus on korrektne, kuid ühendus ebaõnnestus. Palun kontrolli serveri seadeid ja ühenduseks kasutatavaid kasutajatunnuseid." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Seadistus on vigane. Palun vaata ownCloud logist täpsemalt." #: js/settings.js:66 msgid "Deletion failed" @@ -44,52 +45,52 @@ msgstr "Kustutamine ebaõnnestus" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "Võta sätted viimasest serveri seadistusest?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Säilitada seadistus?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Ei suuda lisada serveri seadistust" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "Test ühendus õnnestus" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "Test ühendus ebaõnnestus" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Oled kindel, et tahad kustutada praegust serveri seadistust?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "Kinnita kustutamine" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada." #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "Serveri seadistus" #: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "Lisa serveri seadistus" #: templates/settings.php:36 msgid "Host" @@ -106,7 +107,7 @@ msgstr "Baas DN" #: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "Üks baas-DN rea kohta" #: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" @@ -173,15 +174,15 @@ msgstr "ilma ühegi kohatäitjata, nt. \"objectClass=posixGroup\"." #: templates/settings.php:68 msgid "Connection Settings" -msgstr "" +msgstr "Ühenduse seaded" #: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "Seadistus aktiivne" #: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "Kui märkimata, siis seadistust ei kasutata" #: templates/settings.php:71 msgid "Port" @@ -189,25 +190,25 @@ msgstr "Port" #: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Varuserver" #: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "Lisa täiendav LDAP/AD server, mida replikeeritakse peaserveriga." #: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Varuserveri (replika) ldap port" #: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "Ära kasuta peaserverit" #: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "Märgituna ownCloud ühendub ainult varuserverisse." #: templates/settings.php:75 msgid "Use TLS" @@ -215,7 +216,7 @@ msgstr "Kasutaja TLS" #: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "LDAPS puhul ära kasuta. Ühendus ei toimi." #: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" @@ -237,7 +238,7 @@ msgstr "Pole soovitatav, kasuta ainult testimiseks." #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Puhvri iga" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -245,7 +246,7 @@ msgstr "sekundites. Muudatus tühjendab vahemälu." #: templates/settings.php:80 msgid "Directory Settings" -msgstr "" +msgstr "Kataloogi seaded" #: templates/settings.php:82 msgid "User Display Name Field" @@ -261,15 +262,15 @@ msgstr "Baaskasutaja puu" #: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "Üks kasutajate baas-DN rea kohta" #: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "Kasutaja otsingu atribuudid" #: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "Valikuline; üks atribuut rea kohta" #: templates/settings.php:85 msgid "Group Display Name Field" @@ -285,11 +286,11 @@ msgstr "Baasgrupi puu" #: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "Üks grupi baas-DN rea kohta" #: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "Grupi otsingu atribuudid" #: templates/settings.php:88 msgid "Group-Member association" @@ -297,15 +298,15 @@ msgstr "Grupiliikme seotus" #: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "Spetsiifilised atribuudid" #: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Mahupiirangu atribuut" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Vaikimisi mahupiirang" #: templates/settings.php:93 msgid "in bytes" @@ -313,11 +314,11 @@ msgstr "baitides" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Email atribuut" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Kasutaja kodukataloogi nimetamise reegel" #: templates/settings.php:95 msgid "" @@ -327,7 +328,7 @@ msgstr "Kasutajanime (vaikeväärtus) kasutamiseks jäta tühjaks. Vastasel juhu #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Testi seadistust" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index f4cdd7354ca8f3416891c8753a5a2653f93b95b0..a25893ddd1c9301560efc1a5d36d08c4ff7251a4 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Pisike Sipelgas , 2013. # Rivo Zängov , 2012-2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-13 00:03+0100\n" -"PO-Revision-Date: 2013-02-12 17:40+0000\n" -"Last-Translator: Rivo Zängov \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -31,4 +32,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud saadab kasutajatunnused sellel aadressil. See vidin kontrollib vastust ning tuvastab HTTP vastuskoodid 401 ja 403 kui vigased, ning kõik teised vastused kui korrektsed kasutajatunnused." diff --git a/l10n/eu/core.po b/l10n/eu/core.po index 1b0dbce98f16061de4e4d1e6fdff70fbd92347ee..6fa4ebaaf0f17be9cc6b42fbac4beace8b9592cf 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -164,86 +164,88 @@ msgstr "Abendua" msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "segundu" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "orain dela minutu 1" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "orain dela {minutes} minutu" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "orain dela ordu bat" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "orain dela {hours} ordu" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "gaur" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "atzo" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "orain dela {days} egun" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "orain dela {months} hilabete" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "hilabete" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "joan den urtean" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "urte" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Aukeratu" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ados" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Ezeztatu" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ez" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Aukeratu" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Bai" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ados" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ez" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Objetu mota ez dago zehaztuta." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Errorea" @@ -263,7 +265,7 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" @@ -323,59 +325,59 @@ msgstr "Elkarbanatu eposta bidez:" msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "sortu" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "eguneratu" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ezabatu" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "elkarbanatu" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Eposta bidalia" @@ -535,23 +537,23 @@ msgstr "erabiliko da" msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Bukatu konfigurazioa" diff --git a/l10n/eu/files.po b/l10n/eu/files.po index e8da36f101016fe0cc39f8adbd80a0ff1f7e971c..0f710284f4f5c73014a0bb63b8cdeebac7fbfa20 100644 --- a/l10n/eu/files.po +++ b/l10n/eu/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -74,7 +74,7 @@ msgstr "Errore bat izan da diskoan idazterakoan" msgid "Not enough storage available" msgstr "Ez dago behar aina leku erabilgarri," -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Baliogabeko karpeta." @@ -94,39 +94,46 @@ msgstr "Ezabatu" msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Zain" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} dagoeneko existitzen da" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "ordeztu" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "aholkatu izena" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "ezeztatu" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr " {new_name}-k {old_name} ordezkatu du" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "desegin" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "Ezabatu" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "fitxategi 1 igotzen" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' ez da fitxategi izen baliogarria." @@ -155,68 +162,60 @@ msgid "" "big." msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak handiak badira. " -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Ezin da zure fitxategia igo, karpeta bat da edo 0 byt ditu" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Igotzean errore bat suertatu da" - -#: js/files.js:274 -msgid "Close" -msgstr "Itxi" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Ez dago leku nahikorik." -#: js/files.js:313 -msgid "1 file uploading" -msgstr "fitxategi 1 igotzen" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} fitxategi igotzen" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Igoera ezeztatuta" -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URLa ezin da hutsik egon." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Errorea" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Izena" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Tamaina" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "karpeta bat" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} karpeta" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "fitxategi bat" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} fitxategi" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index d62efe1ac98cc7be7d0ec919e80bdee0191fb145..eea7795bbc138c339ad903c13bfd08ef534d2f91 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-13 00:03+0100\n" -"PO-Revision-Date: 2013-02-12 22:00+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/eu/files_external.po b/l10n/eu/files_external.po index ae8dba2dd86fda18a5b156bb064d6f5ef6b4502b..4cb0843ae5d0e6932804e66cdc1687b1b6d4cf34 100644 --- a/l10n/eu/files_external.po +++ b/l10n/eu/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -39,13 +39,13 @@ msgstr "Mesedez eman baliozkoa den Dropbox app giltza eta sekretua" msgid "Error configuring Google Drive storage" msgstr "Errore bat egon da Google Drive biltegiratzea konfiguratzean" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Abisua: \"smbclient\" ez dago instalatuta. CIFS/SMB partekatutako karpetak montatzea ez da posible. Mesedez eskatu zure sistema kudeatzaileari instalatzea." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 1b97a4c57e96984ece2967c7b2fcd8883f62e2b9..89c6272ac7453657cace4d0caa33cbf5ee15ca85 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/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-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 13:26+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "Pasahitza" msgid "Submit" msgstr "Bidali" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 484e0d33edaf118a2501c9a62c9a0a8b72240393..0aea8466bd5d3dbbe61d1c5b3eebd41c1995ac97 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Ezin izan da %s betirako ezabatu" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" @@ -32,6 +32,10 @@ msgstr "Ezin izan da %s berreskuratu" msgid "perform restore operation" msgstr "berreskuratu" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Errorea" + #: js/trash.js:34 msgid "delete file permanently" msgstr "ezabatu fitxategia betirako" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 867a9523a0917df667f87fb39afe8c08fff3d9a5..7fdbf14c0ddc427b82124b34b058060d6a917503 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/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: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 21:30+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index fb82ff08496bed20943d7bd9bb866a6cf10c462c..912f19f241f5e55e4ec2f120faac8326d8ebe997 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. +# asieriko , 2013 +# asieriko , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,10 +95,6 @@ msgstr "Ezarri administraziorako erabiltzaile izena." msgid "Set an admin password." msgstr "Ezarri administraziorako pasahitza." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Zehaztu data karpeta." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 0f589e657ac75c2d3012138a2f2e2ad75d00d035..4f70111c6ecdbe04408695c7e77c9e5817ab1dfc 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:06+0100\n" -"PO-Revision-Date: 2013-03-02 21:40+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -96,7 +96,7 @@ msgstr "Eguneratu {appversion}-ra" msgid "Disable" msgstr "Ez-gaitu" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Gaitu" @@ -104,64 +104,64 @@ msgstr "Gaitu" msgid "Please wait...." msgstr "Itxoin mesedez..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Errorea" + +#: js/apps.js:90 msgid "Updating...." msgstr "Eguneratzen..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Errorea aplikazioa eguneratzen zen bitartean" -#: js/apps.js:87 -msgid "Error" -msgstr "Errorea" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Eguneratuta" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gordetzen..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "ezabatuta" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "desegin" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Ezin izan da erabiltzailea aldatu" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Taldeak" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Talde administradorea" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ezabatu" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "gehitu taldea" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Baliozko erabiltzaile izena eman behar da" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Errore bat egon da erabiltzailea sortzean" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Baliozko pasahitza eman behar da" @@ -320,11 +320,15 @@ msgstr "Erregistro maila" msgid "More" msgstr "Gehiago" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Gutxiago" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index ada89a92f4d221189fb7dc503c3ca010f2cd25e3..7128f70cb6a1bc9da552ecfa3f3d1edabb014079 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-20 00:05+0100\n" -"PO-Revision-Date: 2013-01-18 23:47+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -27,7 +27,7 @@ msgstr "WebDAV Autentikazioa" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/fa/core.po b/l10n/fa/core.po index a53d51831f4de4c98816059d9aefe9b3c787ae6f..9178afa90635274759acf54e84cbfcad0644ec20 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -162,86 +162,88 @@ msgstr "دسامبر" msgid "Settings" msgstr "تنظیمات" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 دقیقه پیش" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{دقیقه ها} دقیقه های پیش" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ساعت پیش" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{ساعت ها} ساعت ها پیش" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "امروز" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "دیروز" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{روزها} روزهای پیش" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "ماه قبل" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{ماه ها} ماه ها پیش" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "سال قبل" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "سال‌های قبل" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "انتخاب کردن" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "قبول" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "منصرف شدن" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "نه" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "انتخاب کردن" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "بله" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "قبول" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "نه" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "نوع شی تعیین نشده است." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "خطا" @@ -261,7 +263,7 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گزاری" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" @@ -321,59 +323,59 @@ msgstr "از طریق ایمیل به اشتراک بگذارید :" msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "ایجاد" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "به روز" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "پاک کردن" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "ایمیل ارسال شد" @@ -476,11 +478,11 @@ msgstr "اخطار امنیتی" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "نسخه ی PHP شما در برابر حملات NULL Byte آسیب پذیر است.(CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "لطفا برنامه ی PHP خودتان را بروز کنید تا بتوانید ایمن تر از ownCloud استفاده کنید." #: templates/installation.php:32 msgid "" @@ -533,23 +535,23 @@ msgstr "استفاده خواهد شد" msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "اتمام نصب" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index 2c174dc89965e4b9caa30233d9b7ccf947508671..6e2cacffc31eedc831a9fb71ca9c26d8f349d02e 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -74,7 +74,7 @@ msgstr "نوشتن بر روی دیسک سخت ناموفق بود" msgid "Not enough storage available" msgstr "فضای کافی در دسترس نیست" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "فهرست راهنما نامعتبر می باشد." @@ -94,39 +94,46 @@ msgstr "پاک کردن" msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "در انتظار" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{نام _جدید} در حال حاضر وجود دارد." -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "جایگزین" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "پیشنهاد نام" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "لغو" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "بازگشت" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "انجام عمل حذف" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 پرونده آپلود شد." + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "بارگذاری فایل ها" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' یک نام پرونده نامعتبر است." @@ -155,68 +162,60 @@ msgid "" "big." msgstr "دانلود شما در حال آماده شدن است. در صورتیکه پرونده ها بزرگ باشند ممکن است مدتی طول بکشد." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ناتوان در بارگذاری یا فایل یک پوشه است یا 0بایت دارد" -#: js/files.js:263 -msgid "Upload Error" -msgstr "خطا در بار گذاری" - -#: js/files.js:274 -msgid "Close" -msgstr "بستن" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 پرونده آپلود شد." - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{ شمار } فایل های در حال آپلود" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "فضای کافی در دسترس نیست" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "بار گذاری لغو شد" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "آپلودکردن پرونده در حال پیشرفت است. در صورت خروج از صفحه آپلود لغو میگردد. " -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL نمی تواند خالی باشد." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "خطا" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "نام" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "اندازه" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "تغییر یافته" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 پوشه" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{ شمار} پوشه ها" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 پرونده" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{ شمار } فایل ها" diff --git a/l10n/fa/files_encryption.po b/l10n/fa/files_encryption.po index f9ee7fcc63baa9e486469e7dc68a5a5abe34b9ad..a4b3d25d08e15b56a0f94b325ee50fbe2f9e21ec 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 11:40+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/fa/files_external.po b/l10n/fa/files_external.po index 99b3b036b7533dfcfd8891c7ecf68c6ccb6fa3fc..b881ebe5588180c003670205217de10cbeb4be04 100644 --- a/l10n/fa/files_external.po +++ b/l10n/fa/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,13 +38,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index e72b1ce1dc6c506b90f966f49e58224ae7d1810a..c4814707286c33e296031f36a37146b220ffd549 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/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: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 11:20+0000\n" -"Last-Translator: Amir Reza Asadi \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "گذرواژه" msgid "Submit" msgstr "ثبت" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "دانلود" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "سرویس های تحت وب در کنترل شما" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 6951bdad581aec9aaec8a8c06bd840160e209d0d..56b1199bd60ed57645804c9f34552fd580c2e0ee 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-16 22:17+0100\n" -"PO-Revision-Date: 2013-03-16 08:21+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s را نمی توان برای همیشه حذف کرد" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" @@ -32,6 +32,10 @@ msgstr "%s را نمی توان بازگرداند" msgid "perform restore operation" msgstr "انجام عمل بازگرداندن" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "خطا" + #: js/trash.js:34 msgid "delete file permanently" msgstr "حذف فایل برای همیشه" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index 325fdb2a87fb69edeff7af7b8667ed709a401a6f..2e38afda4e726bc1f9ce71a767b00f6a90df80f6 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -43,11 +43,11 @@ msgstr "شکست" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "هیچ نسخه قدیمی در دسترس نیست" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "هیچ مسیری مشخص نشده است" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index 74f0809773ee9e08c4196f9c4cda8228963eb502..db4d2de1ce7e35d8cb833d185da01ee76eec0673 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Amir Reza Asadi , 2013. -# mahdi Kereshteh , 2013. -# Mohammad Dashtizadeh , 2012. +# Amir Reza Asadi , 2013 +# miki_mika1362 , 2013 +# Mohammad Dashtizadeh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "پوشه ای برای داده ها مشخص کنید." - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -183,12 +179,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." #: template.php:113 msgid "seconds ago" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 7587c1a0212e50262b804b60767def2d3ae7560e..a39dc9e68bb876eaed2f46b87f3af987da3c7cc5 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/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: 2013-03-16 22:17+0100\n" -"PO-Revision-Date: 2013-03-16 07:10+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -98,7 +98,7 @@ msgstr "بهنگام شده به {appversion}" msgid "Disable" msgstr "غیرفعال" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "فعال" @@ -106,64 +106,64 @@ msgstr "فعال" msgid "Please wait...." msgstr "لطفا صبر کنید ..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "خطا" + +#: js/apps.js:90 msgid "Updating...." msgstr "در حال بروز رسانی..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "خطا در هنگام بهنگام سازی برنامه" -#: js/apps.js:87 -msgid "Error" -msgstr "خطا" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "بروز رسانی انجام شد" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "درحال ذخیره ..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "حذف شده" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "بازگشت" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "حذف کاربر امکان پذیر نیست" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "گروه ها" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" -msgstr "" +msgstr "گروه مدیران" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "پاک کردن" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "افزودن گروه" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "نام کاربری صحیح باید وارد شود" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "خطا در ایجاد کاربر" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "رمز عبور صحیح باید وارد شود" @@ -182,7 +182,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:29 msgid "Setup Warning" @@ -192,22 +192,22 @@ msgstr "هشدار راه اندازی" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "ماژول 'fileinfo' از کار افتاده" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." #: templates/admin.php:58 msgid "Locale not working" @@ -219,7 +219,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم." #: templates/admin.php:75 msgid "Internet connection not working" @@ -233,7 +233,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید." #: templates/admin.php:92 msgid "Cron" @@ -241,7 +241,7 @@ msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" #: templates/admin.php:111 msgid "" @@ -261,15 +261,15 @@ msgstr "اشتراک گذاری" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "فعال کردن API اشتراک گذاری" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "اجازه ی لینک ها" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" @@ -277,19 +277,19 @@ msgstr "اجازه دادن به کاربران برای اشتراک گذاری #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "مجوز اشتراک گذاری مجدد" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "اجازه به کابران برای اشتراک گذاری با همه" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" #: templates/admin.php:168 msgid "Security" @@ -297,12 +297,12 @@ msgstr "امنیت" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "وادار کردن HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط" #: templates/admin.php:185 msgid "" @@ -322,11 +322,15 @@ msgstr "" msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "کم‌تر" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "نسخه" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "توسعه یافته به وسیله ی انجمن ownCloud, the کد اصلی مجاز زیر گواهی AGPL." #: templates/apps.php:11 msgid "Add your App" @@ -354,7 +358,7 @@ msgstr "صفحه این اٌپ را در apps.owncloud.com ببینید" #: templates/apps.php:36 msgid "-licensed by " -msgstr "" +msgstr "-مجاز از طرف " #: templates/apps.php:38 msgid "Update" @@ -387,11 +391,11 @@ msgstr "پشتیبانی تجاری" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "شما استفاده کردید از %s از میزان در دسترس %s" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید" #: templates/personal.php:26 msgid "Show First Run Wizard again" diff --git a/l10n/fa/user_ldap.po b/l10n/fa/user_ldap.po index 59c855c010f3ead9a4a5aa7030073408ba603840..be344210e59805fd19c2411a16ec1656e6169b3c 100644 --- a/l10n/fa/user_ldap.po +++ b/l10n/fa/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: miki_mika1362 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index e4088da32dd6c3c42af2336a690dd7e4b994bd7e..5b69bafee6b7455ce577debd49e35bedc60779f2 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/fi/core.po b/l10n/fi/core.po index a291bd3898726ff638aec3508e04c014ace18000..4a0b4df42efa99d484af0f36896a23dc6f93de4a 100644 --- a/l10n/fi/core.po +++ b/l10n/fi/core.po @@ -7,211 +7,388 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-18 02:03+0200\n" -"PO-Revision-Date: 2012-10-18 00:04+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: LANGUAGE \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" -#: ajax/vcategories/add.php:23 ajax/vcategories/delete.php:23 -msgid "Application name not provided." +#: ajax/share.php:97 +#, php-format +msgid "User %s shared a file with you" msgstr "" -#: ajax/vcategories/add.php:29 +#: ajax/share.php:99 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:101 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:104 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 msgid "No category to add?" msgstr "" -#: ajax/vcategories/add.php:36 -msgid "This category already exists: " +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" msgstr "" -#: js/js.js:238 templates/layout.user.php:49 templates/layout.user.php:50 -msgid "Settings" +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:34 +msgid "Sunday" +msgstr "" + +#: js/config.php:35 +msgid "Monday" +msgstr "" + +#: js/config.php:36 +msgid "Tuesday" +msgstr "" + +#: js/config.php:37 +msgid "Wednesday" +msgstr "" + +#: js/config.php:38 +msgid "Thursday" +msgstr "" + +#: js/config.php:39 +msgid "Friday" +msgstr "" + +#: js/config.php:40 +msgid "Saturday" msgstr "" -#: js/js.js:670 +#: js/config.php:45 msgid "January" msgstr "" -#: js/js.js:670 +#: js/config.php:46 msgid "February" msgstr "" -#: js/js.js:670 +#: js/config.php:47 msgid "March" msgstr "" -#: js/js.js:670 +#: js/config.php:48 msgid "April" msgstr "" -#: js/js.js:670 +#: js/config.php:49 msgid "May" msgstr "" -#: js/js.js:670 +#: js/config.php:50 msgid "June" msgstr "" -#: js/js.js:671 +#: js/config.php:51 msgid "July" msgstr "" -#: js/js.js:671 +#: js/config.php:52 msgid "August" msgstr "" -#: js/js.js:671 +#: js/config.php:53 msgid "September" msgstr "" -#: js/js.js:671 +#: js/config.php:54 msgid "October" msgstr "" -#: js/js.js:671 +#: js/config.php:55 msgid "November" msgstr "" -#: js/js.js:671 +#: js/config.php:56 msgid "December" msgstr "" -#: js/oc-dialogs.js:123 -msgid "Choose" +#: js/js.js:286 +msgid "Settings" +msgstr "asetukset" + +#: js/js.js:718 +msgid "seconds ago" msgstr "" -#: js/oc-dialogs.js:143 js/oc-dialogs.js:163 +#: js/js.js:719 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:720 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:721 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:722 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:723 +msgid "today" +msgstr "" + +#: js/js.js:724 +msgid "yesterday" +msgstr "" + +#: js/js.js:725 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:726 +msgid "last month" +msgstr "" + +#: js/js.js:727 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:728 +msgid "months ago" +msgstr "" + +#: js/js.js:729 +msgid "last year" +msgstr "" + +#: js/js.js:730 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:159 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:160 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:177 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" -#: js/oc-vcategories.js:68 -msgid "No categories selected for deletion." +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:68 js/share.js:114 js/share.js:121 js/share.js:497 -#: js/share.js:509 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" -#: js/share.js:103 +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" -#: js/share.js:114 +#: js/share.js:136 msgid "Error while unsharing" msgstr "" -#: js/share.js:121 +#: js/share.js:143 msgid "Error while changing permissions" msgstr "" -#: js/share.js:130 +#: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:132 +#: js/share.js:154 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:137 +#: js/share.js:159 msgid "Share with" msgstr "" -#: js/share.js:142 +#: js/share.js:164 msgid "Share with link" msgstr "" -#: js/share.js:143 +#: js/share.js:167 msgid "Password protect" msgstr "" -#: js/share.js:147 templates/installation.php:42 templates/login.php:24 -#: templates/verify.php:13 +#: js/share.js:169 templates/installation.php:54 templates/login.php:35 msgid "Password" msgstr "" -#: js/share.js:152 +#: js/share.js:173 +msgid "Email link to person" +msgstr "" + +#: js/share.js:174 +msgid "Send" +msgstr "" + +#: js/share.js:178 msgid "Set expiration date" msgstr "" -#: js/share.js:153 +#: js/share.js:179 msgid "Expiration date" msgstr "" -#: js/share.js:185 +#: js/share.js:211 msgid "Share via email:" msgstr "" -#: js/share.js:187 +#: js/share.js:213 msgid "No people found" msgstr "" -#: js/share.js:214 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:250 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:271 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:283 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:285 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:288 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:291 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:294 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:297 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:322 js/share.js:484 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:497 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:509 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: lostpassword/index.php:26 +#: js/share.js:604 +msgid "Sending ..." +msgstr "" + +#: js/share.js:615 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:48 msgid "ownCloud password reset" msgstr "" @@ -224,17 +401,17 @@ msgid "You will receive a link to reset your password via Email." msgstr "" #: lostpassword/templates/lostpassword.php:5 -msgid "Requested" +msgid "Reset email send." msgstr "" #: lostpassword/templates/lostpassword.php:8 -msgid "Login failed!" +msgid "Request failed!" msgstr "" -#: lostpassword/templates/lostpassword.php:11 templates/installation.php:38 -#: templates/login.php:20 +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 +#: templates/login.php:28 msgid "Username" -msgstr "" +msgstr "Käyttäjätunnus" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" @@ -288,116 +465,130 @@ msgstr "" msgid "Edit categories" msgstr "" -#: templates/edit_categories_dialog.php:14 +#: templates/edit_categories_dialog.php:16 msgid "Add" msgstr "" -#: templates/installation.php:23 templates/installation.php:31 +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 msgid "Security Warning" msgstr "" -#: templates/installation.php:24 +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." msgstr "" -#: templates/installation.php:26 +#: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." msgstr "" -#: templates/installation.php:32 +#: templates/installation.php:39 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." +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." msgstr "" -#: templates/installation.php:36 +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:44 msgid "Create an admin account" msgstr "" -#: templates/installation.php:48 +#: templates/installation.php:62 msgid "Advanced" msgstr "" -#: templates/installation.php:50 +#: templates/installation.php:64 msgid "Data folder" msgstr "" -#: templates/installation.php:57 +#: templates/installation.php:73 msgid "Configure the database" msgstr "" -#: templates/installation.php:62 templates/installation.php:73 -#: templates/installation.php:83 templates/installation.php:93 +#: templates/installation.php:78 templates/installation.php:90 +#: templates/installation.php:101 templates/installation.php:112 +#: templates/installation.php:124 msgid "will be used" msgstr "" -#: templates/installation.php:105 +#: templates/installation.php:136 msgid "Database user" msgstr "" -#: templates/installation.php:109 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:113 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:121 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:127 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:132 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:38 +#: templates/layout.guest.php:40 msgid "web services under your control" msgstr "" -#: templates/layout.user.php:34 +#: templates/layout.user.php:58 msgid "Log out" msgstr "" -#: templates/login.php:8 +#: templates/login.php:10 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:9 +#: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:10 +#: templates/login.php:13 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:15 +#: templates/login.php:19 msgid "Lost your password?" msgstr "" -#: templates/login.php:27 +#: templates/login.php:41 msgid "remember" msgstr "" -#: templates/login.php:28 +#: templates/login.php:43 msgid "Log in" msgstr "" -#: templates/logout.php:1 -msgid "You are logged out." +#: templates/login.php:49 +msgid "Alternative Logins" msgstr "" #: templates/part.pagenavi.php:3 @@ -408,16 +599,7 @@ msgstr "" msgid "next" msgstr "" -#: templates/verify.php:5 -msgid "Security Warning!" -msgstr "" - -#: templates/verify.php:6 -msgid "" -"Please verify your password.
For security reasons you may be " -"occasionally asked to enter your password again." -msgstr "" - -#: templates/verify.php:16 -msgid "Verify" +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." msgstr "" diff --git a/l10n/fi/files.po b/l10n/fi/files.po index 4c5ac38cc78647d6d4e78bc970e18bf74b67b395..ccb82381a2d2f5cd861a3b692d2bc72f96d19e3c 100644 --- a/l10n/fi/files.po +++ b/l10n/fi/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +70,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -151,68 +158,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/fi/lib.po b/l10n/fi/lib.po index 6ed65abd5e957def7b3356d4940b97f95e7f6f5a..8797335cbcd06404725859c519219d15e42184b5 100644 --- a/l10n/fi/lib.po +++ b/l10n/fi/lib.po @@ -7,61 +7,65 @@ 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" -"Language-Team: Finnish (http://www.transifex.com/projects/p/owncloud/language/fi/)\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: LANGUAGE \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" -#: app.php:288 +#: app.php:349 msgid "Help" msgstr "" -#: app.php:295 +#: app.php:362 msgid "Personal" msgstr "" -#: app.php:300 +#: app.php:373 msgid "Settings" -msgstr "" +msgstr "asetukset" -#: app.php:305 +#: app.php:385 msgid "Users" msgstr "" -#: app.php:312 +#: app.php:398 msgid "Apps" msgstr "" -#: app.php:314 +#: app.php:406 msgid "Admin" msgstr "" -#: files.php:280 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:281 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:281 files.php:306 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:305 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + #: json.php:28 msgid "Application is not enabled" msgstr "" -#: json.php:39 json.php:63 json.php:75 +#: json.php:39 json.php:62 json.php:73 msgid "Authentication error" msgstr "" @@ -69,57 +73,182 @@ msgstr "" msgid "Token expired. Please reload page." msgstr "" -#: template.php:86 +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup.php:34 +msgid "Set an admin username." +msgstr "" + +#: setup.php:37 +msgid "Set an admin password." +msgstr "" + +#: setup.php:55 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup.php:58 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup.php:61 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup.php:64 +#, php-format +msgid "%s set the database host." +msgstr "" + +#: setup.php:132 setup.php:324 setup.php:369 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:133 setup.php:156 setup.php:233 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup.php:155 setup.php:457 setup.php:524 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup.php:232 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup.php:303 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:304 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup.php:309 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup.php:310 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:583 setup.php:615 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup.php:635 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup.php:853 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:854 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template.php:113 msgid "seconds ago" msgstr "" -#: template.php:87 +#: template.php:114 msgid "1 minute ago" msgstr "" -#: template.php:88 +#: template.php:115 #, php-format msgid "%d minutes ago" msgstr "" -#: template.php:91 +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 msgid "today" msgstr "" -#: template.php:92 +#: template.php:119 msgid "yesterday" msgstr "" -#: template.php:93 +#: template.php:120 #, php-format msgid "%d days ago" msgstr "" -#: template.php:94 +#: template.php:121 msgid "last month" msgstr "" -#: template.php:95 -msgid "months ago" +#: template.php:122 +#, php-format +msgid "%d months ago" msgstr "" -#: template.php:96 +#: template.php:123 msgid "last year" msgstr "" -#: template.php:97 +#: template.php:124 msgid "years ago" msgstr "" -#: updater.php:66 +#: updater.php:78 #, php-format msgid "%s is available. Get more information" msgstr "" -#: updater.php:68 +#: updater.php:81 msgid "up to date" msgstr "" -#: updater.php:71 +#: updater.php:84 msgid "updates check is disabled" msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 38d8506eacf4c4538a76f469399b136df9ebea2b..80f0f53b37d98073d4ca45dc14a0e7c784443e74 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -167,86 +167,88 @@ msgstr "Joulukuu" msgid "Settings" msgstr "Asetukset" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuutti sitten" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuuttia sitten" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 tunti sitten" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} tuntia sitten" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "tänään" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "eilen" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} päivää sitten" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "viime kuussa" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} kuukautta sitten" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "viime vuonna" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "vuotta sitten" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Valitse" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Peru" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Valitse" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Kyllä" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Virhe" @@ -266,7 +268,7 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Virhe jaettaessa" @@ -326,59 +328,59 @@ msgstr "Jaa sähköpostilla:" msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "voi muokata" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "luo" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "päivitä" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "poista" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "jaa" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -538,23 +540,23 @@ msgstr "käytetään" msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Viimeistele asennus" diff --git a/l10n/fi_FI/files.po b/l10n/fi_FI/files.po index 20c01e914e7bfd4609cfee6bf6d2b52d46594d9a..d68085e964137644be14e4eb5c4453ccee2eff85 100644 --- a/l10n/fi_FI/files.po +++ b/l10n/fi_FI/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -75,7 +75,7 @@ msgstr "Levylle kirjoitus epäonnistui" msgid "Not enough storage available" msgstr "Tallennustilaa ei ole riittävästi käytettävissä" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Virheellinen kansio." @@ -95,39 +95,46 @@ msgstr "Poista" msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Odottaa" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} on jo olemassa" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "korvaa" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "ehdota nimeä" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "peru" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "kumoa" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "suorita poistotoiminto" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' on virheellinen nimi tiedostolle." @@ -156,68 +163,60 @@ msgid "" "big." msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot ovat suuria kooltaan." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tiedoston lähetys epäonnistui, koska sen koko on 0 tavua tai kyseessä on kansio" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Lähetysvirhe." - -#: js/files.js:274 -msgid "Close" -msgstr "Sulje" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Tilaa ei ole riittävästi" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Lähetys peruttu." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Verkko-osoite ei voi olla tyhjä" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Virhe" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nimi" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Koko" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Muutettu" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 kansio" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} kansiota" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 tiedosto" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} tiedostoa" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 3833503da06b99fafc70a4631898978e68e5490c..606ba38b82d03dfb3922cbd83ef329d0d3d487ca 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:04+0100\n" -"PO-Revision-Date: 2013-02-14 07:40+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fi_FI/files_external.po b/l10n/fi_FI/files_external.po index 57b642dc8dd0ab50b4662ca260ca50b9597bf927..87b5f4c115f5d79ff722a680c22efb07d9574f1f 100644 --- a/l10n/fi_FI/files_external.po +++ b/l10n/fi_FI/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Anna kelvollinen Dropbox-sovellusavain ja salainen vastaus." msgid "Error configuring Google Drive storage" msgstr "Virhe Google Drive levyn asetuksia tehtäessä" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varoitus: \"smbclient\" ei ole asennettuna. CIFS-/SMB-jakojen liittäminen ei ole mahdollista. Pyydä järjestelmän ylläpitäjää asentamaan smbclient." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -63,7 +63,7 @@ msgstr "Kansion nimi" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Ulkoinen tallennustila" #: templates/settings.php:11 msgid "Configuration" @@ -79,7 +79,7 @@ msgstr "Sovellettavissa" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Lisää tallennustila" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 8bdb2b410f99149eac246738569b0bdc08d40e56..5abc5ffddc7a69a69b4da3a602aca05fc08df0f5 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-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 12:20+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "Salasana" msgid "Submit" msgstr "Lähetä" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lataa" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 2a92c6929309937159c052a0911ed00111f742b9..6f3b5b270859ce6c2ece66e0df7ce642a8c8f257 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kohdetta %s ei voitu poistaa pysyvästi" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" @@ -32,6 +32,10 @@ msgstr "Kohteen %s palautus epäonnistui" msgid "perform restore operation" msgstr "suorita palautustoiminto" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Virhe" + #: js/trash.js:34 msgid "delete file permanently" msgstr "poista tiedosto pysyvästi" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index d6e7f7b3f873ce6565b43566e01960b4e10989fe..1dbda293039481d5916db256b8ccb59e169cfce5 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,17 +41,17 @@ msgstr "epäonnistui" msgid "File %s could not be reverted to version %s" msgstr "Tiedoston %s palautus versioon %s epäonnistui" -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "Vanhoja ei ole saatavilla" +msgstr "Vanhoja versioita ei ole saatavilla" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Polkua ei ole määritetty" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versiot" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index 7933301fa1cc354c7c52606b43b29a0663a7b0e5..187363f2d8f4b0dd50fc1850d61114c1ed60bc08 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Jiri Grönroos , 2012-2013. +# Jiri Grönroos , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -94,10 +94,6 @@ msgstr "Aseta ylläpitäjän käyttäjätunnus." msgid "Set an admin password." msgstr "Aseta ylläpitäjän salasana." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Määritä datakansio." - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -156,7 +152,7 @@ msgstr "MySQL-käyttäjä '%s'@'localhost' on jo olemassa." #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Pudota tämä käyttäjä MySQL:stä" #: setup.php:309 #, php-format @@ -165,7 +161,7 @@ msgstr "MySQL-käyttäjä '%s'@'%%' on jo olemassa" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Pudota tämä käyttäjä MySQL:stä." #: setup.php:583 setup.php:615 #, php-format diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index a5c6c1ed5b24de6afddefea5a865b77fcf702c8e..dbaeb1940309e45c825e789b80f7b1d6d4009341 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -95,7 +95,7 @@ msgstr "Päivitä versioon {appversion}" msgid "Disable" msgstr "Poista käytöstä" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Käytä" @@ -103,64 +103,64 @@ msgstr "Käytä" msgid "Please wait...." msgstr "Odota hetki..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Virhe" + +#: js/apps.js:90 msgid "Updating...." msgstr "Päivitetään..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Virhe sovellusta päivittäessä" -#: js/apps.js:87 -msgid "Error" -msgstr "Virhe" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Päivitetty" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Tallennetaan..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "poistettu" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "kumoa" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Käyttäjän poistaminen ei onnistunut" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Ryhmät" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Ryhmän ylläpitäjä" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Poista" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "lisää ryhmä" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Virhe käyttäjää luotaessa" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -319,11 +319,15 @@ msgstr "Lokitaso" msgid "More" msgstr "Enemmän" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Vähemmän" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versio" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -315,7 +315,7 @@ msgstr "tavuissa" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Sähköpostikenttä" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index e1fa0ca8d17ce9550bb8f057265e1ed6998fb8bb..ef62c35b8a06671b574185cb80fd88aaf2367f6f 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-15 00:05+0100\n" -"PO-Revision-Date: 2013-02-14 14:00+0000\n" -"Last-Translator: Jiri Grönroos \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fr/core.po b/l10n/fr/core.po index 3a21a793476bee4c0de83d1a097a86968f09f964..07437d6613788d4442466e6de16775367e3f9a78 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/core.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Guillaume Paumier \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,86 +174,88 @@ msgstr "décembre" msgid "Settings" msgstr "Paramètres" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "il y a une minute" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "il y a {minutes} minutes" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Il y a une heure" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Il y a {hours} heures" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "aujourd'hui" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "hier" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "il y a {days} jours" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "le mois dernier" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "Il y a {months} mois" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "l'année dernière" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "il y a plusieurs années" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Choisir" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annuler" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Choisir" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Oui" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Le type d'objet n'est pas spécifié." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Erreur" @@ -273,7 +275,7 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" @@ -333,59 +335,59 @@ msgstr "Partager via e-mail :" msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "créer" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "mettre à jour" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "supprimer" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "partager" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Email envoyé" @@ -545,23 +547,23 @@ msgstr "sera utilisé" msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Terminer l'installation" diff --git a/l10n/fr/files.po b/l10n/fr/files.po index e2baa262e77d9903f1cef45e05ea547a3dd36c99..e694e546156729943c3ea56df8843e4c90db8e2c 100644 --- a/l10n/fr/files.po +++ b/l10n/fr/files.po @@ -9,6 +9,7 @@ # Cyril Glapa , 2012. # David Basquin , 2013. # , 2013. +# froozeify , 2013. # Geoffrey Guerrier , 2012. # , 2012. # , 2012. @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -86,7 +87,7 @@ msgstr "Erreur d'écriture sur le disque" msgid "Not enough storage available" msgstr "Plus assez d'espace de stockage disponible" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Dossier invalide." @@ -106,39 +107,46 @@ msgstr "Supprimer" msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "En cours" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} existe déjà" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "remplacer" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "Suggérer un nom" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "annuler" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} a été remplacé par {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "annuler" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "effectuer l'opération de suppression" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 fichier en cours de téléchargement" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "fichiers en cours de téléchargement" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' n'est pas un nom de fichier valide." @@ -167,68 +175,60 @@ msgid "" "big." msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter un certain temps si les fichiers sont volumineux." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible de charger vos fichiers car il s'agit d'un dossier ou le fichier fait 0 octet." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Erreur de chargement" - -#: js/files.js:274 -msgid "Close" -msgstr "Fermer" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Espace disponible insuffisant" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 fichier en cours de téléchargement" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} fichiers téléversés" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Chargement annulé." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "L'URL ne peut-être vide" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Erreur" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nom" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Taille" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modifié" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 dossier" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} dossiers" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fichier" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} fichiers" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 7c41515ad8892bb77f6379ecf7099beb3bdf423f..3483ba97829c90ac25a028cf1441033aed7e75cc 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/fr/files_external.po b/l10n/fr/files_external.po index c29fc0e3e308e75a8460ff0c4bd586d68bdbdeb9..ed1652d85ad048442cae801f339355476712e703 100644 --- a/l10n/fr/files_external.po +++ b/l10n/fr/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Veuillez fournir une clé d'application (app key) ainsi qu'un mot de pas msgid "Error configuring Google Drive storage" msgstr "Erreur lors de la configuration du support de stockage Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Attention : \"smbclient\" n'est pas installé. Le montage des partages CIFS/SMB n'est pas disponible. Contactez votre administrateur système pour l'installer." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 36628ca4e7d3f9c1bbb18c41c52d5618eb6ade47..9959bf5b5c27d3e5493105d4c941fb18c0b275ad 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.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-25 02:02+0200\n" -"PO-Revision-Date: 2012-09-24 14:21+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,24 +30,24 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Télécharger" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "services web sous votre contrôle" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index c5304882a5e2cbc01aea997a69fb9bf4a0fa8cca..f49412eee385a8394eaa4bf6bd42047809dad194 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -19,12 +19,12 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Impossible d'effacer %s de façon permanente" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Impossible de restaurer %s" @@ -33,6 +33,10 @@ msgstr "Impossible de restaurer %s" msgid "perform restore operation" msgstr "effectuer l'opération de restauration" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Erreur" + #: js/trash.js:34 msgid "delete file permanently" msgstr "effacer définitivement le fichier" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index abef94b52e35728d9effd303efe9aa3356f61bb0..e997c199e0fe51a14d1df6f14903ea5b38473e46 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/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: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 19:21+0000\n" -"Last-Translator: Zertrin \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index acd2ced3672f651b3ab9a3df52f66da2c41dc6f8..915a78cd2a2b53de91de0b0e4923ee63ccc6eacc 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Christophe Lherieau , 2013. -# Geoffrey Guerrier , 2012. -# Robert Di Rosa <>, 2013. -# Romain DEP. , 2012-2013. +# Christophe Lherieau , 2013 +# Geoffrey Guerrier , 2012 +# Robert Di Rosa <>, 2013 +# Romain DEP. , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -97,10 +97,6 @@ msgstr "Spécifiez un nom d'utilisateur pour l'administrateur." msgid "Set an admin password." msgstr "Spécifiez un mot de passe administrateur." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Spécifiez un répertoire pour les données." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index 51796243567b9700f6a2046cdff86b1e28dd6e09..564e045b53edd93e48697765c0fe34e39fdec0d7 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -26,9 +26,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 16:51+0000\n" -"Last-Translator: Christophe Lherieau \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -111,7 +111,7 @@ msgstr "Mettre à jour vers {appversion}" msgid "Disable" msgstr "Désactiver" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activer" @@ -119,64 +119,64 @@ msgstr "Activer" msgid "Please wait...." msgstr "Veuillez patienter…" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Erreur" + +#: js/apps.js:90 msgid "Updating...." msgstr "Mise à jour..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Erreur lors de la mise à jour de l'application" -#: js/apps.js:87 -msgid "Error" -msgstr "Erreur" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Mise à jour effectuée avec succès" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Sauvegarde..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "supprimé" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "annuler" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossible de retirer l'utilisateur" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Groupes" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Groupe Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Supprimer" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "ajouter un groupe" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Un nom d'utilisateur valide doit être saisi" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Un mot de passe valide doit être saisi" @@ -335,11 +335,15 @@ msgstr "Niveau de log" msgid "More" msgstr "Plus" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Moins" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,7 +31,7 @@ msgstr "Échec de la suppression de la configuration du serveur" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuration est valide est la connexion peut être établie !" +msgstr "La configuration est valide et la connexion peut être établie !" #: ajax/testConfiguration.php:39 msgid "" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 4d665c8ff422130f9b5afd0e1625416490630b67..8fdd18d7e53866804251f80225d2c77e2ee5343a 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 01:04+0000\n" -"Last-Translator: Romain DEP. \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,7 +30,7 @@ msgstr "Authentification WebDAV" msgid "URL: http://" msgstr "URL : http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/gl/core.po b/l10n/gl/core.po index abf4e07ff3e2170f0152363f1f201ff8bc98aed8..2424c7626c2a5ccfd7799869c0f71b704a3cb4b6 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -164,86 +164,88 @@ msgstr "decembro" msgid "Settings" msgstr "Configuracións" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "hai 1 minuto" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "hai {minutes} minutos" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "hai 1 hora" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "hai {hours} horas" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hoxe" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "onte" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "hai {days} días" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "último mes" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "hai {months} meses" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "último ano" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escoller" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Aceptar" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escoller" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Si" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Aceptar" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Non se especificou o tipo de obxecto." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Erro" @@ -263,7 +265,7 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" @@ -323,59 +325,59 @@ msgstr "Compartir por correo:" msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "pode editar" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "control de acceso" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "crear" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "actualizar" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "eliminar" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "compartir" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Correo enviado" @@ -535,23 +537,23 @@ msgstr "vai ser utilizado" msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Rematar a configuración" diff --git a/l10n/gl/files.po b/l10n/gl/files.po index 730c1344888952f6a8037a2c30dad8a95dd364c8..b257aba1734973c554cb713ee0c2f78cf1190ca6 100644 --- a/l10n/gl/files.po +++ b/l10n/gl/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -75,7 +75,7 @@ msgstr "Produciuse un erro ao escribir no disco" msgid "Not enough storage available" msgstr "Non hai espazo de almacenamento abondo" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "O directorio é incorrecto." @@ -95,39 +95,46 @@ msgstr "Eliminar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Pendentes" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "Xa existe un {new_name}" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "substituír" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "suxerir nome" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "substituír {new_name} por {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "desfacer" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "realizar a operación de eliminación" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "Enviándose 1 ficheiro" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "ficheiros enviándose" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "«.» é un nome de ficheiro incorrecto" @@ -156,68 +163,60 @@ msgid "" "big." msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os ficheiros son grandes." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Non foi posíbel enviar o ficheiro pois ou é un directorio ou ten 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Produciuse un erro no envío" - -#: js/files.js:274 -msgid "Close" -msgstr "Pechar" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "O espazo dispoñíbel é insuficiente" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "Enviándose 1 ficheiro" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "Enviandose {count} ficheiros" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Envío cancelado." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "O envío do ficheiro está en proceso. Saír agora da páxina cancelará o envío." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "O URL non pode quedar baleiro." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Erro" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nome" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Tamaño" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificado" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 cartafol" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} cartafoles" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index 0f66e72f332dd11079286af03a730b473b43955b..d25b1b2d5abfc91f8c3e9fbeaf8690ca7d2e67ef 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 10:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/gl/files_external.po b/l10n/gl/files_external.po index 8630a2d72fbb4270a8fdf9069fe8d6c3f9b668bb..f000f9072805592fb4e11b2ba760540291f1dfa3 100644 --- a/l10n/gl/files_external.po +++ b/l10n/gl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Forneza unha chave correcta e segreda do Dropbox." msgid "Error configuring Google Drive storage" msgstr "Produciuse un erro ao configurar o almacenamento en Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: «smbclient» non está instalado. Non é posibel a montaxe de comparticións CIFS/SMB. Consulte co administrador do sistema para instalalo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index d665b511c6dd0986db38ebc2d6dcc3679d427c9b..657f1da63e84f481df753a5787ddbfab6667f8be 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/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: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 13:00+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "Contrasinal" msgid "Submit" msgstr "Enviar" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descargar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "servizos web baixo o seu control" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 59b976f9805056d0d215ce7deb209c8564abc802..64cdc9dbdc4a67f13c1a199db593265ccd0ac4a1 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Non foi posíbel eliminar %s permanente" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" @@ -32,6 +32,10 @@ msgstr "Non foi posíbel restaurar %s" msgid "perform restore operation" msgstr "realizar a operación de restauración" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Erro" + #: js/trash.js:34 msgid "delete file permanently" msgstr "eliminar o ficheiro permanentemente" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index 6c5d2ee8b43d7694a5bc57419d479ba57127026c..0744649b036cfd32ee1aba81a0673831634a00e0 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -44,11 +44,11 @@ msgstr "produciuse un fallo" msgid "File %s could not be reverted to version %s" msgstr "Non foi posíbel reverter o ficheiro %s á versión %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Non hai versións antigas dispoñíbeis" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Non foi indicada a ruta" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index 2494f21ca08003842afe49d8bcea6a478cfe9b10..7795b9dddb0d6de694bdabf68359a46896af6405 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Miguel Branco , 2012. -# Xosé M. Lamas , 2012-2013. +# mbouzada , 2013 +# mbouzada , 2012 +# Miguel Branco , 2012 +# Xosé M. Lamas , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -97,10 +97,6 @@ msgstr "Estabeleza un nome de usuario administrador" msgid "Set an admin password." msgstr "Estabeleza un contrasinal de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifique un cartafol de datos." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index f0b08fe277e338c5d533460c47632f0f719e67e4..2230f6a0de9e661f6ce584d574c1d8f1295755a5 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 07:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -98,7 +98,7 @@ msgstr "Actualizar á {appversion}" msgid "Disable" msgstr "Desactivar" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activar" @@ -106,64 +106,64 @@ msgstr "Activar" msgid "Please wait...." msgstr "Agarde..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Erro" + +#: js/apps.js:90 msgid "Updating...." msgstr "Actualizando..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Produciuse un erro mentres actualizaba o aplicativo" -#: js/apps.js:87 -msgid "Error" -msgstr "Erro" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Gardando..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "eliminado" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "desfacer" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Non é posíbel retirar o usuario" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eliminar" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "engadir un grupo" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Debe fornecer un nome de usuario" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Produciuse un erro ao crear o usuario" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Debe fornecer un contrasinal" @@ -322,11 +322,15 @@ msgstr "Nivel de rexistro" msgid "More" msgstr "Máis" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Menos" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versión" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index e16010dc69f596348a9ddcbe32b4f701bdd98a61..89f599a0be8b8cbad0eb4dfcaab07720a9b7524b 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 11:20+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/he/core.po b/l10n/he/core.po index bdcff6397f2eddf2378082e781b8ba435c2012cf..742b5ad87301673f8e5e02dbac4adbb83c43c8d1 100644 --- a/l10n/he/core.po +++ b/l10n/he/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -165,86 +165,88 @@ msgstr "דצמבר" msgid "Settings" msgstr "הגדרות" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "שניות" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "לפני דקה אחת" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "לפני {minutes} דקות" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "לפני שעה" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "לפני {hours} שעות" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "היום" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "אתמול" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "לפני {days} ימים" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "לפני {months} חודשים" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "חודשים" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "שנים" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "בחירה" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "בסדר" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ביטול" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "לא" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "בחירה" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "כן" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "בסדר" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "לא" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "סוג הפריט לא צוין." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "שגיאה" @@ -264,7 +266,7 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" @@ -324,59 +326,59 @@ msgstr "שיתוף באמצעות דוא״ל:" msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "יצירה" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "עדכון" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "מחיקה" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "שיתוף" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "הודעת הדוא״ל נשלחה" @@ -536,23 +538,23 @@ msgstr "ינוצלו" msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "סיום התקנה" diff --git a/l10n/he/files.po b/l10n/he/files.po index 59e00ca3254a2308eca007709f88e9061bdd541f..6880b3e051f808d39b63a5726968f3d837c39942 100644 --- a/l10n/he/files.po +++ b/l10n/he/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -74,7 +74,7 @@ msgstr "הכתיבה לכונן נכשלה" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -94,39 +94,46 @@ msgstr "מחיקה" msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "ממתין" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} כבר קיים" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "החלפה" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "הצעת שם" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "ביטול" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} הוחלף ב־{old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "ביטול" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "קובץ אחד נשלח" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -155,68 +162,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "לא יכול להעלות את הקובץ מכיוון שזו תקיה או שמשקל הקובץ 0 בתים" -#: js/files.js:263 -msgid "Upload Error" -msgstr "שגיאת העלאה" - -#: js/files.js:274 -msgid "Close" -msgstr "סגירה" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "קובץ אחד נשלח" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} קבצים נשלחים" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "ההעלאה בוטלה." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "מתבצעת כעת העלאת קבצים. עזיבה של העמוד תבטל את ההעלאה." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "קישור אינו יכול להיות ריק." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "שגיאה" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "שם" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "גודל" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "תיקייה אחת" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} תיקיות" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "קובץ אחד" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} קבצים" diff --git a/l10n/he/files_encryption.po b/l10n/he/files_encryption.po index 2c26e96cd12132ba40a314695fb7e2851af74528..538cffbef3676dfc87e1bfc6f865972f7df90570 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/he/files_external.po b/l10n/he/files_external.po index 2cc6ed2457a8a02de59f427f46d7236c69195eb9..b8639454e1aacfbc305a08161ead3d3965112426 100644 --- a/l10n/he/files_external.po +++ b/l10n/he/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -39,13 +39,13 @@ msgstr "נא לספק קוד יישום וסוד תקניים של Dropbox." msgid "Error configuring Google Drive storage" msgstr "אירעה שגיאה בעת הגדרת אחסון ב־Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index 2ccef5f2b52c0028b2f5464c4a007fb28f8eea5a..a559adcb0115d9f0b007ff65b00f8c5a9f50b025 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-10-10 02:04+0200\n" -"PO-Revision-Date: 2012-10-09 11:45+0000\n" -"Last-Translator: Tomer Cohen \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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,24 +26,24 @@ msgstr "ססמה" msgid "Submit" msgstr "שליחה" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "הורדה" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "שירותי רשת תחת השליטה שלך" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index b60aec2b9c29f890c4346a31ddb220cd96060994..40c11b0596986bcc6c1e3a5ccbc38267557cd590 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "בלתי אפשרי למחוק את %s לצמיתות" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "בלתי אפשרי לשחזר את %s" @@ -32,6 +32,10 @@ msgstr "בלתי אפשרי לשחזר את %s" msgid "perform restore operation" msgstr "בצע פעולת שחזור" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "שגיאה" + #: js/trash.js:34 msgid "delete file permanently" msgstr "מחק קובץ לצמיתות" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index 171a23cbc9ee79526a1ec40d9aafc08e0ec099f8..d3d2624d3330a5fcd3533c8dfb311ce571e86837 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -42,11 +42,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 8fc9c02bffda142184d208e4be5cf7f5abd10ca4..9cc939954e9e5d072585302dcbb084ab5ec6c02f 100644 --- a/l10n/he/lib.po +++ b/l10n/he/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Tomer Cohen , 2012. -# Yaron Shahrabani , 2012. +# Tomer Cohen , 2012 +# Yaron Shahrabani , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 97fff33879b667c0ef71bfbd13e8348de033e30f..afbda925deecdb4b28e7d5459e52f1de6ae93950 100644 --- a/l10n/he/settings.po +++ b/l10n/he/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -96,7 +96,7 @@ msgstr "" msgid "Disable" msgstr "בטל" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "הפעל" @@ -104,64 +104,64 @@ msgstr "הפעל" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "שגיאה" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "שגיאה" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "שומר.." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "ביטול" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "קבוצות" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "מנהל הקבוצה" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "מחיקה" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -320,11 +320,15 @@ msgstr "" msgid "More" msgstr "יותר" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "פחות" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "גרסא" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/he/user_webdavauth.po b/l10n/he/user_webdavauth.po index 65a279ed44f5a506b730b55bc449bc9d3bc19cbf..a1956eff5da94a6bba096d041153ca8e974e04d3 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hi/core.po b/l10n/hi/core.po index b14a43f6c421e63491086f49ec1d62f653150eab..b352ad12880048529f127471a74edf453aa9bae5 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/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: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -162,76 +162,76 @@ msgstr "" msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -239,9 +239,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -261,7 +263,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -321,59 +323,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -533,23 +535,23 @@ msgstr "उपयोग होगा" msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "डेटाबेस का नाम" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "सेटअप समाप्त करे" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 40ec6e1b41664c2cc19d63fcb9064ca17622bd55..058c4dc6c9c41be173249788e543c22ccbccf6e7 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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/hi/files_encryption.po b/l10n/hi/files_encryption.po index 94768da1fcc82e1d63b9dfbd2d662c3d1efe9bc3..429b94708dcc6f1f699f83e5e9dfdfd06e7d2cb8 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hi/files_external.po b/l10n/hi/files_external.po index b4d9abc7e762eb9a1d0fc085da820612283ffd6c..0bae5719b49ae47484e0de4eea7fe27e708a9725 100644 --- a/l10n/hi/files_external.po +++ b/l10n/hi/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 65e94288b4225b803bf309aa93399bf2796a9e92..1691691d5dbd46484c3df161d44d482cc245ef2a 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index e0e86d2f8e1db36253a0521913063778663141dc..dccfd5206e1bf93fd213d0d14db7bb21e9e45871 100644 --- a/l10n/hi/files_trashbin.po +++ b/l10n/hi/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index c58f10c16c61adcf67ab9cf5f5efa5e5af9c6094..48dc088aa1cd6334b0859f38c0c4d791e6e72797 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index a2be65c48546fb2f56182826947a4cbf5f237273..d7d72d96af57c36efbf23b849892c9907577e0db 100644 --- a/l10n/hi/lib.po +++ b/l10n/hi/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "Apps" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -117,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/hi/settings.po b/l10n/hi/settings.po index 6598846cc3316d904fd6c36ffcae4375e3c04483..ce178a2bac82f3b4a056e3eae55184a15051c62f 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "सहयोग" diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index cc71e94d7f6eab442e509a45b044090240a97617..c6cb2a241350ad54a39c2b65814dc4d38e20f0c4 100644 --- a/l10n/hi/user_webdavauth.po +++ b/l10n/hi/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 9303f4b45ec6a51b63ef61a72832e04a90a449e5..6aa351f1a2c155d959edf104d30ac822d9e0912e 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -164,86 +164,88 @@ msgstr "Prosinac" msgid "Settings" msgstr "Postavke" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "danas" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "jučer" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "mjeseci" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "godina" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izaberi" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "U redu" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Odustani" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izaberi" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "U redu" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Pogreška" @@ -263,7 +265,7 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" @@ -323,59 +325,59 @@ msgstr "Dijeli preko email-a:" msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "kreiraj" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "ažuriraj" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "izbriši" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "djeli" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -535,23 +537,23 @@ msgstr "će se koristiti" msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Završi postavljanje" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 2b8d92ffea37b9bed834ab3b60017f959d70a86d..d1184dcf60708bb9550e0c08282c0e445a4ebfd1 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -73,7 +73,7 @@ msgstr "Neuspjelo pisanje na disk" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -93,39 +93,46 @@ msgstr "Briši" msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "U tijeku" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "zamjeni" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "predloži ime" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "odustani" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "vrati" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 datoteka se učitava" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -154,68 +161,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemoguće poslati datoteku jer je prazna ili je direktorij" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Pogreška pri slanju" - -#: js/files.js:274 -msgid "Close" -msgstr "Zatvori" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 datoteka se učitava" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Slanje poništeno." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Učitavanje datoteke. Napuštanjem stranice će prekinuti učitavanje." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Greška" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Naziv" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Veličina" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 434831e8abeb6c88e8cee096b634ed14bc238bc3..a4e8af9c560b9b4533a5925541b744d8f03e034f 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/hr/files_external.po b/l10n/hr/files_external.po index ff1ac7f575f1c012224152486feb04cab39e4bc2..af0395beada35ed81ef859b999755d105dd86075 100644 --- a/l10n/hr/files_external.po +++ b/l10n/hr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 90582fb7374e81e87828adaefee5649ac21f8b23..f3d4834e7600c257714972e48aed17c683f1d987 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 4be5c7a6f5a3387b85f86df790467ae43fefa2fc..152f07f36842f3b888b53bf2889cca7bcb2eeb5a 100644 --- a/l10n/hr/files_trashbin.po +++ b/l10n/hr/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Greška" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 95d4715bd686ac82c9c1c1076e7dfcedc1988c42..12e83d69fbb7f63d7f4dd5f2bc8a13172e356056 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 60377d11672963421116b3dd3c743fc5dda6080b..fa043de4d83df0a8cea5cf078246abe3565baa41 100644 --- a/l10n/hr/lib.po +++ b/l10n/hr/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index c0d9d336801bf30f040ebc03a187cb5e550a1798..e6e8a045211ffcd1e2b10d8e69d8fb2537040456 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -95,7 +95,7 @@ msgstr "" msgid "Disable" msgstr "Isključi" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Uključi" @@ -103,64 +103,64 @@ msgstr "Uključi" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Greška" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Greška" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Spremanje..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "izbrisano" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "vrati" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupe" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupa Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Obriši" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -319,11 +319,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pomoć" diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index d33ff57a3a1763eb0c235f91e4d2126b790f74f7..c9f410b1ad0aba78e7ae282ed440a954a052c9d8 100644 --- a/l10n/hr/user_webdavauth.po +++ b/l10n/hr/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 98e02ef878815b49079858bb64c4c50009acd0ab..be7a469931393cf73ac2c2e480f87662d088e8a5 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -165,86 +165,88 @@ msgstr "december" msgid "Settings" msgstr "Beállítások" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 perce" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} perce" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 órája" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} órája" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "ma" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "tegnap" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} napja" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} hónapja" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "több hónapja" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "tavaly" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "több éve" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Válasszon" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Mégse" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nem" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Válasszon" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Igen" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nem" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Az objektum típusa nincs megadva." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Hiba" @@ -264,7 +266,7 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" @@ -324,59 +326,59 @@ msgstr "Megosztás emaillel:" msgid "No people found" msgstr "Nincs találat" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "módosíthat" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "jogosultság" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "létrehoz" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "szerkeszt" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "töröl" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "megoszt" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Az emailt elküldtük" @@ -536,23 +538,23 @@ msgstr "adatbázist fogunk használni" msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "A beállítások befejezése" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index 45d6a3fa104b680661e0ae368940a8b9f58bee53..c9c6e0609ee00393df668a307b2034ad1d89bfda 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/files.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -77,7 +77,7 @@ msgstr "Nem sikerült a lemezre történő írás" msgid "Not enough storage available" msgstr "Nincs elég szabad hely." -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Érvénytelen mappa." @@ -97,39 +97,46 @@ msgstr "Törlés" msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Folyamatban" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} már létezik" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "írjuk fölül" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "legyen más neve" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "mégse" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "visszavonás" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "a törlés végrehajtása" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 fájl töltődik föl" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "fájl töltődik föl" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' fájlnév érvénytelen." @@ -158,68 +165,60 @@ msgid "" "big." msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a fájlok." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nem tölthető fel, mert mappa volt, vagy 0 byte méretű" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Feltöltési hiba" - -#: js/files.js:274 -msgid "Close" -msgstr "Bezárás" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nincs elég szabad hely" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 fájl töltődik föl" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} fájl töltődik föl" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "A feltöltést megszakítottuk." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fájlfeltöltés van folyamatban. Az oldal elhagyása megszakítja a feltöltést." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Az URL nem lehet semmi." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Hiba" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Név" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Méret" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Módosítva" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} mappa" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fájl" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} fájl" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index 4ad1f0108e8447c261442a1b225a57f90d2f4a60..4bf863c88dc0e111c7f2b2f00f808e8e4c4c59db 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 14:00+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/hu_HU/files_external.po b/l10n/hu_HU/files_external.po index 43b4491c08f7a658451f5c0df0a231a445a8c489..0f4348a55cc9cce7cff30b75a52361d76f69b03d 100644 --- a/l10n/hu_HU/files_external.po +++ b/l10n/hu_HU/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,13 +38,13 @@ msgstr "Adjon meg egy érvényes Dropbox app key-t és secretet!" msgid "Error configuring Google Drive storage" msgstr "A Google Drive tárolót nem sikerült beállítani" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Figyelem: az \"smbclient\" nincs telepítve a kiszolgálón. Emiatt nem lehet CIFS/SMB megosztásokat fölcsatolni. Kérje meg a rendszergazdát, hogy telepítse a szükséges programot." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 0534ea09d439963f900e0127891c5ec5558f5318..7897dc58ce574fef3ce5b9d72b7888b5ec2412e6 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 17:39+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "Jelszó" msgid "Submit" msgstr "Elküld" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Letöltés" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 0206e4346fa83c39b2df773ce057f049dc14cbc8..dafccd8911a605f3120d35736971df3533e7f9f1 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-12 00:13+0100\n" -"PO-Revision-Date: 2013-03-10 13:10+0000\n" -"Last-Translator: akoscomp \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -19,12 +19,12 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nem sikerült %s végleges törlése" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Nem sikerült %s visszaállítása" @@ -33,6 +33,10 @@ msgstr "Nem sikerült %s visszaállítása" msgid "perform restore operation" msgstr "a visszaállítás végrehajtása" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Hiba" + #: js/trash.js:34 msgid "delete file permanently" msgstr "az állomány végleges törlése" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index f166ccc2e3591f9e45106545d2381474ba713c90..ef316affe769a90f2664ee92770ddcb37deede98 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,11 +41,11 @@ msgstr "nem sikerült" msgid "File %s could not be reverted to version %s" msgstr "%s állományt nem sikerült átállítani erre a változatra: %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nincs régebbi változat" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nincs megadva az útvonal" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index b43a795116418b3102747691eb54e6c6286a9d32..811a4db40294352f14b9906be36259674fd50f6e 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Adam Toth , 2012. -# , 2013. -# Laszlo Tornoci , 2013. +# Adam Toth , 2012 +# gyeben , 2013 +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -96,10 +96,6 @@ msgstr "Állítson be egy felhasználói nevet az adminisztrációhoz." msgid "Set an admin password." msgstr "Állítson be egy jelszót az adminisztrációhoz." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Adja meg az adatokat tartalmazó könyvtár nevét." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index d274313816968c8097155db82b429a05032e9e95..b1e991aa40a95e2cc5ff60934806cf7cabaea77f 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 13:10+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -96,7 +96,7 @@ msgstr "Frissítés erre a verzióra: {appversion}" msgid "Disable" msgstr "Letiltás" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Engedélyezés" @@ -104,64 +104,64 @@ msgstr "Engedélyezés" msgid "Please wait...." msgstr "Kérem várjon..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Hiba" + +#: js/apps.js:90 msgid "Updating...." msgstr "Frissítés folyamatban..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Hiba történt a programfrissítés közben" -#: js/apps.js:87 -msgid "Error" -msgstr "Hiba" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Frissítve" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Mentés..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "törölve" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "visszavonás" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "A felhasználót nem sikerült eltávolítáni" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Csoportok" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Csoportadminisztrátor" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Törlés" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "csoport hozzáadása" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Érvényes felhasználónevet kell megadnia" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "A felhasználó nem hozható létre" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Érvényes jelszót kell megadnia" @@ -320,11 +320,15 @@ msgstr "Naplózási szint" msgid "More" msgstr "Több" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Kevesebb" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Verzió" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index f661c0e4ee09620d95371022845b7d1f85137f44..535e53af3312800d8a67ebb2273aea125f1ee87d 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-29 00:04+0100\n" -"PO-Revision-Date: 2013-01-28 11:27+0000\n" -"Last-Translator: akoscomp \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -26,7 +26,7 @@ msgstr "WebDAV hitelesítés" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/hy/files.po b/l10n/hy/files.po index d06fd4ced5cdcb0323030d36ac71c292cada553b..2bb63c0f9e1c215028e08f93e7d609d5fbb39d80 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -90,39 +90,46 @@ msgstr "Ջնջել" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -151,68 +158,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:274 -msgid "Close" -msgstr "Փակել" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/hy/files_external.po b/l10n/hy/files_external.po index 6563d686916bf5dc7f221e5cfc54fb5ad9844200..2b6464945dc50485109ad18523385752fc03432c 100644 --- a/l10n/hy/files_external.po +++ b/l10n/hy/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index b04c3cb98c48dd76cfe7fe62eec1417ec51fc8cd..fe5d782b2ae1e28c505764e5950f1d762033789e 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/hy/settings.po b/l10n/hy/settings.po index da0084348d80ca4684079ba6f27019115fdb3e5f..55dedea9beadd8c410cad07751d1a3fc9def490f 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ջնջել" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "Decembre" msgid "Settings" msgstr "Configurationes" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancellar" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,9 +238,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "essera usate" msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 89b038a4d6fd1022d85f8bb62793172ce9b08416..db3b51415e70a53214bd1ebae5d563680be08728 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -72,7 +72,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -92,39 +92,46 @@ msgstr "Deler" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -153,68 +160,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:274 -msgid "Close" -msgstr "Clauder" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nomine" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Dimension" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificate" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/ia/files_encryption.po b/l10n/ia/files_encryption.po index 11e4cc8eb8c110820bbd50fae6ad4953bda41c17..075ccfc669c1315f9e96fe19673b702942e901c9 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ia/files_external.po b/l10n/ia/files_external.po index e79169bb213912f7531c2dc92ba30332fa479c4c..51c38dce126d1161ede55c883997b199b30629e6 100644 --- a/l10n/ia/files_external.po +++ b/l10n/ia/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 05ecbbb1465ee3711b9e947fa92868a991cdaf04..2648b60d7a9624412a9ab783365c977cc958f4d8 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 8f143679d149fdde995b4b087eef6c4add5de10b..711ce68f35150447b87143067ac5e3545650c1ac 100644 --- a/l10n/ia/files_trashbin.po +++ b/l10n/ia/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 400157adb8f57fcc68a26bbac5377d214bc9fbd8..236cc1eb797886f1b0fb0faf9bff4576dd5e90c4 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 101230f23ba2151f0ddea7bf56b407f89b663d9b..ac00206559546d35d29e027ed0942d5d0405382d 100644 --- a/l10n/ia/lib.po +++ b/l10n/ia/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ia/settings.po b/l10n/ia/settings.po index 3be4a6973418f4ba3ffbff5d8f0e7c6b3999a38d..0c7beb23e9a1030b70a6a95ba4713b1564873153 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -94,7 +94,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -102,64 +102,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppos" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Deler" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -318,11 +318,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Adjuta" diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index cee575b438123314fd332bbe4482b13e3f9eca1a..5b5b3f334726881330a963bd51e4eb96910b33c7 100644 --- a/l10n/ia/user_webdavauth.po +++ b/l10n/ia/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/id/core.po b/l10n/id/core.po index a16a266130b8b85edbf440b04073081fe2674d6f..0a94ad4da84dcd69314973c8c81e1133f6819ab5 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -8,12 +8,14 @@ # Muhammad Fauzan , 2012. # Muhammad Panji , 2012. # Muhammad Radifar , 2011. +# , 2013. +# Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -25,26 +27,26 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "%s berbagi berkas dengan Anda" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "%s berbagi folder dengan Anda" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "%s berbagi berkas \"%s\" dengan Anda. Silakan unduh di sini: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "%s berbagi folder \"%s\" dengan Anda. Silakan unduh di sini: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -63,55 +65,55 @@ msgstr "Kategori ini sudah ada: %s" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tipe obyek tidak diberikan." +msgstr "Tipe objek tidak diberikan." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "%s ID tidak diberikan." +msgstr "ID %s tidak diberikan." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Kesalahan menambah %s ke favorit" +msgstr "Galat ketika menambah %s ke favorit" #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Tidak ada kategori terpilih untuk penghapusan." +msgstr "Tidak ada kategori terpilih untuk dihapus." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Kesalahan menghapus %s dari favorit" +msgstr "Galat ketika menghapus %s dari favorit" #: js/config.php:34 msgid "Sunday" -msgstr "minggu" +msgstr "Minggu" #: js/config.php:35 msgid "Monday" -msgstr "senin" +msgstr "Senin" #: js/config.php:36 msgid "Tuesday" -msgstr "selasa" +msgstr "Selasa" #: js/config.php:37 msgid "Wednesday" -msgstr "rabu" +msgstr "Rabu" #: js/config.php:38 msgid "Thursday" -msgstr "kamis" +msgstr "Kamis" #: js/config.php:39 msgid "Friday" -msgstr "jumat" +msgstr "Jumat" #: js/config.php:40 msgid "Saturday" -msgstr "sabtu" +msgstr "Sabtu" #: js/config.php:45 msgid "January" @@ -155,7 +157,7 @@ msgstr "Oktober" #: js/config.php:55 msgid "November" -msgstr "Nopember" +msgstr "November" #: js/config.php:56 msgid "December" @@ -165,144 +167,146 @@ msgstr "Desember" msgid "Settings" msgstr "Setelan" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" -msgstr "1 menit lalu" +msgstr "1 menit yang lalu" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} menit yang lalu" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 jam yang lalu" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} jam yang lalu" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hari ini" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "kemarin" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} hari yang lalu" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} bulan yang lalu" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "beberapa tahun lalu" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "pilih" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Oke" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Batalkan" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Tidak" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Pilih" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Oke" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Tidak" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Tipe objek tidak ditentukan." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" -msgstr "gagal" +msgstr "Galat" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Nama aplikasi tidak ditentukan." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Berkas {file} yang dibutuhkan tidak terpasang!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "Terbagi" +msgstr "Dibagikan" #: js/share.js:90 msgid "Share" -msgstr "Bagi" +msgstr "Bagikan" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "gagal ketika membagikan" +msgstr "Galat ketika membagikan" #: js/share.js:136 msgid "Error while unsharing" -msgstr "gagal ketika membatalkan pembagian" +msgstr "Galat ketika membatalkan pembagian" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "gagal ketika merubah perijinan" +msgstr "Galat ketika mengubah izin" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "dibagikan dengan anda dan grup {group} oleh {owner}" +msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "dibagikan dengan anda oleh {owner}" +msgstr "Dibagikan dengan Anda oleh {owner}" #: js/share.js:159 msgid "Share with" -msgstr "bagikan dengan" +msgstr "Bagikan dengan" #: js/share.js:164 msgid "Share with link" -msgstr "bagikan dengan tautan" +msgstr "Bagikan lewat tautan" #: js/share.js:167 msgid "Password protect" -msgstr "lindungi dengan kata kunci" +msgstr "Lindungi dengan sandi" #: js/share.js:169 templates/installation.php:54 templates/login.php:35 msgid "Password" -msgstr "Password" +msgstr "Sandi" #: js/share.js:173 msgid "Email link to person" -msgstr "Email link ini ke orang" +msgstr "Emailkan tautan ini ke orang" #: js/share.js:174 msgid "Send" @@ -310,73 +314,73 @@ msgstr "Kirim" #: js/share.js:178 msgid "Set expiration date" -msgstr "set tanggal kadaluarsa" +msgstr "Setel tanggal kedaluwarsa" #: js/share.js:179 msgid "Expiration date" -msgstr "tanggal kadaluarsa" +msgstr "Tanggal kedaluwarsa" #: js/share.js:211 msgid "Share via email:" -msgstr "berbagi memlalui surel:" +msgstr "Bagian lewat email:" #: js/share.js:213 msgid "No people found" -msgstr "tidak ada orang ditemukan" +msgstr "Tidak ada orang ditemukan" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" -msgstr "berbagi ulang tidak diperbolehkan" +msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "dibagikan dalam {item} dengan {user}" +msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" -msgstr "batalkan berbagi" +msgstr "Batalkan berbagi" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" -msgstr "dapat merubah" +msgstr "dapat mengedit" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "kontrol akses" -#: js/share.js:314 +#: js/share.js:325 msgid "create" -msgstr "buat baru" +msgstr "buat" -#: js/share.js:317 +#: js/share.js:328 msgid "update" -msgstr "baharui" +msgstr "perbarui" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "hapus" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "bagikan" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "dilindungi kata kunci" +msgstr "Dilindungi sandi" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "gagal melepas tanggal kadaluarsa" +msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" -msgstr "gagal memasang tanggal kadaluarsa" +msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." -msgstr "Sedang mengirim ..." +msgstr "Mengirim ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Email terkirim" @@ -385,27 +389,27 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Update sukses. Membawa anda ke ownCloud sekarang." +msgstr "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud." #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "reset password ownCloud" +msgstr "Setel ulang sandi ownCloud" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "Gunakan tautan berikut untuk mereset password anda: {link}" +msgstr "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "Anda akan mendapatkan link untuk mereset password anda lewat Email." +msgstr "Anda akan menerima tautan penyetelan ulang sandi lewat Email." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Email penyetelan ulang dikirim." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" @@ -414,27 +418,27 @@ msgstr "Permintaan gagal!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:28 msgid "Username" -msgstr "Username" +msgstr "Nama Pengguna" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "Meminta reset" +msgstr "Ajukan penyetelan ulang" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "Password anda telah direset" +msgstr "Sandi Anda telah disetel ulang" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "Ke halaman login" +msgstr "Ke halaman masuk" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "Password baru" +msgstr "Sandi baru" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "Reset password" +msgstr "Setel ulang sandi" #: strings.php:5 msgid "Personal" @@ -458,7 +462,7 @@ msgstr "Bantuan" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Akses Ditiadakan" +msgstr "Akses ditolak" #: templates/404.php:12 msgid "Cloud not found" @@ -475,40 +479,40 @@ msgstr "Tambahkan" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "peringatan keamanan" +msgstr "Peringatan Keamanan" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Versi PHP Anda rentan terhadap serangan NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Silakan perbarui instalasi PHP untuk dapat menggunakan ownCloud secara aman." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Generator acak yang aman tidak tersedia, silakan aktifkan ekstensi OpenSSL pada PHP." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "tanpa generator angka acak, penyerang mungkin dapat menebak token reset kata kunci dan mengambil alih akun anda." +msgstr "Tanpa generator acak, penyerang mungkin dapat menebak token penyetelan sandi dan mengambil alih akun Anda." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Kemungkinan direktori data dan berkas Anda dapat diakses dari internet karena berkas .htaccess tidak berfungsi." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Untuk informasi lebih lanjut tentang pengaturan server yang benar, silakan lihat dokumentasi." #: templates/installation.php:44 msgid "Create an admin account" @@ -524,7 +528,7 @@ msgstr "Folder data" #: templates/installation.php:73 msgid "Configure the database" -msgstr "Konfigurasi database" +msgstr "Konfigurasikan basis data" #: templates/installation.php:78 templates/installation.php:90 #: templates/installation.php:101 templates/installation.php:112 @@ -534,31 +538,31 @@ msgstr "akan digunakan" #: templates/installation.php:136 msgid "Database user" -msgstr "Pengguna database" +msgstr "Pengguna basis data" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" -msgstr "Password database" +msgstr "Sandi basis data" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" -msgstr "Nama database" +msgstr "Nama basis data" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" -msgstr "tablespace basis data" +msgstr "Tablespace basis data" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" -msgstr "Host database" +msgstr "Host basis data" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Selesaikan instalasi" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "web service dibawah kontrol anda" +msgstr "layanan web dalam kontrol Anda" #: templates/layout.user.php:58 msgid "Log out" @@ -566,25 +570,25 @@ msgstr "Keluar" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "login otomatis ditolak!" +msgstr "Masuk otomatis ditolak!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "apabila anda tidak merubah kata kunci belakangan ini, akun anda dapat di gunakan orang lain!" +msgstr "Jika tidak pernah mengubah sandi Anda baru-baru ini, akun Anda mungkin dalam bahaya!" #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "mohon ubah kata kunci untuk mengamankan akun anda" +msgstr "Mohon ubah sandi Anda untuk mengamankan kembali akun Anda." #: templates/login.php:19 msgid "Lost your password?" -msgstr "Lupa password anda?" +msgstr "Lupa sandi?" #: templates/login.php:41 msgid "remember" -msgstr "selalu login" +msgstr "selalu masuk" #: templates/login.php:43 msgid "Log in" @@ -592,11 +596,11 @@ msgstr "Masuk" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "Login dengan cara lain" +msgstr "Cara Alternatif untuk Masuk" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "sebelum" +msgstr "sebelumnya" #: templates/part.pagenavi.php:20 msgid "next" @@ -605,4 +609,4 @@ msgstr "selanjutnya" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Memperbarui ownCloud ke versi %s, prosesnya akan berlangsung beberapa saat." diff --git a/l10n/id/files.po b/l10n/id/files.po index 38cd09e1a9018def93abfcc0adb11cab4bc645da..cd5200faba84574627613a34391f68cf2bd6d380 100644 --- a/l10n/id/files.po +++ b/l10n/id/files.po @@ -6,12 +6,14 @@ # Muhammad Fauzan , 2012. # Muhammad Panji , 2012. # Muhammad Radifar , 2011. +# , 2013. +# Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -23,20 +25,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Tidak dapat memindahkan %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Tidak dapat mengubah nama berkas" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Tidak ada berkas yang diunggah. Galat tidak dikenal" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -45,13 +47,13 @@ msgstr "Tidak ada galat, berkas sukses diunggah" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Berkas yang diunggah melampaui direktif upload_max_filesize pada php.ini" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "File yang diunggah melampaui directive MAX_FILE_SIZE yang disebutan dalam form HTML." +msgstr "Berkas yang diunggah melampaui direktif MAX_FILE_SIZE yang ditentukan dalam formulir HTML." #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" @@ -63,7 +65,7 @@ msgstr "Tidak ada berkas yang diunggah" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "Kehilangan folder temporer" +msgstr "Folder sementara tidak ada" #: ajax/upload.php:33 msgid "Failed to write to disk" @@ -71,11 +73,11 @@ msgstr "Gagal menulis ke disk" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Ruang penyimpanan tidak mencukupi" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "Direktori tidak valid." #: appinfo/app.php:12 msgid "Files" @@ -83,7 +85,7 @@ msgstr "Berkas" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Hapus secara permanen" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -91,131 +93,130 @@ msgstr "Hapus" #: js/fileactions.js:193 msgid "Rename" -msgstr "" +msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Menunggu" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} sudah ada" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "mengganti" +msgstr "ganti" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" -msgstr "" +msgstr "sarankan nama" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "batalkan" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "mengganti {new_name} dengan {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" -msgstr "batal dikerjakan" +msgstr "urungkan" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "Lakukan operasi penghapusan" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 berkas diunggah" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "berkas diunggah" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' bukan nama berkas yang valid." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Nama berkas tidak boleh kosong." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Nama tidak valid, karakter '\\', '/', '<', '>', ':', '\"', '|', '?' dan '*' tidak diizinkan." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ruang penyimpanan Anda penuh, berkas tidak dapat diperbarui atau disinkronkan lagi!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ruang penyimpanan hampir penuh ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jika ukuran berkasnya besar." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Gagal mengunggah berkas anda karena berupa direktori atau mempunyai ukuran 0 byte" - -#: js/files.js:263 -msgid "Upload Error" -msgstr "Terjadi Galat Pengunggahan" +msgstr "Gagal mengunggah berkas Anda karena berupa direktori atau ukurannya 0 byte" -#: js/files.js:274 -msgid "Close" -msgstr "tutup" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Ruang penyimpanan tidak mencukupi" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Pengunggahan dibatalkan." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Berkas sedang diunggah. Meninggalkan halaman ini akan membatalkan proses." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." -msgstr "tautan tidak boleh kosong" +msgstr "URL tidak boleh kosong" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Galat" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nama" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Ukuran" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" -msgstr "1 map" +msgstr "1 folder" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" -msgstr "{count} map" +msgstr "{count} folder" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 berkas" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} berkas" @@ -229,15 +230,15 @@ msgstr "Penanganan berkas" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "Ukuran unggah maksimum" +msgstr "Ukuran pengunggahan maksimum" #: templates/admin.php:10 msgid "max. possible: " -msgstr "Kemungkinan maks:" +msgstr "Kemungkinan maks.:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "Dibutuhkan untuk multi-berkas dan unduhan folder" +msgstr "Dibutuhkan untuk pengunduhan multi-berkas dan multi-folder" #: templates/admin.php:17 msgid "Enable ZIP-download" @@ -245,15 +246,15 @@ msgstr "Aktifkan unduhan ZIP" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "0 adalah tidak terbatas" +msgstr "0 berarti tidak terbatas" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "Ukuran masukan maksimal untuk berkas ZIP" +msgstr "Ukuran masukan maksimum untuk berkas ZIP" #: templates/admin.php:26 msgid "Save" -msgstr "simpan" +msgstr "Simpan" #: templates/index.php:7 msgid "New" @@ -269,19 +270,19 @@ msgstr "Folder" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Dari tautan" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Berkas yang dihapus" #: templates/index.php:48 msgid "Cancel upload" -msgstr "Batal mengunggah" +msgstr "Batal pengunggahan" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Anda tidak memiliki izin menulis di sini." #: templates/index.php:62 msgid "Nothing in here. Upload something!" @@ -293,7 +294,7 @@ msgstr "Unduh" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "batalkan berbagi" +msgstr "Batalkan berbagi" #: templates/index.php:108 msgid "Upload too large" @@ -303,16 +304,16 @@ msgstr "Unggahan terlalu besar" msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "Berkas yang anda coba unggah melebihi ukuran maksimum untuk pengunggahan berkas di server ini." +msgstr "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "Berkas sedang dipindai, silahkan tunggu." +msgstr "Berkas sedang dipindai, silakan tunggu." #: templates/index.php:118 msgid "Current scanning" -msgstr "Sedang memindai" +msgstr "Yang sedang dipindai" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Meningkatkan tembolok sistem berkas..." diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 7a7d4d5211df5e0a202e980284398103444cbf08..752d0d3fa58604a7ce5be5d3f251ac2061c73079 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2013-02-20 03:12+0000\n" -"Last-Translator: w41l \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/id/files_external.po b/l10n/id/files_external.po index 7fe4f657e0fb293feb3103e36705f58d530d610e..64d7c1ec65e0ef5fc68f2530a3b35a29f9b126f7 100644 --- a/l10n/id/files_external.po +++ b/l10n/id/files_external.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2013. # Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,7 +26,7 @@ msgstr "Akses diberikan" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Dropbox" +msgstr "Kesalahan dalam mengonfigurasi penyimpanan Dropbox" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" @@ -39,13 +40,13 @@ msgstr "Masukkan kunci dan sandi aplikasi Dropbox yang benar." msgid "Error configuring Google Drive storage" msgstr "Kesalahan dalam mengkonfigurasi penyimpanan Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Peringatan: \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -58,11 +59,11 @@ msgstr "Penyimpanan Eksternal" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "Nama folder" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Penyimpanan eksternal" #: templates/settings.php:11 msgid "Configuration" @@ -70,7 +71,7 @@ msgstr "Konfigurasi" #: templates/settings.php:12 msgid "Options" -msgstr "Pilihan" +msgstr "Opsi" #: templates/settings.php:13 msgid "Applicable" @@ -78,7 +79,7 @@ msgstr "Berlaku" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Tambahkan penyimpanan" #: templates/settings.php:90 msgid "None set" @@ -107,7 +108,7 @@ msgstr "Aktifkan Penyimpanan Eksternal Pengguna" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "Ijinkan pengguna untuk me-mount penyimpanan eksternal mereka" +msgstr "Izinkan pengguna untuk mengaitkan penyimpanan eksternal mereka" #: templates/settings.php:141 msgid "SSL root certificates" diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 95854936367c856715936d98e41c0b86c1d183ca..2fb4cd8cb0c2253d5974da6e807be231fb8f2ea7 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-21 02:03+0200\n" -"PO-Revision-Date: 2012-10-20 23:29+0000\n" -"Last-Translator: elmakong \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,30 +21,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "kata kunci" +msgstr "Sandi" #: templates/authenticate.php:6 msgid "Submit" -msgstr "kirim" +msgstr "Kirim" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "%s membagikan folder %s dengan anda" +msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "%s membagikan file %s dengan anda" +msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "unduh" +msgstr "Unduh" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" -msgstr "tidak ada pratinjau tersedia untuk" +msgstr "Tidak ada pratinjau tersedia untuk" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" -msgstr "servis web dibawah kendali anda" +msgstr "layanan web dalam kontrol Anda" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 01538027a14ee6ee01e82f9fafca66d596783447..03ff55760c614aa4fe2e23e6562e606bbca3356c 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. # Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -18,12 +19,12 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Tidak dapat menghapus permanen %s" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" @@ -32,13 +33,17 @@ msgstr "Tidak dapat memulihkan %s" msgid "perform restore operation" msgstr "jalankan operasi pemulihan" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "kesalahan" + #: js/trash.js:34 msgid "delete file permanently" msgstr "hapus berkas secara permanen" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "hapus secara permanen" #: js/trash.js:174 templates/index.php:17 msgid "Name" @@ -78,4 +83,4 @@ msgstr "Hapus" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Berkas yang Dihapus" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index 395a75c2fba1ba818a28f8179a462968d02f6389..a886cd30377728ccd94cb3af3cdc1197c577f256 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2013. # Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -42,18 +43,18 @@ msgstr "gagal" msgid "File %s could not be reverted to version %s" msgstr "Berkas %s gagal dikembalikan ke versi %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Versi lama tidak tersedia" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Lokasi tidak ditentukan" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versi" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Kembalikan berkas ke versi sebelumnya dengan mengklik tombol kembalikan" +msgstr "Kembalikan berkas ke versi sebelumnya dengan mengeklik tombol kembalikan" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 1adead1efa3d3ad812cccbd81712a2f53aa40bb0..57352dd2b63d5595e76b8dc317b7ccbce0c11377 100644 --- a/l10n/id/lib.po +++ b/l10n/id/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mohamad Hasan Al Banna , 2013. -# , 2012. +# Mohamad Hasan Al Banna , 2013 +# elmakong , 2012 +# rodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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,59 +22,59 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "bantu" +msgstr "Bantuan" #: app.php:362 msgid "Personal" -msgstr "perseorangan" +msgstr "Pribadi" #: app.php:373 msgid "Settings" -msgstr "pengaturan" +msgstr "Setelan" #: app.php:385 msgid "Users" -msgstr "pengguna" +msgstr "Pengguna" #: app.php:398 msgid "Apps" -msgstr "aplikasi" +msgstr "Aplikasi" #: app.php:406 msgid "Admin" -msgstr "admin" +msgstr "Admin" #: files.php:209 msgid "ZIP download is turned off." -msgstr "download ZIP sedang dimatikan" +msgstr "Pengunduhan ZIP dimatikan." #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "file harus di unduh satu persatu" +msgstr "Berkas harus diunduh satu persatu." #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "kembali ke daftar file" +msgstr "Kembali ke Daftar Berkas" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "file yang dipilih terlalu besar untuk membuat file zip" +msgstr "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya." #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "tidak dapat ditentukan" #: json.php:28 msgid "Application is not enabled" -msgstr "aplikasi tidak diaktifkan" +msgstr "Aplikasi tidak diaktifkan" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "autentikasi bermasalah" +msgstr "Galat saat autentikasi" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "token kadaluarsa.mohon perbaharui laman." +msgstr "Token kedaluwarsa. Silakan muat ulang halaman." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -81,7 +82,7 @@ msgstr "Berkas" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "teks" +msgstr "Teks" #: search/provider/file.php:29 msgid "Images" @@ -89,51 +90,47 @@ msgstr "Gambar" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Setel nama pengguna admin." #: setup.php:37 msgid "Set an admin password." -msgstr "" - -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" +msgstr "Setel sandi admin." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s masukkan nama pengguna basis data." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s masukkan nama basis data." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%sAnda tidak boleh menggunakan karakter titik pada nama basis data" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s setel host basis data." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "Nama pengguna dan/atau sandi PostgreSQL tidak valid" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Anda harus memasukkan akun yang sudah ada atau administrator." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Nama pengguna dan/atau sandi Oracle tidak valid" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "Nama pengguna dan/atau sandi MySQL tidak valid" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -141,53 +138,53 @@ msgstr "" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Galat Basis Data: \"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Perintah yang bermasalah: \"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Pengguna MySQL '%s'@'localhost' sudah ada." #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Hapus pengguna ini dari MySQL" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "Pengguna MySQL '%s'@'%%' sudah ada." #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Hapus pengguna ini dari MySQL." #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Nama pengguna dan/atau sandi MySQL tidak valid: %s" #: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Silakan periksa ulang panduan instalasi." #: template.php:113 msgid "seconds ago" @@ -195,12 +192,12 @@ msgstr "beberapa detik yang lalu" #: template.php:114 msgid "1 minute ago" -msgstr "1 menit lalu" +msgstr "1 menit yang lalu" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "%d menit lalu" +msgstr "%d menit yang lalu" #: template.php:116 msgid "1 hour ago" @@ -222,7 +219,7 @@ msgstr "kemarin" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "%d hari lalu" +msgstr "%d hari yang lalu" #: template.php:121 msgid "last month" @@ -244,7 +241,7 @@ msgstr "beberapa tahun lalu" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "%s tersedia. dapatkan info lebih lanjut" +msgstr "%s tersedia. Dapatkan info lebih lanjut" #: updater.php:81 msgid "up to date" @@ -252,7 +249,7 @@ msgstr "terbaru" #: updater.php:84 msgid "updates check is disabled" -msgstr "pengecekan pembaharuan sedang non-aktifkan" +msgstr "Pemeriksaan pembaruan dinonaktifkan." #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 620961e598f03c85c0a841fe767ca483e82d1d08..d9e12876584af06d1f38256865b1df6c8715a9fe 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,12 +7,14 @@ # Muhammad Fauzan , 2012. # Muhammad Panji , 2012. # Muhammad Radifar , 2011. +# , 2013. +# Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -23,48 +25,48 @@ msgstr "" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" -msgstr "" +msgstr "Tidak dapat memuat daftar dari App Store" #: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "autentikasi bermasalah" +msgstr "Galat autentikasi" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "Tidak dapat mengubah nama tampilan" #: ajax/creategroup.php:10 msgid "Group already exists" -msgstr "" +msgstr "Grup sudah ada" #: ajax/creategroup.php:19 msgid "Unable to add group" -msgstr "" +msgstr "Tidak dapat menambah grup" #: ajax/enableapp.php:11 msgid "Could not enable app. " -msgstr "" +msgstr "Tidak dapat mengaktifkan aplikasi." #: ajax/lostpassword.php:12 msgid "Email saved" -msgstr "Email tersimpan" +msgstr "Email disimpan" #: ajax/lostpassword.php:14 msgid "Invalid email" -msgstr "Email tidak sah" +msgstr "Email tidak valid" #: ajax/removegroup.php:13 msgid "Unable to delete group" -msgstr "" +msgstr "Tidak dapat menghapus grup" #: ajax/removeuser.php:24 msgid "Unable to delete user" -msgstr "" +msgstr "Tidak dapat menghapus pengguna" #: ajax/setlanguage.php:15 msgid "Language changed" -msgstr "Bahasa telah diganti" +msgstr "Bahasa telah diubah" #: ajax/setlanguage.php:17 ajax/setlanguage.php:20 msgid "Invalid request" @@ -72,98 +74,98 @@ msgstr "Permintaan tidak valid" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "Admin tidak dapat menghapus dirinya sendiri dari grup admin" #: ajax/togglegroups.php:30 #, php-format msgid "Unable to add user to group %s" -msgstr "" +msgstr "Tidak dapat menambahkan pengguna ke grup %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "" +msgstr "Tidak dapat menghapus pengguna dari grup %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Tidak dapat memperbarui aplikasi." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Perbarui ke {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" -msgstr "NonAktifkan" +msgstr "Nonaktifkan" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Aktifkan" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Mohon tunggu...." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Galat" + +#: js/apps.js:90 msgid "Updating...." -msgstr "" +msgstr "Memperbarui...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" -msgstr "" +msgstr "Gagal ketika memperbarui aplikasi" -#: js/apps.js:87 -msgid "Error" -msgstr "kesalahan" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "Diperbarui" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Menyimpan..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "dihapus" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" -msgstr "batal dikerjakan" +msgstr "urungkan" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "Tidak dapat menghapus pengguna" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" -msgstr "Group" +msgstr "Grup" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Admin Grup" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Hapus" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" -msgstr "" +msgstr "tambah grup" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "Tuliskan nama pengguna yang valid" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "Gagal membuat pengguna" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "Tuliskan sandi yang valid" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -171,7 +173,7 @@ msgstr "__language_name__" #: templates/admin.php:15 msgid "Security Warning" -msgstr "peringatan keamanan" +msgstr "Peringatan Keamanan" #: templates/admin.php:18 msgid "" @@ -180,36 +182,36 @@ 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 "Mungkin direktori data dan berkas Anda dapat diakses dari internet. Berkas .htaccess yang disediakan oleh ownCloud tidak berfungsi. Kami sangat menyarankan Anda untuk mengonfigurasi webserver Anda agar direktori data tidak lagi dapat diakses atau pindahkan direktori data ke luar akar dokumen webserver." #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Peringatan Persiapan" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Web server Anda belum dikonfigurasi untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Silakan periksa ulang panduan instalasi." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Module 'fileinfo' tidak ada" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Kode pelokalan tidak berfungsi" #: templates/admin.php:63 #, php-format @@ -217,11 +219,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Server ownCloud ini tidak dapat menyetel kode pelokalan sistem ke nilai %s. Ini berarti mungkin akan terjadi masalah pada karakter tertentu pada nama berkas. Kami sarankan untuk menginstal paket yang dibutuhkan pada sistem Anda untuk mendukung %s." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Koneksi internet tidak berfungsi" #: templates/admin.php:78 msgid "" @@ -231,100 +233,104 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "Server ownCloud ini tidak memiliki koneksi internet yang berfungsi. Artinya, beberapa fitur misalnya mengaitkan penyimpanan eksternal, notifikasi tentang pembaruan, atau instalasi aplikasi dari pihak ketiga tidak akan dapat berfungsi. Pengaksesan berkas secara online dan pengiriman email notifikasi mungkin juga tidak dapat berfungsi. Kami sarankan untuk mengaktifkan koneksi internet server ini agar mendapatkan semua fitur ownCloud." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Jalankan tugas setiap kali halaman dimuat" #: templates/admin.php:111 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 telah terdaftar sebagai layanan webcron. Panggil halaman cron.php pada akar direktori ownCloud tiap menit lewat http." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Gunakan layanan cron sistem. Panggil berkas cron.php pada folder ownCloud lewat cronjob sistem tiap menit." #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Berbagi" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Aktifkan API Pembagian" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Izinkan tautan" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Izinkan pembagian ulang" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "Keamanan" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "Selalu Gunakan HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "Paksa klien untuk tersambung ke ownCloud lewat koneksi yang dienkripsi." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "Silakan sambungkan ke instalasi ownCloud lewat HTTPS untuk mengaktifkan atau menonaktifkan fitur SSL." #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "Catat" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "Level pencatatan" #: templates/admin.php:223 msgid "More" -msgstr "lagi" +msgstr "Lainnya" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Ciutkan" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" -msgstr "" +msgstr "Versi" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "Dikembangkan oleh komunitas ownCloud, kode sumber dilisensikan di bawah AGPL." #: templates/apps.php:11 msgid "Add your App" -msgstr "Tambahkan App anda" +msgstr "Tambahkan Aplikasi Anda" #: templates/apps.php:12 msgid "More Apps" -msgstr "" +msgstr "Aplikasi Lainnya" #: templates/apps.php:28 msgid "Select an App" -msgstr "Pilih satu aplikasi" +msgstr "Pilih Aplikasi" #: templates/apps.php:34 msgid "See application page at apps.owncloud.com" @@ -352,88 +358,88 @@ msgstr "Lihat halaman aplikasi di apps.owncloud.com" #: templates/apps.php:36 msgid "-licensed by " -msgstr "" +msgstr "-dilisensikan oleh " #: templates/apps.php:38 msgid "Update" -msgstr "Pembaruan" +msgstr "Perbarui" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "Dokumentasi Pengguna" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "Dokumentasi Administrator" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "Dokumentasi Online" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "Forum" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "Bugtracker" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "Dukungan Komersial" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "Anda telah menggunakan %s dari total %s" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "Dapatkan aplikasi untuk sinkronisasi berkas anda" +msgstr "Dapatkan aplikasi untuk sinkronisasi berkas Anda" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "" +msgstr "Tampilkan Penuntun Konfigurasi Awal" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" -msgstr "Password" +msgstr "Sandi" #: templates/personal.php:38 msgid "Your password was changed" -msgstr "" +msgstr "Sandi Anda telah diubah" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "Tidak dapat merubah password anda" +msgstr "Gagal mengubah sandi Anda" #: templates/personal.php:40 msgid "Current password" -msgstr "Password saat ini" +msgstr "Sandi saat ini" #: templates/personal.php:42 msgid "New password" -msgstr "kata kunci baru" +msgstr "Sandi baru" #: templates/personal.php:44 msgid "Change password" -msgstr "Rubah password" +msgstr "Ubah sandi" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "Nama Tampilan" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "Nama tampilan Anda telah diubah" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "Tidak dapat mengubah nama tampilan Anda" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "Ubah nama tampilan" #: templates/personal.php:70 msgid "Email" @@ -441,11 +447,11 @@ msgstr "Email" #: templates/personal.php:72 msgid "Your email address" -msgstr "Alamat email anda" +msgstr "Alamat email Anda" #: templates/personal.php:73 msgid "Fill in an email address to enable password recovery" -msgstr "Masukkan alamat email untuk mengaktifkan pemulihan password" +msgstr "Masukkan alamat email untuk mengaktifkan pemulihan sandi" #: templates/personal.php:79 templates/personal.php:80 msgid "Language" @@ -457,15 +463,15 @@ msgstr "Bantu menerjemahkan" #: templates/personal.php:91 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas " #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "Nama Masuk" #: templates/users.php:32 msgid "Create" @@ -473,28 +479,28 @@ msgstr "Buat" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Penyimpanan Baku" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" -msgstr "" +msgstr "Tak terbatas" #: templates/users.php:59 templates/users.php:154 msgid "Other" -msgstr "Lain-lain" +msgstr "Lainnya" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "Penyimpanan" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "ubah nama tampilan" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "setel sandi baru" #: templates/users.php:134 msgid "Default" -msgstr "" +msgstr "Baku" diff --git a/l10n/id/user_ldap.po b/l10n/id/user_ldap.po index bb9e8748ea81505b3fd515bf1672e59e264118b3..f972150841b0bf49aef26a4880107b90c96a7d10 100644 --- a/l10n/id/user_ldap.po +++ b/l10n/id/user_ldap.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# , 2013. # Widya Walesa , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -238,7 +239,7 @@ msgstr "tidak disarankan, gunakan hanya untuk pengujian." #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Gunakan Tembolok untuk Time-To-Live" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -302,11 +303,11 @@ msgstr "Atribut Khusus" #: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "Bidang Kuota" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Kuota Baku" #: templates/settings.php:93 msgid "in bytes" @@ -314,11 +315,11 @@ msgstr "dalam bytes" #: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "Bidang Email" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Aturan Penamaan Folder Home Pengguna" #: templates/settings.php:95 msgid "" @@ -328,7 +329,7 @@ msgstr "Biarkan nama pengguna kosong (default). Atau tetapkan atribut LDAP/AD." #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Uji Konfigurasi" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index 9ae62e5a2cf80d8b8eddc9bf1ef4ee7be4179fe6..89a9bc5bcd3ffcc9fdef3411fd2901768f2c6661 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 02:30+0000\n" -"Last-Translator: w41l \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/is/core.po b/l10n/is/core.po index 338857f502ef8f011d9da5b7b49ff574c48a2508..ba97904bd6cab145abe48ea448348be071122654 100644 --- a/l10n/is/core.po +++ b/l10n/is/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -162,86 +162,88 @@ msgstr "Desember" msgid "Settings" msgstr "Stillingar" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sek síðan" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 min síðan" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} min síðan" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Fyrir 1 klst." -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "fyrir {hours} klst." -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "í dag" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "í gær" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagar síðan" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "fyrir {months} mánuðum" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "síðasta ári" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "árum síðan" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Veldu" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Í lagi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Hætta við" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Veldu" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Já" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Í lagi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Tegund ekki tilgreind" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Villa" @@ -261,7 +263,7 @@ msgstr "" msgid "Share" msgstr "Deila" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Villa við deilingu" @@ -321,59 +323,59 @@ msgstr "Deila með tölvupósti:" msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "getur breytt" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "mynda" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "uppfæra" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "eyða" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "deila" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Tölvupóstur sendur" @@ -533,23 +535,23 @@ msgstr "verður notað" msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Virkja uppsetningu" diff --git a/l10n/is/files.po b/l10n/is/files.po index 0f64202e30d3925d0f7dc222dd8cdd27a95d58a3..f2748bea44183fb30117b44f43b7b2f22f62b4cc 100644 --- a/l10n/is/files.po +++ b/l10n/is/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "Tókst ekki að skrifa á disk" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ógild mappa." @@ -91,39 +91,46 @@ msgstr "Eyða" msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Bíður" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} er þegar til" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "yfirskrifa" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "stinga upp á nafni" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "hætta við" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "yfirskrifaði {new_name} með {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "afturkalla" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 skrá innsend" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' er ekki leyfilegt nafn." @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Innsending á skrá mistókst, hugsanlega sendir þú möppu eða skráin er 0 bæti." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Villa við innsendingu" - -#: js/files.js:274 -msgid "Close" -msgstr "Loka" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Ekki nægt pláss tiltækt" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 skrá innsend" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} skrár innsendar" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Hætt við innsendingu." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Innsending í gangi. Ef þú ferð af þessari síðu mun innsending misheppnast." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Vefslóð má ekki vera tóm." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Villa" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nafn" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Stærð" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Breytt" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 mappa" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} möppur" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 skrá" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} skrár" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 63f151c73c1b3356e86731923977b5802eacb7d6..d1357c26c4bf4d6d2d3e7c0d60e308effb745a57 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/files_external.po b/l10n/is/files_external.po index 50c970d4f38323a7452d1be5eeef318dafa30629..f4a26d339d68bb762b81ad230b8a202e2dfd9af1 100644 --- a/l10n/is/files_external.po +++ b/l10n/is/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "Gefðu upp virkan Dropbox lykil og leynikóða" msgid "Error configuring Google Drive storage" msgstr "Villa kom upp við að setja upp Google Drive gagnasvæði" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aðvörun: \"smbclient\" er ekki uppsettur. Uppsetning á CIFS/SMB gagnasvæðum er ekki möguleg. Hafðu samband við kerfisstjóra til að fá hann uppsettan." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index d37c6475559b7695dd66b4e1b23151875ef882d8..cab803385d0be7c04f4d8acbc070b38febea0562 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/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-12-31 00:04+0100\n" -"PO-Revision-Date: 2012-12-30 15:08+0000\n" -"Last-Translator: sveinn \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Lykilorð" msgid "Submit" msgstr "Senda" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index be62d3c52aaebff21f83746e94a1665ac769b8af..8955f0bf3642a8a65215e151ee452fa85d02826e 100644 --- a/l10n/is/files_trashbin.po +++ b/l10n/is/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Villa" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index 4159653790a1689f5952bbeb2d01c8f8b6096a3f..00eb5c1b8c6653ad602ccfc42df2607616ab3683 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 8ec034b94ddcc5d936d3fe1f67dde9918c864c7c..c978737fb498446f046fdb5d85499de476cb3d2f 100644 --- a/l10n/is/lib.po +++ b/l10n/is/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# sveinn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/is/settings.po b/l10n/is/settings.po index d4ff8d5ce670ba0128174844f6fd3d2e7189229e..7a60fd8a20d057c91c73a847930847b889a3c8e4 100644 --- a/l10n/is/settings.po +++ b/l10n/is/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -93,7 +93,7 @@ msgstr "" msgid "Disable" msgstr "Gera óvirkt" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Virkja" @@ -101,64 +101,64 @@ msgstr "Virkja" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Villa" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Villa" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Er að vista ..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "afturkalla" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Hópar" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Hópstjóri" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Eyða" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -317,11 +317,15 @@ msgstr "" msgid "More" msgstr "Meira" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Minna" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index 8bf055721845f4840753adee06f1cab83c2cae5d..66194d2dae2979baf2a34eef6fab1e8ac0c283c7 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "Vefslóð: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/it/core.po b/l10n/it/core.po index 3c3de89a17b5e245d6f9fc5dd16d1c2b22367a3b..6eb124460f5a07d9204fec1564838278d14c79b0 100644 --- a/l10n/it/core.po +++ b/l10n/it/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: 2013-03-28 00:02+0100\n" -"PO-Revision-Date: 2013-03-27 22:50+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \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" @@ -166,86 +166,88 @@ msgstr "Dicembre" msgid "Settings" msgstr "Impostazioni" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "Un minuto fa" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuti fa" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ora fa" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ore fa" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "oggi" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ieri" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} giorni fa" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "mese scorso" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} mesi fa" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "mesi fa" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "anno scorso" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "anni fa" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Scegli" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annulla" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Scegli" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sì" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Il tipo di oggetto non è specificato." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Errore" @@ -265,7 +267,7 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Errore durante la condivisione" @@ -325,59 +327,59 @@ msgstr "Condividi tramite email:" msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "può modificare" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "creare" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "aggiornare" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "eliminare" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "condividere" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Messaggio inviato" @@ -537,23 +539,23 @@ msgstr "sarà utilizzato" msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Termina la configurazione" diff --git a/l10n/it/files.po b/l10n/it/files.po index c089056578cdd5607e278c902f08a4a8d4a9d27d..dc9bdc115b982d714e53e871b788ec1cdaa07a6f 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -74,7 +74,7 @@ msgstr "Scrittura su disco non riuscita" msgid "Not enough storage available" msgstr "Spazio di archiviazione insufficiente" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Cartella non valida." @@ -94,39 +94,46 @@ msgstr "Elimina" msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "In corso" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} esiste già" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "sostituisci" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "suggerisci nome" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "annulla" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "sostituito {new_name} con {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "annulla" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "esegui l'operazione di eliminazione" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 file in fase di caricamento" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "caricamento file" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' non è un nome file valido." @@ -155,68 +162,60 @@ msgid "" "big." msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere del tempo se i file sono grandi." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossibile inviare il file poiché è una cartella o ha dimensione 0 byte" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Errore di invio" - -#: js/files.js:274 -msgid "Close" -msgstr "Chiudi" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Spazio disponibile insufficiente" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 file in fase di caricamento" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} file in fase di caricamentoe" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Invio annullato" -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "L'URL non può essere vuoto." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Errore" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nome" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Dimensione" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificato" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 cartella" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} cartelle" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 file" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} file" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index e94b78922132488a6ca7c664bc3fdcdcfb47cdf4..22da6ecfe7b0ca477d57a18f084b59386e81699a 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/it/files_external.po b/l10n/it/files_external.po index bf8d4c0ae6e140f65b9563b104f9ed9942e135dd..fb50f4d4d86358fd78045e8b03c991c6775911bc 100644 --- a/l10n/it/files_external.po +++ b/l10n/it/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -39,13 +39,13 @@ msgstr "Fornisci chiave di applicazione e segreto di Dropbox validi." msgid "Error configuring Google Drive storage" msgstr "Errore durante la configurazione dell'archivio Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Avviso: \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index aaabba1bea3e0db1cd5f540279dd72b1096f0439..86370c04eab48704d6bab0898d5b23e8db26a526 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/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-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 06:41+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -26,24 +26,24 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Scarica" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servizi web nelle tue mani" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 3abe485a287776e5cc438539fb0d4839482a6092..a585ede393934478aa54a100ecbf6d20b782e92a 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Impossibile eliminare %s definitivamente" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" @@ -32,6 +32,10 @@ msgstr "Impossibile ripristinare %s" msgid "perform restore operation" msgstr "esegui operazione di ripristino" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Errore" + #: js/trash.js:34 msgid "delete file permanently" msgstr "elimina il file definitivamente" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index 57ca778df641b10a395267484c54c91dc8b0b865..24390f266e165382651e5b8c784d722ee3494f1a 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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:30+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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,11 +41,11 @@ msgstr "non riuscita" msgid "File %s could not be reverted to version %s" msgstr "Il file %s non può essere ripristinato alla versione %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Non sono disponibili versioni precedenti" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nessun percorso specificato" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 2c087ca8fd60171bfeedd455a6b65f9904d5bd39..976a9ba8596efca173f0b06477e19021480fc609 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Vincenzo Reale , 2012-2013. +# Vincenzo Reale , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \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" @@ -94,10 +94,6 @@ msgstr "Imposta un nome utente di amministrazione." msgid "Set an admin password." msgstr "Imposta una password di amministrazione." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Specifica una cartella dei dati." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 07407feff948f1588d45945aaa58977390d23526..4e47bbc088f1b878b90e4ecd2f7ba66cd0843858 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 13:51+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \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" @@ -99,7 +99,7 @@ msgstr "Aggiorna a {appversion}" msgid "Disable" msgstr "Disabilita" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Abilita" @@ -107,64 +107,64 @@ msgstr "Abilita" msgid "Please wait...." msgstr "Attendere..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Errore" + +#: js/apps.js:90 msgid "Updating...." msgstr "Aggiornamento in corso..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Errore durante l'aggiornamento" -#: js/apps.js:87 -msgid "Error" -msgstr "Errore" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Aggiornato" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvataggio in corso..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "eliminati" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "annulla" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossibile rimuovere l'utente" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppi" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppi amministrati" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Elimina" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "aggiungi gruppo" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Deve essere fornito un nome utente valido" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Errore durante la creazione dell'utente" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Deve essere fornita una password valida" @@ -323,11 +323,15 @@ msgstr "Livello di log" msgid "More" msgstr "Più" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Meno" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versione" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \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" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index ba6bfbe7d44cfc720d07e631f2a32edb3ea46f05..f88d74e447e70ae25e99d6de581218917666fc3a 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 06:51+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \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" @@ -26,7 +26,7 @@ msgstr "Autenticazione WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index fd61b2fdbfac5a9360570fda4b28d6c83aa2dfc8..fd5f9d065cb71dc1dfa3da66bc1f65ae3ba19ded 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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: 2013-03-28 00:02+0100\n" -"PO-Revision-Date: 2013-03-27 10:10+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -164,86 +164,88 @@ msgstr "12月" msgid "Settings" msgstr "設定" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" -msgstr "秒前" +msgstr "数秒前" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分前" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分前" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 時間前" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 時間前" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "今日" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "昨日" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 日前" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "一月前" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "一年前" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "選択" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "キャンセル" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "いいえ" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "選択" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "はい" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "いいえ" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "オブジェクタイプが指定されていません。" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "エラー" @@ -263,7 +265,7 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "共有でエラー発生" @@ -323,59 +325,59 @@ msgstr "メール経由で共有:" msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "共有解除" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "編集可能" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "アクセス権限" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "作成" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "更新" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "削除" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "共有" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "メールを送信しました" @@ -535,23 +537,23 @@ msgstr "が使用されます" msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "セットアップを完了します" diff --git a/l10n/ja_JP/files.po b/l10n/ja_JP/files.po index b3871506b28822c2a3bee2558b761ad0e073848e..8348f354bdf02d3dde7f05e30d094d48494ce137 100644 --- a/l10n/ja_JP/files.po +++ b/l10n/ja_JP/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -75,7 +75,7 @@ msgstr "ディスクへの書き込みに失敗しました" msgid "Not enough storage available" msgstr "ストレージに十分な空き容量がありません" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "無効なディレクトリです。" @@ -95,39 +95,46 @@ msgstr "削除" msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "保留" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} はすでに存在しています" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "置き換え" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "推奨名称" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "キャンセル" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{old_name} を {new_name} に置換" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "元に戻す" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "削除を実行" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "ファイルを1つアップロード中" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "ファイルをアップロード中" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' は無効なファイル名です。" @@ -156,68 +163,60 @@ msgid "" "big." msgstr "ダウンロードの準備中です。ファイルサイズが大きい場合は少し時間がかかるかもしれません。" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ディレクトリもしくは0バイトのファイルはアップロードできません" -#: js/files.js:263 -msgid "Upload Error" -msgstr "アップロードエラー" - -#: js/files.js:274 -msgid "Close" -msgstr "閉じる" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "利用可能なスペースが十分にありません" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "ファイルを1つアップロード中" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} ファイルをアップロード中" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "アップロードはキャンセルされました。" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "ファイル転送を実行中です。今このページから移動するとアップロードが中止されます。" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URLは空にできません。" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "エラー" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "名前" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "サイズ" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "更新日時" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 フォルダ" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} フォルダ" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 ファイル" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} ファイル" @@ -259,7 +258,7 @@ msgstr "保存" #: templates/index.php:7 msgid "New" -msgstr "新規" +msgstr "新規作成" #: templates/index.php:10 msgid "Text file" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 6d5a563dfe035058e3aa36226522400ca440607d..474babe04a79efeff38d6ddb58f76030dccbc92b 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ja_JP/files_external.po b/l10n/ja_JP/files_external.po index 1fa0f2a5b0604d83b9ccc3a2d329625ecf25fa18..ad9c4adb747af09164810a057954c4fc5cf56f21 100644 --- a/l10n/ja_JP/files_external.po +++ b/l10n/ja_JP/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "有効なDropboxアプリのキーとパスワードを入力して下 msgid "Error configuring Google Drive storage" msgstr "Googleドライブストレージの設定エラー" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告: \"smbclient\" はインストールされていません。CIFS/SMB 共有のマウントはできません。システム管理者にインストールをお願いして下さい。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index 28be75107c8229b68f9d0b692f0e460ec3b7df04..443064306d487b0e1c83bef0f6b69fce4b9f06e2 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/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-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 11:01+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,24 +27,24 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "プレビューはありません" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "管理下のウェブサービス" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index 3d87ec0682918ab45358ca244e109260ba1103d0..2130acb86f686f933a6ba142b8d146d56c3ddffb 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s を完全に削除出来ませんでした" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "%s を復元出来ませんでした" @@ -32,6 +32,10 @@ msgstr "%s を復元出来ませんでした" msgid "perform restore operation" msgstr "復元操作を実行する" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "エラー" + #: js/trash.js:34 msgid "delete file permanently" msgstr "ファイルを完全に削除する" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 7b11e7cf484e5f555a0103c0f83900c506b2cb37..480fb5e1fefa8b9817392ad4bc45f574728d0ba4 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:10+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index ed5cf7c3f7a5b6b2337ff0343a1b5f44fac0fdaa..8b2c637f42b581f2374a56215e993577dea51593 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2013. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -96,10 +96,6 @@ msgstr "管理者のユーザ名を設定。" msgid "Set an admin password." msgstr "管理者のパスワードを設定。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "データフォルダを指定。" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -192,7 +188,7 @@ msgstr "インストールガイドをよく確認してくだ #: template.php:113 msgid "seconds ago" -msgstr "秒前" +msgstr "数秒前" #: template.php:114 msgid "1 minute ago" diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 8a310c531732495a10badc82d1ee4b62744e662c..065218b575359e804c1245e4fddd3c54b902ba7b 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Daisuke Deguchi , 2012. -# Daisuke Deguchi , 2012-2013. -# , 2012. -# , 2012. -# YANO Tetsu , 2013. +# Daisuke Deguchi , 2012 +# Daisuke Deguchi , 2012-2013 +# tt yn , 2012 +# tt yn , 2012 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:10+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-17 08:10+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" @@ -97,7 +97,7 @@ msgstr "{appversion} に更新" msgid "Disable" msgstr "無効" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "有効" @@ -105,64 +105,64 @@ msgstr "有効" msgid "Please wait...." msgstr "しばらくお待ちください。" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "エラー" + +#: js/apps.js:90 msgid "Updating...." msgstr "更新中...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "アプリの更新中にエラーが発生" -#: js/apps.js:87 -msgid "Error" -msgstr "エラー" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "更新済み" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "保存中..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "削除" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "元に戻す" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "ユーザを削除出来ません" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "グループ" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "グループ管理者" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "削除" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "グループを追加" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "有効なユーザ名を指定する必要があります" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "ユーザ作成エラー" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "有効なパスワードを指定する必要があります" @@ -317,15 +317,19 @@ msgstr "ログ" msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" -msgstr "詳細" +msgstr "もっと見る" + +#: templates/admin.php:228 +msgid "Less" +msgstr "閉じる" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "バージョン" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。" +msgstr "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。" #: templates/apps.php:11 msgid "Add your App" @@ -390,11 +394,11 @@ msgstr "現在、%s / %s を利用していま #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "あなたのファイルを同期するためのアプリを取得" +msgstr "ファイルを同期するためのアプリを取得" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "初回実行ウィザードを再度表示する" +msgstr "初回ウィザードを再表示する" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index b5271f2653652eee13fb893b115aef1efb4f9d47..d5116ad2263d13514065b89068f5509c6b4cfa34 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/user_ldap.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index 966cae84162c4404c705c34266fc7cd3a0a305a2..2341b9f95c72b93cdd0cd03f102c7358e294c0b2 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-17 00:26+0100\n" -"PO-Revision-Date: 2013-01-16 05:50+0000\n" -"Last-Translator: Daisuke Deguchi \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "WebDAV 認証" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ka/core.po b/l10n/ka/core.po index fff9226e31d088614304f210988d575af6e90442..63d4dff145e8074ead81148bfe2363a034d3f0e3 100644 --- a/l10n/ka/core.po +++ b/l10n/ka/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 საათის წინ" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "დღეს" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index a70ab61b464bcee560d47c2401d05dc113b7ba32..6dcd0b94c0b66c0c0d8207d3f0f7705ff02e3724 100644 --- a/l10n/ka/files.po +++ b/l10n/ka/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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "ფაილები" @@ -82,7 +82,7 @@ msgstr "ფაილები" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "გადმოწერა" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/ka/files_encryption.po b/l10n/ka/files_encryption.po index 5321e594c35c54b88517db4e7908682ec4767ed3..357e27ab92d0dfcbd1514433584c804807f34507 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka/files_external.po b/l10n/ka/files_external.po index ff99ab06484501bbba82776a33813f4e599eefda..1d2bb5cb2b0acc58951638ca68fde819294fe972 100644 --- a/l10n/ka/files_external.po +++ b/l10n/ka/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index f4c48c38cd09e9e393ad0f5fe4b0628fc8626398..622310cbd5baa0bf5cb9fe5fdd4e053ce8ed4663 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/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: 2013-02-27 14:34+0100\n" -"PO-Revision-Date: 2013-02-27 04:40+0000\n" -"Last-Translator: GeoCybers \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index 84d63cc28b6ba51deee9cc467d8a72eee3a0c6ee..e26f005489c69ef3fe770d1c3ed011f243a004df 100644 --- a/l10n/ka/files_trashbin.po +++ b/l10n/ka/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ka/files_versions.po b/l10n/ka/files_versions.po index 4f6c948624dd79acf0811c8477c63e9a95bb9c54..302be1bdbfaab2723b889d39533a5fa392058530 100644 --- a/l10n/ka/files_versions.po +++ b/l10n/ka/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 607e49334b6dc47a8ffe4d24a14fd103c1034459..6051b7dcc6d29ab4c6277284ab83422f50bed241 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Lasha GeTto , 2013. +# GeoCybers , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 494239e38919ae623f74bf956b8047af33e88c34..0a85ca4431cf6deb8032762420419ae05c2477b0 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "პაროლი" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "შველა" diff --git a/l10n/ka/user_webdavauth.po b/l10n/ka/user_webdavauth.po index 3c15980932ecc82f6d5b7c3821f62c6566a20322..5433bc595c77dd9e8d0b0a0af0bfdea8c752640d 100644 --- a/l10n/ka/user_webdavauth.po +++ b/l10n/ka/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index 5381ed19f30c832bc68d1198baa9d4155517028a..17e56b13b31a60001daa2c250eb86ac28d9b990f 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/core.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Romeo Pirtskhalava , 2013. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -22,30 +22,30 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფაილი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "მომხმარებელმა %s გაგიზიარათ ფოლდერი \"%s\". ის ხელმისაწვდომია გადმოსაწერად აქ: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "კატეგორიის ტიპი არ არის განხილული." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -54,24 +54,24 @@ msgstr "არ არის კატეგორია დასამატე #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "კატეგორია უკვე არსებობს: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "ობიექტის ტიპი არ არის განხილული." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s ID არ არის განხილული" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "შეცდომა %s–ის ფევორიტებში დამატების დროს." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." @@ -80,7 +80,7 @@ msgstr "სარედაქტირებელი კატეგორი #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "შეცდომა %s–ის ფევორიტებიდან წაშლის დროს." #: js/config.php:34 msgid "Sunday" @@ -162,106 +162,108 @@ msgstr "დეკემბერი" msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 წუთის წინ" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} წუთის წინ" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" -msgstr "" +msgstr "1 საათის წინ" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} საათის წინ" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "დღეს" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} დღის წინ" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" -msgstr "" +msgstr "{months} თვის წინ" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "წლის წინ" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "არჩევა" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "დიახ" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "უარყოფა" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "არა" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "არჩევა" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "კი" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "დიახ" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "არა" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "ობიექტის ტიპი არ არის მითითებული." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "შეცდომა" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "აპლიკაციის სახელი არ არის მითითებული." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "მოთხოვნილი ფაილი {file} არ არის დაინსტალირებული." #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "გაზიარებული" #: js/share.js:90 msgid "Share" msgstr "გაზიარება" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" @@ -275,11 +277,11 @@ msgstr "შეცდომა დაშვების ცვლილები #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "" +msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" #: js/share.js:159 msgid "Share with" @@ -299,11 +301,11 @@ msgstr "პაროლი" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "გაგზავნა" #: js/share.js:178 msgid "Set expiration date" @@ -321,72 +323,72 @@ msgstr "გააზიარე მეილზე" msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "გაზიარების მოხსნა" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "შექმნა" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "განახლება" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "წაშლა" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "გაზიარება" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "გაგზავნა ...." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "იმეილი გაიგზავნა" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -402,11 +404,11 @@ msgstr "თქვენ მოგივათ პაროლის შესა #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "რესეტის მეილი გაიგზავნა" #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "მოთხოვნა შეწყდა!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:28 @@ -476,11 +478,11 @@ msgstr "უსაფრთხოების გაფრთხილება" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "იმისათვის რომ გამოიყენოთ ownCloud უსაფრთხოდ, გთხოვთ განაახლოთ თქვენი PHP ვერსია." #: templates/installation.php:32 msgid "" @@ -498,14 +500,14 @@ msgstr "შემთხვევითი სიმბოლოების გ msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "სერვერის კორექტულად დასაკონფიგურირებლად, ნახეთ შემდეგი დოკუმენტაცია." #: templates/installation.php:44 msgid "Create an admin account" @@ -513,43 +515,43 @@ msgstr "შექმენი ადმინ ექაუნტი, 2012. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-22 01:57+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -21,20 +22,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "%s –ის გადატანა ვერ მოხერხდა" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "ფაილის სახელის გადარქმევა ვერ მოხერხდა" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "ფაილი არ აიტვირთა. უცნობი შეცდომა" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -43,7 +44,7 @@ msgstr "ჭოცდომა არ დაფიქსირდა, ფაი #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "ატვირთული ფაილი აჭარბებს upload_max_filesize დირექტივას php.ini ფაილში" #: ajax/upload.php:29 msgid "" @@ -69,11 +70,11 @@ msgstr "შეცდომა დისკზე ჩაწერისას" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "საცავში საკმარისი ადგილი არ არის" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "დაუშვებელი დირექტორია." #: appinfo/app.php:12 msgid "Files" @@ -81,7 +82,7 @@ msgstr "ფაილები" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "სრულად წაშლა" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -91,129 +92,128 @@ msgstr "წაშლა" msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "მოცდის რეჟიმში" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} უკვე არსებობს" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "შეცვლა" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "სახელის შემოთავაზება" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "უარყოფა" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} შეცვლილია {old_name}–ით" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "მიმდინარეობს წაშლის ოპერაცია" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 ფაილის ატვირთვა" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "ფაილები იტვირთება" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' არის დაუშვებელი ფაილის სახელი." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "ფაილის სახელი არ შეიძლება იყოს ცარიელი." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "არადაშვებადი სახელი, '\\', '/', '<', '>', ':', '\"', '|', '?' და '*' არ არის დაიშვებული." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "თქვენი საცავი გადაივსო. ფაილების განახლება და სინქრონიზირება ვერ მოხერხდება!" #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "თქვენი საცავი თითქმის გადაივსო ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "გადმოწერის მოთხოვნა მუშავდება. ის მოითხოვს გარკვეულ დროს რაგდან ფაილები არის დიდი ზომის." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "თქვენი ფაილის ატვირთვა ვერ მოხერხდა. ის არის საქაღალდე და შეიცავს 0 ბაიტს" -#: js/files.js:263 -msgid "Upload Error" -msgstr "შეცდომა ატვირთვისას" - -#: js/files.js:274 -msgid "Close" -msgstr "დახურვა" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 ფაილის ატვირთვა" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} ფაილი იტვირთება" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "საკმარისი ადგილი არ არის" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "ატვირთვა შეჩერებულ იქნა." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "მიმდინარეობს ფაილის ატვირთვა. სხვა გვერდზე გადასვლა გამოიწვევს ატვირთვის შეჩერებას" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "URL არ შეიძლება იყოს ცარიელი." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "შეცდომა" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "სახელი" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "ზომა" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 საქაღალდე" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} საქაღალდე" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 ფაილი" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} ფაილი" @@ -267,11 +267,11 @@ msgstr "საქაღალდე" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "მისამართიდან" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "წაშლილი ფაილები" #: templates/index.php:48 msgid "Cancel upload" @@ -279,7 +279,7 @@ msgstr "ატვირთვის გაუქმება" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "თქვენ არ გაქვთ ჩაწერის უფლება აქ." #: templates/index.php:62 msgid "Nothing in here. Upload something!" @@ -313,4 +313,4 @@ msgstr "მიმდინარე სკანირება" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "ფაილური სისტემის ქეშის განახლება...." diff --git a/l10n/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 81a4932c1409182a70474f9d0a71f83e388b21e5..538122996f96aa58c404e4fc16ca2e438f3308f8 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -19,20 +20,20 @@ msgstr "" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" -msgstr "" +msgstr "ენკრიპცია" #: templates/settings-personal.php:7 msgid "File encryption is enabled." -msgstr "" +msgstr "ფაილის ენკრიპცია ჩართულია." #: templates/settings-personal.php:11 msgid "The following file types will not be encrypted:" -msgstr "" +msgstr "შემდეგი ფაილური ტიპების ენკრიპცია არ მოხდება:" #: templates/settings.php:7 msgid "Exclude the following file types from encryption:" -msgstr "" +msgstr "ამოიღე შემდეგი ფაილის ტიპები ენკრიპციიდან:" #: templates/settings.php:12 msgid "None" -msgstr "" +msgstr "არა" diff --git a/l10n/ka_GE/files_external.po b/l10n/ka_GE/files_external.po index b38a37b7e55cbc9dd6953871f4b4ebcca059a9f2..29e278e6e526a0257e85f0b5553abfa8bcc5543f 100644 --- a/l10n/ka_GE/files_external.po +++ b/l10n/ka_GE/files_external.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -19,72 +20,72 @@ msgstr "" #: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 msgid "Access granted" -msgstr "" +msgstr "დაშვება მინიჭებულია" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "შეცდომა Dropbox საცავის კონფიგურირების დროს" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" -msgstr "" +msgstr "დაშვების მინიჭება" #: js/dropbox.js:101 msgid "Please provide a valid Dropbox app key and secret." -msgstr "" +msgstr "გთხოვთ მიუთითოთ Dropbox აპლიკაციის გასაღები და კოდი." #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "შეცდომა Google Drive საცავის კონფიგურირების დროს" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "გაფრთხილება: \"smbclient\" არ არის ინსტალირებული. CIFS/SMB ზიარების მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "გაფრთხილება: FTP მხარდაჭერა არ არის აქტიური ან დაინსტალირებული. FTP ზიარის მონტირება შეუძლებელია. გთხოვთ თხოვოთ თქვენს სისტემურ ადმინისტრატორებს დააინსტალიროს ის." #: templates/settings.php:3 msgid "External Storage" -msgstr "" +msgstr "ექსტერნალ საცავი" #: templates/settings.php:9 templates/settings.php:28 msgid "Folder name" -msgstr "" +msgstr "ფოლდერის სახელი" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "ექსტერნალ საცავი" #: templates/settings.php:11 msgid "Configuration" -msgstr "" +msgstr "კონფიგურაცია" #: templates/settings.php:12 msgid "Options" -msgstr "" +msgstr "ოფცია" #: templates/settings.php:13 msgid "Applicable" -msgstr "" +msgstr "მიღებადი" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "საცავის დამატება" #: templates/settings.php:90 msgid "None set" -msgstr "" +msgstr "არაფერია მითითებული" #: templates/settings.php:91 msgid "All Users" -msgstr "" +msgstr "ყველა მომხმარებელი" #: templates/settings.php:92 msgid "Groups" @@ -101,16 +102,16 @@ msgstr "წაშლა" #: templates/settings.php:129 msgid "Enable User External Storage" -msgstr "" +msgstr "მომხმარებლის ექსტერნალ საცავის აქტივირება" #: templates/settings.php:130 msgid "Allow users to mount their own external storage" -msgstr "" +msgstr "მიეცით მომხმარებლებს თავისი ექსტერნალ საცავის მონტირების უფლება" #: templates/settings.php:141 msgid "SSL root certificates" -msgstr "" +msgstr "SSL root სერთიფიკატები" #: templates/settings.php:159 msgid "Import Root Certificate" -msgstr "" +msgstr "Root სერთიფიკატის იმპორტირება" diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 8b33377df96078b2716c263771ec1712a6649a2d..968899752deee294ccda279a6f7a3f5780c1e8f9 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-27 00:01+0200\n" -"PO-Revision-Date: 2012-10-26 12:58+0000\n" -"Last-Translator: drlinux64 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +27,24 @@ msgstr "პაროლი" msgid "Submit" msgstr "გაგზავნა" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" -msgstr "" +msgstr "წინასწარი დათვალიერება შეუძლებელია" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web services under your control" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index df2af0a4a7da3240272f89f29a7321b7a6537fb3..5938528d4d9cb4d5fc5c1ee37f7612ad88a6baf2 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -17,27 +18,31 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "%s–ის აღდგენა ვერ მოხერხდა" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "მიმდინარეობს აღდგენის ოპერაცია" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "შეცდომა" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "ფაილის სრულად წაშლა" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "სრულად წაშლა" #: js/trash.js:174 templates/index.php:17 msgid "Name" @@ -45,7 +50,7 @@ msgstr "სახელი" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "წაშლილი" #: js/trash.js:184 msgid "1 folder" @@ -65,11 +70,11 @@ msgstr "{count} ფაილი" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "აღდგენა" #: templates/index.php:30 templates/index.php:31 msgid "Delete" @@ -77,4 +82,4 @@ msgstr "წაშლა" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "წაშლილი ფაილები" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index b37855b93c5c460cec193a83923c98cae572cf35..13de4c38f4e54f9eeb161d066c483163f7e34fe2 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -20,38 +21,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "ვერ მოხერხდა უკან დაბრუნება: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "დასრულდა" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "ფაილი %s დაბრუნდა ვერსიაზე %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "შეცდომა" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "ვერ მოხერხდა %s ფაილის %s ვერსიაზე დაბრუნება" -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "ძველი ვერსია არ არსებობს" -#: history.php:73 +#: history.php:74 msgid "No path specified" -msgstr "" +msgstr "გზა არ არის მითითებული" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "ვერსიები" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "დააბრუნეთ ფაილი წინა პოზიციაზე revert ღილაკზე დაჭერით" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index f4d7065099fbeb7a41fded6ef81df46cff8b9802..ff6c7f4124f0844046eeeb6e61faef57133ed9bb 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -44,27 +45,27 @@ msgstr "ადმინისტრატორი" #: files.php:209 msgid "ZIP download is turned off." -msgstr "" +msgstr "ZIP download–ი გათიშულია" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "ფაილები უნდა გადმოიტვირთოს სათითაოდ." #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "" +msgstr "უკან ფაილებში" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის." #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "ვერ განისაზღვრა" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "აპლიკაცია არ არის აქტიური" #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" @@ -72,7 +73,7 @@ msgstr "ავთენტიფიკაციის შეცდომა" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" @@ -84,55 +85,51 @@ msgstr "ტექსტი" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "სურათები" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "დააყენეთ ადმინისტრატორის სახელი." #: setup.php:37 msgid "Set an admin password." -msgstr "" - -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" +msgstr "დააყენეთ ადმინისტრატორის პაროლი." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s შეიყვანეთ ბაზის იუზერნეიმი." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s შეიყვანეთ ბაზის სახელი." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s არ მიუთითოთ წერტილი ბაზის სახელში" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s მიუთითეთ ბაზის ჰოსტი." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -140,53 +137,53 @@ msgstr "" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "DB შეცდომა: \"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Offending ბრძანება იყო: \"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს." #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "წაშალე ეს მომხამრებელი MySQL–იდან" #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s" #: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." #: template.php:113 msgid "seconds ago" @@ -199,16 +196,16 @@ msgstr "1 წუთის წინ" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d წუთის წინ" #: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "1 საათის წინ" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d საათის წინ" #: template.php:118 msgid "today" @@ -221,7 +218,7 @@ msgstr "გუშინ" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d დღის წინ" #: template.php:121 msgid "last month" @@ -230,7 +227,7 @@ msgstr "გასულ თვეში" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d თვის წინ" #: template.php:123 msgid "last year" @@ -243,7 +240,7 @@ msgstr "წლის წინ" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s ხელმისაწვდომია. მიიღეთ უფრო მეტი ინფორმაცია" #: updater.php:81 msgid "up to date" @@ -256,4 +253,4 @@ msgstr "განახლების ძებნა გათიშული #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index a2498bd7718cd1ae1e4fb0d61491920ad901ebe9..899e32ba84c1c8b6ebdf2bf64730216ff2b1ea38 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# drlinux64 , 2012 +# drlinux64 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-22 01:58+0200\n" +"PO-Revision-Date: 2013-04-21 18:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -29,7 +30,7 @@ msgstr "ავთენტიფიკაციის შეცდომა" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "დისფლეის სახელის შეცვლა ვერ მოხერხდა" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -69,7 +70,7 @@ msgstr "არასწორი მოთხოვნა" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან" #: ajax/togglegroups.php:30 #, php-format @@ -83,84 +84,84 @@ msgstr "მომხმარებლის წაშლა ვერ მოხ #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "ვერ მოხერხდა აპლიკაციის განახლება." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "განაახლე {appversion}–მდე" #: js/apps.js:36 js/apps.js:76 msgid "Disable" msgstr "გამორთვა" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "ჩართვა" #: js/apps.js:55 msgid "Please wait...." -msgstr "" - -#: js/apps.js:84 -msgid "Updating...." -msgstr "" - -#: js/apps.js:87 -msgid "Error while updating app" -msgstr "" +msgstr "დაიცადეთ...." -#: js/apps.js:87 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" msgstr "შეცდომა" #: js/apps.js:90 +msgid "Updating...." +msgstr "მიმდინარეობს განახლება...." + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "შეცდომა აპლიკაციის განახლების დროს" + +#: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "განახლებულია" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "შენახვა..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" -msgstr "" +msgstr "წაშლილი" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "დაბრუნება" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "მომხმარებლის წაშლა ვერ მოხერხდა" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "ჯგუფი" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "ჯგუფის ადმინისტრატორი" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "წაშლა" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" -msgstr "" +msgstr "ჯგუფის დამატება" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "უნდა მიუთითოთ არსებული მომხმარებლის სახელი" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "შეცდომა მომხმარებლის შექმნისას" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "უნდა მიუთითოთ არსებული პაროლი" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -177,36 +178,36 @@ 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 "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ." #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "გაფრთხილება დაყენებისას" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "მოდული 'fileinfo' არ არსებობს" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "ლოკალიზაცია არ მუშაობს" #: templates/admin.php:63 #, php-format @@ -214,11 +215,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა." #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "ინტერნეტ კავშირი არ მუშაობს" #: templates/admin.php:78 msgid "" @@ -228,100 +229,104 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული." #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron–ი" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" #: templates/admin.php:111 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 root დირექტორიაში, წუთში ერთხელ http–ით." #: templates/admin.php:121 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:128 msgid "Sharing" -msgstr "" +msgstr "გაზიარება" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Share API–ის ჩართვა" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "ლინკების დაშვება" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "გადაზიარების დაშვება" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "უსაფრთხოება" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "HTTPS–ის ჩართვა" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https)." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა." #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "ლოგი" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "ლოგირების დონე" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" -msgstr "" +msgstr "უფრო მეტი" + +#: templates/admin.php:228 +msgid "Less" +msgstr "naklebi" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" -msgstr "" +msgstr "ვერსია" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the AGPL." -msgstr "" +msgstr "წარმოებულია ownCloud community–ის მიერ. source code ვრცელდება AGPL ლიცენზიის ფარგლებში." #: templates/apps.php:11 msgid "Add your App" @@ -357,40 +362,40 @@ msgstr "განახლება" #: templates/help.php:4 msgid "User Documentation" -msgstr "" +msgstr "მომხმარებლის დოკუმენტაცია" #: templates/help.php:6 msgid "Administrator Documentation" -msgstr "" +msgstr "ადმინისტრატორის დოკუმენტაცია" #: templates/help.php:9 msgid "Online Documentation" -msgstr "" +msgstr "ონლაინ დოკუმენტაცია" #: templates/help.php:11 msgid "Forum" -msgstr "" +msgstr "ფორუმი" #: templates/help.php:14 msgid "Bugtracker" -msgstr "" +msgstr "ბაგთრექერი" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "კომერციული მხარდაჭერა" #: templates/personal.php:8 #, php-format msgid "You have used %s of the available %s" -msgstr "" +msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "აპლიკაცია ფაილების სინქრონიზაციისთვის" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "" +msgstr "მაჩვენე თავიდან გაშვებული ვიზარდი" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" @@ -418,19 +423,19 @@ msgstr "პაროლის შეცვლა" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "დისპლეის სახელი" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "დისფლეის სახელი შეიცვალა" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "თქვენი დისფლეის სახელის შეცვლა ვერ მოხერხდა" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "დისფლეის სახელის შეცვლა" #: templates/personal.php:70 msgid "Email" @@ -454,15 +459,15 @@ msgstr "თარგმნის დახმარება" #: templates/personal.php:91 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "მომხმარებლის სახელი" #: templates/users.php:32 msgid "Create" @@ -470,11 +475,11 @@ msgstr "შექმნა" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "საწყისი საცავი" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" -msgstr "" +msgstr "ულიმიტო" #: templates/users.php:59 templates/users.php:154 msgid "Other" @@ -482,16 +487,16 @@ msgstr "სხვა" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "საცავი" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "შეცვალე დისფლეის სახელი" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "დააყენეთ ახალი პაროლი" #: templates/users.php:134 msgid "Default" -msgstr "" +msgstr "საწყისი პარამეტრები" diff --git a/l10n/ka_GE/user_ldap.po b/l10n/ka_GE/user_ldap.po index 33202c71fcff955f2e6bbb6caab88c73ab31ec11..6931493d23f7a85ec5456ea115e2ea7d3b77f541 100644 --- a/l10n/ka_GE/user_ldap.po +++ b/l10n/ka_GE/user_ldap.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -19,315 +20,315 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "შეცდომა სერვერის კონფიგურაციის წაშლისას" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "კონფიგურაცია მართებულია და კავშირი დამყარდება!" #: ajax/testConfiguration.php:39 msgid "" "The configuration is valid, but the Bind failed. Please check the server " "settings and credentials." -msgstr "" +msgstr "კონფიგურაცია მართებულია, მაგრამ მიერთება ვერ მოხერხდა. გთხოვთ შეამოწმოთ სერვერის პარამეტრები და აუთენთიკაციის პარამეტრები." #: ajax/testConfiguration.php:43 msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "კონფიგურაცია არ არის მართებული. გთხოვთ ჩაიხედოთ დეტალური ინფორმაციისთვის ownCloud –ის ლოგში." #: js/settings.js:66 msgid "Deletion failed" -msgstr "წაშლის ველი" +msgstr "წაშლა ვერ განხორციელდა" #: js/settings.js:82 msgid "Take over settings from recent server configuration?" -msgstr "" +msgstr "დაბრუნდებით სერვერის წინა კონფიგურაციაში?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "დავტოვოთ პარამეტრები?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "სერვერის პარამეტრების დამატება ვერ მოხერხდა" #: js/settings.js:121 msgid "Connection test succeeded" -msgstr "" +msgstr "კავშირის ტესტირება მოხერხდა" #: js/settings.js:126 msgid "Connection test failed" -msgstr "" +msgstr "კავშირის ტესტირება ვერ მოხერხდა" #: js/settings.js:136 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "ნამდვილად გინდათ წაშალოთ სერვერის მიმდინარე პარამეტრები?" #: js/settings.js:137 msgid "Confirm Deletion" -msgstr "" +msgstr "წაშლის დადასტურება" #: templates/settings.php:8 msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behaviour. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი." #: templates/settings.php:11 msgid "" "Warning: The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "გაფრთხილება: PHP LDAP მოდული არ არის ინსტალირებული, ბექენდი არ იმუშავებს. თხოვეთ თქვენს ადმინისტრატორს დააინსტალიროს ის." #: templates/settings.php:15 msgid "Server configuration" -msgstr "" +msgstr "სერვერის პარამეტრები" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" -msgstr "" +msgstr "სერვერის პარამეტრების დამატება" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" -msgstr "" +msgstr "ჰოსტი" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" +msgstr "თქვენ შეგიძლიათ გამოტოვოთ პროტოკოლი. გარდა ამისა გჭირდებათ SSL. შემდეგ დაიწყეთ ldaps://" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" -msgstr "" +msgstr "საწყისი DN" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" -msgstr "" +msgstr "ერთი საწყისი DN ერთ ხაზზე" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" +msgstr "თქვენ შეგიძლიათ მიუთითოთ საწყისი DN მომხმარებლებისთვის და ჯგუფებისთვის Advanced ტაბში" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" -msgstr "" +msgstr "მომხმარებლის DN" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." -msgstr "" +msgstr "მომხმარებლის DN რომელთანაც უნდა მოხდეს დაკავშირება მოხდება შემდეგნაირად მაგ: uid=agent,dc=example,dc=com. ხოლო ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" -msgstr "" +msgstr "პაროლი" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." -msgstr "" +msgstr "ანონიმური დაშვებისთვის, დატოვეთ DN–ის და პაროლის ველები ცარიელი." -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" -msgstr "" +msgstr "მომხმარებლის ფილტრი" -#: templates/settings.php:40 +#: templates/settings.php:53 #, 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:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" +msgstr "გამოიყენეთ %%uid დამასრულებელი მაგ: \"uid=%%uid\"" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" -msgstr "" +msgstr "მომხმარებლებიის სიის ფილტრი" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." -msgstr "" +msgstr "გაფილტვრა განხორციელდება, როცა მომხმარებლების სია ჩამოიტვირთება." -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=person\"." -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" -msgstr "" +msgstr "ჯგუფის ფილტრი" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." -msgstr "" +msgstr "გაფილტვრა განხორციელდება, როცა ჯგუფის სია ჩამოიტვირთება." -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "ყოველგვარი დამასრულებელის გარეშე, მაგ: \"objectClass=posixGroup\"." -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" -msgstr "" +msgstr "კავშირის პარამეტრები" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" -msgstr "" +msgstr "კონფიგურაცია აქტიურია" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." -msgstr "" +msgstr "როცა გადანიშნულია, ეს კონფიგურაცია გამოტოვებული იქნება." -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" -msgstr "" +msgstr "პორტი" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" -msgstr "" +msgstr "ბექაფ (რეპლიკა) ჰოსტი" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." -msgstr "" +msgstr "მიუთითეთ რაიმე ბექაფ ჰოსტი. ის უნდა იყოს ძირითადი LDAP/AD სერვერის რეპლიკა." -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" -msgstr "" +msgstr "ბექაფ (რეპლიკა) პორტი" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" -msgstr "" +msgstr "გამორთეთ ძირითადი სერვერი" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgstr "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს." -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" -msgstr "" +msgstr "გამოიყენეთ TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "არ გამოიყენოთ დამატებით LDAPS კავშირი. ის წარუმატებლად დასრულდება." -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" -msgstr "" +msgstr "LDAP server (Windows)" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." -msgstr "" +msgstr "გამორთეთ SSL სერთიფიკატის ვალიდაცია." -#: templates/settings.php:64 +#: templates/settings.php:77 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:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." -msgstr "" +msgstr "არ არის რეკომენდირებული, გამოიყენეთ მხოლოდ სატესტოდ." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "ქეშის სიცოცხლის ხანგრძლივობა" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." -msgstr "" +msgstr "წამებში. ცვლილება ასუფთავებს ქეშს." -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" -msgstr "" +msgstr "დირექტორიის პარამეტრები" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" -msgstr "" +msgstr "მომხმარებლის დისფლეის სახელის ფილდი" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" +msgstr "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის." -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" -msgstr "" +msgstr "ძირითად მომხმარებელთა სია" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" -msgstr "" +msgstr "ერთი მომხმარებლის საწყისი DN ერთ ხაზზე" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" -msgstr "" +msgstr "მომხმარებლის ძებნის ატრიბუტი" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" -msgstr "" +msgstr "ოფციონალური; თითო ატრიბუტი თითო ხაზზე" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" -msgstr "" +msgstr "ჯგუფის დისფლეის სახელის ფილდი" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" +msgstr "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის." -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" -msgstr "" +msgstr "ძირითად ჯგუფთა სია" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" -msgstr "" +msgstr "ერთი ჯგუფის საწყისი DN ერთ ხაზზე" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" -msgstr "" +msgstr "ჯგუფური ძებნის ატრიბუტი" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" -msgstr "" +msgstr "ჯგუფის წევრობის ასოციაცია" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" -msgstr "" +msgstr "სპეციალური ატრიბუტები" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" -msgstr "" +msgstr "ქვოტას ველი" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "საწყისი ქვოტა" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" -msgstr "" +msgstr "ბაიტებში" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" -msgstr "" +msgstr "იმეილის ველი" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "მომხმარებლის Home დირექტორიის სახელების დარქმევის წესი" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." -msgstr "" +msgstr "დატოვეთ ცარიელი მომხმარებლის სახელი (default). სხვა დანარჩენში მიუთითეთ LDAP/AD ატრიბუტი." -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "კავშირის ტესტირება" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "დახმარება" diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index b7a0b5576301a2e68b6d6a48cc03d82ce581e1bb..a6662b7e1129c06b3129107f14f5ed88db882a84 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/user_webdavauth.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Romeo Pirtskhalava , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV აუთენთიფიკაცია" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud–ი გამოგიგზავნით ანგარიშის მონაცემებს ამ URL–ზე. ეს პლაგინი შეამოწმებს პასუხს და მოახდენს მის ინტერპრეტაციას HTTP სტატუსკოდებში 401 და 403 დაუშვებელი მონაცემებისთვის, ხოლო სხვა დანარჩენს დაშვებადი მონაცემებისთვის." diff --git a/l10n/kn/core.po b/l10n/kn/core.po new file mode 100644 index 0000000000000000000000000000000000000000..481dd8e0bb7e455b688dc36e3795e38019782cee --- /dev/null +++ b/l10n/kn/core.po @@ -0,0 +1,605 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/share.php:97 +#, php-format +msgid "User %s shared a file with you" +msgstr "" + +#: ajax/share.php:99 +#, php-format +msgid "User %s shared a folder with you" +msgstr "" + +#: ajax/share.php:101 +#, php-format +msgid "" +"User %s shared the file \"%s\" with you. It is available for download here: " +"%s" +msgstr "" + +#: ajax/share.php:104 +#, php-format +msgid "" +"User %s shared the folder \"%s\" with you. It is available for download " +"here: %s" +msgstr "" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "" + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "" + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "" + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "" + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "" + +#: js/config.php:34 +msgid "Sunday" +msgstr "" + +#: js/config.php:35 +msgid "Monday" +msgstr "" + +#: js/config.php:36 +msgid "Tuesday" +msgstr "" + +#: js/config.php:37 +msgid "Wednesday" +msgstr "" + +#: js/config.php:38 +msgid "Thursday" +msgstr "" + +#: js/config.php:39 +msgid "Friday" +msgstr "" + +#: js/config.php:40 +msgid "Saturday" +msgstr "" + +#: js/config.php:45 +msgid "January" +msgstr "" + +#: js/config.php:46 +msgid "February" +msgstr "" + +#: js/config.php:47 +msgid "March" +msgstr "" + +#: js/config.php:48 +msgid "April" +msgstr "" + +#: js/config.php:49 +msgid "May" +msgstr "" + +#: js/config.php:50 +msgid "June" +msgstr "" + +#: js/config.php:51 +msgid "July" +msgstr "" + +#: js/config.php:52 +msgid "August" +msgstr "" + +#: js/config.php:53 +msgid "September" +msgstr "" + +#: js/config.php:54 +msgid "October" +msgstr "" + +#: js/config.php:55 +msgid "November" +msgstr "" + +#: js/config.php:56 +msgid "December" +msgstr "" + +#: js/js.js:286 +msgid "Settings" +msgstr "" + +#: js/js.js:718 +msgid "seconds ago" +msgstr "" + +#: js/js.js:719 +msgid "1 minute ago" +msgstr "" + +#: js/js.js:720 +msgid "{minutes} minutes ago" +msgstr "" + +#: js/js.js:721 +msgid "1 hour ago" +msgstr "" + +#: js/js.js:722 +msgid "{hours} hours ago" +msgstr "" + +#: js/js.js:723 +msgid "today" +msgstr "" + +#: js/js.js:724 +msgid "yesterday" +msgstr "" + +#: js/js.js:725 +msgid "{days} days ago" +msgstr "" + +#: js/js.js:726 +msgid "last month" +msgstr "" + +#: js/js.js:727 +msgid "{months} months ago" +msgstr "" + +#: js/js.js:728 +msgid "months ago" +msgstr "" + +#: js/js.js:729 +msgid "last year" +msgstr "" + +#: js/js.js:730 +msgid "years ago" +msgstr "" + +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "" + +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 +msgid "Cancel" +msgstr "" + +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" + +#: js/oc-dialogs.js:215 +msgid "Yes" +msgstr "" + +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "" + +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 +msgid "Error" +msgstr "" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "" + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "" + +#: js/share.js:90 +msgid "Share" +msgstr "" + +#: js/share.js:125 js/share.js:617 +msgid "Error while sharing" +msgstr "" + +#: js/share.js:136 +msgid "Error while unsharing" +msgstr "" + +#: js/share.js:143 +msgid "Error while changing permissions" +msgstr "" + +#: js/share.js:152 +msgid "Shared with you and the group {group} by {owner}" +msgstr "" + +#: js/share.js:154 +msgid "Shared with you by {owner}" +msgstr "" + +#: js/share.js:159 +msgid "Share with" +msgstr "" + +#: js/share.js:164 +msgid "Share with link" +msgstr "" + +#: js/share.js:167 +msgid "Password protect" +msgstr "" + +#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +msgid "Password" +msgstr "" + +#: js/share.js:173 +msgid "Email link to person" +msgstr "" + +#: js/share.js:174 +msgid "Send" +msgstr "" + +#: js/share.js:178 +msgid "Set expiration date" +msgstr "" + +#: js/share.js:179 +msgid "Expiration date" +msgstr "" + +#: js/share.js:211 +msgid "Share via email:" +msgstr "" + +#: js/share.js:213 +msgid "No people found" +msgstr "" + +#: js/share.js:251 +msgid "Resharing is not allowed" +msgstr "" + +#: js/share.js:287 +msgid "Shared in {item} with {user}" +msgstr "" + +#: js/share.js:308 +msgid "Unshare" +msgstr "" + +#: js/share.js:320 +msgid "can edit" +msgstr "" + +#: js/share.js:322 +msgid "access control" +msgstr "" + +#: js/share.js:325 +msgid "create" +msgstr "" + +#: js/share.js:328 +msgid "update" +msgstr "" + +#: js/share.js:331 +msgid "delete" +msgstr "" + +#: js/share.js:334 +msgid "share" +msgstr "" + +#: js/share.js:368 js/share.js:564 +msgid "Password protected" +msgstr "" + +#: js/share.js:577 +msgid "Error unsetting expiration date" +msgstr "" + +#: js/share.js:589 +msgid "Error setting expiration date" +msgstr "" + +#: js/share.js:604 +msgid "Sending ..." +msgstr "" + +#: js/share.js:615 +msgid "Email sent" +msgstr "" + +#: js/update.js:14 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "" + +#: js/update.js:18 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "" + +#: lostpassword/controller.php:48 +msgid "ownCloud password reset" +msgstr "" + +#: lostpassword/templates/email.php:2 +msgid "Use the following link to reset your password: {link}" +msgstr "" + +#: lostpassword/templates/lostpassword.php:3 +msgid "You will receive a link to reset your password via Email." +msgstr "" + +#: lostpassword/templates/lostpassword.php:5 +msgid "Reset email send." +msgstr "" + +#: lostpassword/templates/lostpassword.php:8 +msgid "Request failed!" +msgstr "" + +#: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 +#: templates/login.php:28 +msgid "Username" +msgstr "" + +#: lostpassword/templates/lostpassword.php:14 +msgid "Request reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "" + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "" + +#: strings.php:5 +msgid "Personal" +msgstr "" + +#: strings.php:6 +msgid "Users" +msgstr "" + +#: strings.php:7 +msgid "Apps" +msgstr "" + +#: strings.php:8 +msgid "Admin" +msgstr "" + +#: strings.php:9 +msgid "Help" +msgstr "" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "" + +#: templates/404.php:12 +msgid "Cloud not found" +msgstr "" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "" + +#: templates/installation.php:26 +msgid "Please update your PHP installation to use ownCloud securely." +msgstr "" + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "" + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "" + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "" + +#: templates/installation.php:40 +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an admin account" +msgstr "" + +#: templates/installation.php:62 +msgid "Advanced" +msgstr "" + +#: templates/installation.php:64 +msgid "Data folder" +msgstr "" + +#: templates/installation.php:73 +msgid "Configure the database" +msgstr "" + +#: templates/installation.php:78 templates/installation.php:90 +#: templates/installation.php:101 templates/installation.php:112 +#: templates/installation.php:124 +msgid "will be used" +msgstr "" + +#: templates/installation.php:136 +msgid "Database user" +msgstr "" + +#: templates/installation.php:143 +msgid "Database password" +msgstr "" + +#: templates/installation.php:148 +msgid "Database name" +msgstr "" + +#: templates/installation.php:158 +msgid "Database tablespace" +msgstr "" + +#: templates/installation.php:165 +msgid "Database host" +msgstr "" + +#: templates/installation.php:171 +msgid "Finish setup" +msgstr "" + +#: templates/layout.guest.php:40 +msgid "web services under your control" +msgstr "" + +#: templates/layout.user.php:58 +msgid "Log out" +msgstr "" + +#: templates/login.php:10 +msgid "Automatic logon rejected!" +msgstr "" + +#: templates/login.php:11 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "" + +#: templates/login.php:13 +msgid "Please change your password to secure your account again." +msgstr "" + +#: templates/login.php:19 +msgid "Lost your password?" +msgstr "" + +#: templates/login.php:41 +msgid "remember" +msgstr "" + +#: templates/login.php:43 +msgid "Log in" +msgstr "" + +#: templates/login.php:49 +msgid "Alternative Logins" +msgstr "" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po new file mode 100644 index 0000000000000000000000000000000000000000..1345b2d0fea4d7bec9ec56b3c9d819341185eaaf --- /dev/null +++ b/l10n/kn/files.po @@ -0,0 +1,314 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "" + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "" + +#: ajax/rename.php:22 ajax/rename.php:25 +msgid "Unable to rename file" +msgstr "" + +#: ajax/upload.php:19 +msgid "No file was uploaded. Unknown error" +msgstr "" + +#: ajax/upload.php:26 +msgid "There is no error, the file uploaded with success" +msgstr "" + +#: ajax/upload.php:27 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "" + +#: ajax/upload.php:29 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "" + +#: ajax/upload.php:30 +msgid "The uploaded file was only partially uploaded" +msgstr "" + +#: ajax/upload.php:31 +msgid "No file was uploaded" +msgstr "" + +#: ajax/upload.php:32 +msgid "Missing a temporary folder" +msgstr "" + +#: ajax/upload.php:33 +msgid "Failed to write to disk" +msgstr "" + +#: ajax/upload.php:51 +msgid "Not enough storage available" +msgstr "" + +#: ajax/upload.php:83 +msgid "Invalid directory." +msgstr "" + +#: appinfo/app.php:12 +msgid "Files" +msgstr "" + +#: js/fileactions.js:125 +msgid "Delete permanently" +msgstr "" + +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 +msgid "Delete" +msgstr "" + +#: js/fileactions.js:193 +msgid "Rename" +msgstr "" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 +msgid "Pending" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "{new_name} already exists" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "replace" +msgstr "" + +#: js/filelist.js:252 +msgid "suggest name" +msgstr "" + +#: js/filelist.js:252 js/filelist.js:254 +msgid "cancel" +msgstr "" + +#: js/filelist.js:299 +msgid "replaced {new_name} with {old_name}" +msgstr "" + +#: js/filelist.js:299 +msgid "undo" +msgstr "" + +#: js/filelist.js:324 +msgid "perform delete operation" +msgstr "" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "" + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "" + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "" + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "" + +#: js/files.js:226 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "" + +#: js/files.js:259 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" + +#: js/files.js:312 +msgid "Upload cancelled." +msgstr "" + +#: js/files.js:408 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/files.js:481 +msgid "URL cannot be empty." +msgstr "" + +#: js/files.js:486 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "" + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 +msgid "Name" +msgstr "" + +#: js/files.js:873 templates/index.php:81 +msgid "Size" +msgstr "" + +#: js/files.js:874 templates/index.php:83 +msgid "Modified" +msgstr "" + +#: js/files.js:893 +msgid "1 folder" +msgstr "" + +#: js/files.js:895 +msgid "{count} folders" +msgstr "" + +#: js/files.js:903 +msgid "1 file" +msgstr "" + +#: js/files.js:905 +msgid "{count} files" +msgstr "" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "" + +#: templates/admin.php:26 +msgid "Save" +msgstr "" + +#: templates/index.php:7 +msgid "New" +msgstr "" + +#: templates/index.php:10 +msgid "Text file" +msgstr "" + +#: templates/index.php:12 +msgid "Folder" +msgstr "" + +#: templates/index.php:14 +msgid "From link" +msgstr "" + +#: templates/index.php:42 +msgid "Deleted files" +msgstr "" + +#: templates/index.php:48 +msgid "Cancel upload" +msgstr "" + +#: templates/index.php:55 +msgid "You don’t have write permissions here." +msgstr "" + +#: templates/index.php:62 +msgid "Nothing in here. Upload something!" +msgstr "" + +#: templates/index.php:76 +msgid "Download" +msgstr "" + +#: templates/index.php:88 templates/index.php:89 +msgid "Unshare" +msgstr "" + +#: templates/index.php:108 +msgid "Upload too large" +msgstr "" + +#: templates/index.php:110 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "" + +#: templates/index.php:115 +msgid "Files are being scanned, please wait." +msgstr "" + +#: templates/index.php:118 +msgid "Current scanning" +msgstr "" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "" diff --git a/l10n/kn/files_encryption.po b/l10n/kn/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..dba23393eab80027c773a71d2a488aee6d761cd0 --- /dev/null +++ b/l10n/kn/files_encryption.po @@ -0,0 +1,38 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/settings-personal.php:4 templates/settings.php:5 +msgid "Encryption" +msgstr "" + +#: templates/settings-personal.php:7 +msgid "File encryption is enabled." +msgstr "" + +#: templates/settings-personal.php:11 +msgid "The following file types will not be encrypted:" +msgstr "" + +#: templates/settings.php:7 +msgid "Exclude the following file types from encryption:" +msgstr "" + +#: templates/settings.php:12 +msgid "None" +msgstr "" diff --git a/l10n/kn/files_external.po b/l10n/kn/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..ed14ed557d658702af13e41466b3f6b0907277cb --- /dev/null +++ b/l10n/kn/files_external.po @@ -0,0 +1,116 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +msgid "Access granted" +msgstr "" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "" + +#: js/dropbox.js:65 js/google.js:66 +msgid "Grant access" +msgstr "" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "" + +#: js/google.js:36 js/google.js:93 +msgid "Error configuring Google Drive storage" +msgstr "" + +#: lib/config.php:424 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "" + +#: lib/config.php:427 +msgid "" +"Warning: The FTP support in PHP is not enabled or installed. Mounting" +" of FTP shares is not possible. Please ask your system administrator to " +"install it." +msgstr "" + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "" + +#: templates/settings.php:12 +msgid "Options" +msgstr "" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "" + +#: templates/settings.php:90 +msgid "None set" +msgstr "" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "" + +#: templates/settings.php:100 +msgid "Users" +msgstr "" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "" diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..e561733a10629e4474b2f578a64e6016907948f9 --- /dev/null +++ b/l10n/kn/files_sharing.po @@ -0,0 +1,48 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/authenticate.php:4 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:6 +msgid "Submit" +msgstr "" + +#: templates/public.php:10 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:13 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:19 templates/public.php:43 +msgid "Download" +msgstr "" + +#: templates/public.php:40 +msgid "No preview available for" +msgstr "" + +#: templates/public.php:50 +msgid "web services under your control" +msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..12ddf3ce859233ee88b76eeec98b0dc79aeb1523 --- /dev/null +++ b/l10n/kn/files_trashbin.po @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "" + +#: js/trash.js:7 js/trash.js:96 +msgid "perform restore operation" +msgstr "" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + +#: js/trash.js:34 +msgid "delete file permanently" +msgstr "" + +#: js/trash.js:121 +msgid "Delete permanently" +msgstr "" + +#: js/trash.js:174 templates/index.php:17 +msgid "Name" +msgstr "" + +#: js/trash.js:175 templates/index.php:27 +msgid "Deleted" +msgstr "" + +#: js/trash.js:184 +msgid "1 folder" +msgstr "" + +#: js/trash.js:186 +msgid "{count} folders" +msgstr "" + +#: js/trash.js:194 +msgid "1 file" +msgstr "" + +#: js/trash.js:196 +msgid "{count} files" +msgstr "" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "" diff --git a/l10n/kn/files_versions.po b/l10n/kn/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..c15d71b56c3686814de79e08cd3e1e147c0cd6eb --- /dev/null +++ b/l10n/kn/files_versions.po @@ -0,0 +1,57 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/rollbackVersion.php:15 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: history.php:40 +msgid "success" +msgstr "" + +#: history.php:42 +#, php-format +msgid "File %s was reverted to version %s" +msgstr "" + +#: history.php:49 +msgid "failure" +msgstr "" + +#: history.php:51 +#, php-format +msgid "File %s could not be reverted to version %s" +msgstr "" + +#: history.php:69 +msgid "No old versions available" +msgstr "" + +#: history.php:74 +msgid "No path specified" +msgstr "" + +#: js/versions.js:6 +msgid "Versions" +msgstr "" + +#: templates/history.php:20 +msgid "Revert a file to a previous version by clicking on its revert button" +msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..836abc39cd307f31c391805b26afab33cb8bded7 --- /dev/null +++ b/l10n/kn/lib.po @@ -0,0 +1,254 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: app.php:349 +msgid "Help" +msgstr "" + +#: app.php:362 +msgid "Personal" +msgstr "" + +#: app.php:373 +msgid "Settings" +msgstr "" + +#: app.php:385 +msgid "Users" +msgstr "" + +#: app.php:398 +msgid "Apps" +msgstr "" + +#: app.php:406 +msgid "Admin" +msgstr "" + +#: files.php:209 +msgid "ZIP download is turned off." +msgstr "" + +#: files.php:210 +msgid "Files need to be downloaded one by one." +msgstr "" + +#: files.php:211 files.php:244 +msgid "Back to Files" +msgstr "" + +#: files.php:241 +msgid "Selected files too large to generate zip file." +msgstr "" + +#: helper.php:228 +msgid "couldn't be determined" +msgstr "" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "" + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "" + +#: setup.php:34 +msgid "Set an admin username." +msgstr "" + +#: setup.php:37 +msgid "Set an admin password." +msgstr "" + +#: setup.php:55 +#, php-format +msgid "%s enter the database username." +msgstr "" + +#: setup.php:58 +#, php-format +msgid "%s enter the database name." +msgstr "" + +#: setup.php:61 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "" + +#: setup.php:64 +#, php-format +msgid "%s set the database host." +msgstr "" + +#: setup.php:132 setup.php:324 setup.php:369 +msgid "PostgreSQL username and/or password not valid" +msgstr "" + +#: setup.php:133 setup.php:156 setup.php:233 +msgid "You need to enter either an existing account or the administrator." +msgstr "" + +#: setup.php:155 setup.php:457 setup.php:524 +msgid "Oracle username and/or password not valid" +msgstr "" + +#: setup.php:232 +msgid "MySQL username and/or password not valid" +msgstr "" + +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "" + +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "" + +#: setup.php:303 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "" + +#: setup.php:304 +msgid "Drop this user from MySQL" +msgstr "" + +#: setup.php:309 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "" + +#: setup.php:310 +msgid "Drop this user from MySQL." +msgstr "" + +#: setup.php:583 setup.php:615 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "" + +#: setup.php:635 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "" + +#: setup.php:853 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: setup.php:854 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: template.php:113 +msgid "seconds ago" +msgstr "" + +#: template.php:114 +msgid "1 minute ago" +msgstr "" + +#: template.php:115 +#, php-format +msgid "%d minutes ago" +msgstr "" + +#: template.php:116 +msgid "1 hour ago" +msgstr "" + +#: template.php:117 +#, php-format +msgid "%d hours ago" +msgstr "" + +#: template.php:118 +msgid "today" +msgstr "" + +#: template.php:119 +msgid "yesterday" +msgstr "" + +#: template.php:120 +#, php-format +msgid "%d days ago" +msgstr "" + +#: template.php:121 +msgid "last month" +msgstr "" + +#: template.php:122 +#, php-format +msgid "%d months ago" +msgstr "" + +#: template.php:123 +msgid "last year" +msgstr "" + +#: template.php:124 +msgid "years ago" +msgstr "" + +#: updater.php:78 +#, php-format +msgid "%s is available. Get more information" +msgstr "" + +#: updater.php:81 +msgid "up to date" +msgstr "" + +#: updater.php:84 +msgid "updates check is disabled" +msgstr "" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "" diff --git a/l10n/kn/settings.po b/l10n/kn/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..c49b26512b3c2078e5fef3c84dd7378fe7527f0f --- /dev/null +++ b/l10n/kn/settings.po @@ -0,0 +1,500 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "" + +#: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "" + +#: ajax/changedisplayname.php:32 +msgid "Unable to change display name" +msgstr "" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "" + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "" + +#: ajax/removeuser.php:24 +msgid "Unable to delete user" +msgstr "" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "" + +#: js/apps.js:30 +msgid "Update to {appversion}" +msgstr "" + +#: js/apps.js:36 js/apps.js:76 +msgid "Disable" +msgstr "" + +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +msgid "Enable" +msgstr "" + +#: js/apps.js:55 +msgid "Please wait...." +msgstr "" + +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + +#: js/apps.js:90 +msgid "Updating...." +msgstr "" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "" + +#: js/apps.js:96 +msgid "Updated" +msgstr "" + +#: js/personal.js:109 +msgid "Saving..." +msgstr "" + +#: js/users.js:43 +msgid "deleted" +msgstr "" + +#: js/users.js:43 +msgid "undo" +msgstr "" + +#: js/users.js:75 +msgid "Unable to remove user" +msgstr "" + +#: js/users.js:88 templates/users.php:26 templates/users.php:80 +#: templates/users.php:105 +msgid "Groups" +msgstr "" + +#: js/users.js:91 templates/users.php:82 templates/users.php:119 +msgid "Group Admin" +msgstr "" + +#: js/users.js:111 templates/users.php:161 +msgid "Delete" +msgstr "" + +#: js/users.js:262 +msgid "add group" +msgstr "" + +#: js/users.js:414 +msgid "A valid username must be provided" +msgstr "" + +#: js/users.js:415 js/users.js:421 js/users.js:436 +msgid "Error creating user" +msgstr "" + +#: js/users.js:420 +msgid "A valid password must be provided" +msgstr "" + +#: personal.php:29 personal.php:30 +msgid "__language_name__" +msgstr "" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "" + +#: templates/admin.php:18 +msgid "" +"Your data directory and your files are probably accessible from the " +"internet. The .htaccess file that ownCloud provides is not working. We " +"strongly suggest that you configure your webserver in a way that the data " +"directory is no longer accessible or you move the data directory outside the" +" webserver document root." +msgstr "" + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "" + +#: templates/admin.php:32 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "" + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "" + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "" + +#: templates/admin.php:47 +msgid "" +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " +"module to get best results with mime-type detection." +msgstr "" + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "" + +#: templates/admin.php:63 +#, php-format +msgid "" +"This ownCloud server can't set system locale to %s. This means that there " +"might be problems with certain characters in file names. We strongly suggest" +" to install the required packages on your system to support %s." +msgstr "" + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "" + +#: templates/admin.php:78 +msgid "" +"This ownCloud server has no working internet connection. This means that " +"some of the features like mounting of external storage, notifications about " +"updates or installation of 3rd party apps don´t work. Accessing files from " +"remote and sending of notification emails might also not work. We suggest to" +" enable internet connection for this server if you want to have all features" +" of ownCloud." +msgstr "" + +#: templates/admin.php:92 +msgid "Cron" +msgstr "" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service. Call the cron.php page in the " +"owncloud root once a minute over http." +msgstr "" + +#: templates/admin.php:121 +msgid "" +"Use systems cron service. Call the cron.php file in the owncloud folder via " +"a system cronjob once a minute." +msgstr "" + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "" + +#: templates/admin.php:150 +msgid "Allow resharing" +msgstr "" + +#: templates/admin.php:151 +msgid "Allow users to share items shared with them again" +msgstr "" + +#: templates/admin.php:158 +msgid "Allow users to share with anyone" +msgstr "" + +#: templates/admin.php:161 +msgid "Allow users to only share with users in their groups" +msgstr "" + +#: templates/admin.php:168 +msgid "Security" +msgstr "" + +#: templates/admin.php:181 +msgid "Enforce HTTPS" +msgstr "" + +#: templates/admin.php:182 +msgid "" +"Enforces the clients to connect to ownCloud via an encrypted connection." +msgstr "" + +#: templates/admin.php:185 +msgid "" +"Please connect to this ownCloud instance via HTTPS to enable or disable the " +"SSL enforcement." +msgstr "" + +#: templates/admin.php:195 +msgid "Log" +msgstr "" + +#: templates/admin.php:196 +msgid "Log level" +msgstr "" + +#: templates/admin.php:223 +msgid "More" +msgstr "" + +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 +msgid "Version" +msgstr "" + +#: templates/admin.php:234 templates/personal.php:105 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "" + +#: templates/apps.php:11 +msgid "Add your App" +msgstr "" + +#: templates/apps.php:12 +msgid "More Apps" +msgstr "" + +#: templates/apps.php:28 +msgid "Select an App" +msgstr "" + +#: templates/apps.php:34 +msgid "See application page at apps.owncloud.com" +msgstr "" + +#: templates/apps.php:36 +msgid "-licensed by " +msgstr "" + +#: templates/apps.php:38 +msgid "Update" +msgstr "" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "" + +#: templates/help.php:11 +msgid "Forum" +msgstr "" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "" + +#: templates/personal.php:8 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:15 +msgid "Get the apps to sync your files" +msgstr "" + +#: templates/personal.php:26 +msgid "Show First Run Wizard again" +msgstr "" + +#: templates/personal.php:37 templates/users.php:23 templates/users.php:79 +msgid "Password" +msgstr "" + +#: templates/personal.php:38 +msgid "Your password was changed" +msgstr "" + +#: templates/personal.php:39 +msgid "Unable to change your password" +msgstr "" + +#: templates/personal.php:40 +msgid "Current password" +msgstr "" + +#: templates/personal.php:42 +msgid "New password" +msgstr "" + +#: templates/personal.php:44 +msgid "Change password" +msgstr "" + +#: templates/personal.php:56 templates/users.php:78 +msgid "Display Name" +msgstr "" + +#: templates/personal.php:57 +msgid "Your display name was changed" +msgstr "" + +#: templates/personal.php:58 +msgid "Unable to change your display name" +msgstr "" + +#: templates/personal.php:61 +msgid "Change display name" +msgstr "" + +#: templates/personal.php:70 +msgid "Email" +msgstr "" + +#: templates/personal.php:72 +msgid "Your email address" +msgstr "" + +#: templates/personal.php:73 +msgid "Fill in an email address to enable password recovery" +msgstr "" + +#: templates/personal.php:79 templates/personal.php:80 +msgid "Language" +msgstr "" + +#: templates/personal.php:86 +msgid "Help translate" +msgstr "" + +#: templates/personal.php:91 +msgid "WebDAV" +msgstr "" + +#: templates/personal.php:93 +msgid "Use this address to connect to your ownCloud in your file manager" +msgstr "" + +#: templates/users.php:21 templates/users.php:77 +msgid "Login Name" +msgstr "" + +#: templates/users.php:32 +msgid "Create" +msgstr "" + +#: templates/users.php:35 +msgid "Default Storage" +msgstr "" + +#: templates/users.php:41 templates/users.php:139 +msgid "Unlimited" +msgstr "" + +#: templates/users.php:59 templates/users.php:154 +msgid "Other" +msgstr "" + +#: templates/users.php:84 +msgid "Storage" +msgstr "" + +#: templates/users.php:95 +msgid "change display name" +msgstr "" + +#: templates/users.php:99 +msgid "set new password" +msgstr "" + +#: templates/users.php:134 +msgid "Default" +msgstr "" diff --git a/l10n/kn/user_ldap.po b/l10n/kn/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..76ed5e5bc50c92c17fcbec8815c8a5d03884be45 --- /dev/null +++ b/l10n/kn/user_ldap.po @@ -0,0 +1,333 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "" + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "" + +#: js/settings.js:121 +msgid "Connection test succeeded" +msgstr "" + +#: js/settings.js:126 +msgid "Connection test failed" +msgstr "" + +#: js/settings.js:136 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "" + +#: js/settings.js:137 +msgid "Confirm Deletion" +msgstr "" + +#: templates/settings.php:8 +msgid "" +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" +" experience unexpected behaviour. Please ask your system administrator to " +"disable one of them." +msgstr "" + +#: templates/settings.php:11 +msgid "" +"Warning: The PHP LDAP module is not installed, the backend will not " +"work. Please ask your system administrator to install it." +msgstr "" + +#: templates/settings.php:15 +msgid "Server configuration" +msgstr "" + +#: templates/settings.php:31 +msgid "Add Server Configuration" +msgstr "" + +#: templates/settings.php:36 +msgid "Host" +msgstr "" + +#: templates/settings.php:38 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "" + +#: templates/settings.php:39 +msgid "Base DN" +msgstr "" + +#: templates/settings.php:40 +msgid "One Base DN per line" +msgstr "" + +#: templates/settings.php:41 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "" + +#: templates/settings.php:43 +msgid "User DN" +msgstr "" + +#: templates/settings.php:45 +msgid "" +"The DN of the client user with which the bind shall be done, e.g. " +"uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " +"empty." +msgstr "" + +#: templates/settings.php:46 +msgid "Password" +msgstr "" + +#: templates/settings.php:49 +msgid "For anonymous access, leave DN and Password empty." +msgstr "" + +#: templates/settings.php:50 +msgid "User Login Filter" +msgstr "" + +#: templates/settings.php:53 +#, php-format +msgid "" +"Defines the filter to apply, when login is attempted. %%uid replaces the " +"username in the login action." +msgstr "" + +#: templates/settings.php:54 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "" + +#: templates/settings.php:55 +msgid "User List Filter" +msgstr "" + +#: templates/settings.php:58 +msgid "Defines the filter to apply, when retrieving users." +msgstr "" + +#: templates/settings.php:59 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "" + +#: templates/settings.php:60 +msgid "Group Filter" +msgstr "" + +#: templates/settings.php:63 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "" + +#: templates/settings.php:64 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "" + +#: templates/settings.php:68 +msgid "Connection Settings" +msgstr "" + +#: templates/settings.php:70 +msgid "Configuration Active" +msgstr "" + +#: templates/settings.php:70 +msgid "When unchecked, this configuration will be skipped." +msgstr "" + +#: templates/settings.php:71 +msgid "Port" +msgstr "" + +#: templates/settings.php:72 +msgid "Backup (Replica) Host" +msgstr "" + +#: templates/settings.php:72 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "" + +#: templates/settings.php:73 +msgid "Backup (Replica) Port" +msgstr "" + +#: templates/settings.php:74 +msgid "Disable Main Server" +msgstr "" + +#: templates/settings.php:74 +msgid "When switched on, ownCloud will only connect to the replica server." +msgstr "" + +#: templates/settings.php:75 +msgid "Use TLS" +msgstr "" + +#: templates/settings.php:75 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "" + +#: templates/settings.php:76 +msgid "Case insensitve LDAP server (Windows)" +msgstr "" + +#: templates/settings.php:77 +msgid "Turn off SSL certificate validation." +msgstr "" + +#: templates/settings.php:77 +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your ownCloud server." +msgstr "" + +#: templates/settings.php:77 +msgid "Not recommended, use for testing only." +msgstr "" + +#: templates/settings.php:78 +msgid "Cache Time-To-Live" +msgstr "" + +#: templates/settings.php:78 +msgid "in seconds. A change empties the cache." +msgstr "" + +#: templates/settings.php:80 +msgid "Directory Settings" +msgstr "" + +#: templates/settings.php:82 +msgid "User Display Name Field" +msgstr "" + +#: templates/settings.php:82 +msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgstr "" + +#: templates/settings.php:83 +msgid "Base User Tree" +msgstr "" + +#: templates/settings.php:83 +msgid "One User Base DN per line" +msgstr "" + +#: templates/settings.php:84 +msgid "User Search Attributes" +msgstr "" + +#: templates/settings.php:84 templates/settings.php:87 +msgid "Optional; one attribute per line" +msgstr "" + +#: templates/settings.php:85 +msgid "Group Display Name Field" +msgstr "" + +#: templates/settings.php:85 +msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgstr "" + +#: templates/settings.php:86 +msgid "Base Group Tree" +msgstr "" + +#: templates/settings.php:86 +msgid "One Group Base DN per line" +msgstr "" + +#: templates/settings.php:87 +msgid "Group Search Attributes" +msgstr "" + +#: templates/settings.php:88 +msgid "Group-Member association" +msgstr "" + +#: templates/settings.php:90 +msgid "Special Attributes" +msgstr "" + +#: templates/settings.php:92 +msgid "Quota Field" +msgstr "" + +#: templates/settings.php:93 +msgid "Quota Default" +msgstr "" + +#: templates/settings.php:93 +msgid "in bytes" +msgstr "" + +#: templates/settings.php:94 +msgid "Email Field" +msgstr "" + +#: templates/settings.php:95 +msgid "User Home Folder Naming Rule" +msgstr "" + +#: templates/settings.php:95 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "" + +#: templates/settings.php:99 +msgid "Test Configuration" +msgstr "" + +#: templates/settings.php:99 +msgid "Help" +msgstr "" diff --git a/l10n/kn/user_webdavauth.po b/l10n/kn/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..1dde34b41e36efde9e6acbdf2432495e764e226f --- /dev/null +++ b/l10n/kn/user_webdavauth.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" +"Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: kn\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "" + +#: templates/settings.php:4 +msgid "URL: http://" +msgstr "" + +#: templates/settings.php:7 +msgid "" +"ownCloud will send the user credentials to this URL. This plugin checks the " +"response and will interpret the HTTP statuscodes 401 and 403 as invalid " +"credentials, and all other responses as valid credentials." +msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index 53ad1be19bf7e41cf465169a828ac793a6c5d8f6..a4c7b6bbb9d5a5eef8cef4e2a78cbdbb0a640876 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -165,86 +165,88 @@ msgstr "12월" msgid "Settings" msgstr "설정" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "초 전" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1분 전" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes}분 전" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1시간 전" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours}시간 전" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "오늘" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "어제" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days}일 전" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "지난 달" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months}개월 전" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "개월 전" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "작년" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "년 전" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "선택" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "승락" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "취소" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "아니요" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "선택" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "예" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "승락" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "아니요" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "객체 유형이 지정되지 않았습니다." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "오류" @@ -264,7 +266,7 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" @@ -324,59 +326,59 @@ msgstr "이메일로 공유:" msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "편집 가능" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "접근 제어" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "만들기" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "업데이트" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "삭제" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "공유" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "이메일 발송됨" @@ -536,23 +538,23 @@ msgstr "사용될 예정" msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "설치 완료" diff --git a/l10n/ko/files.po b/l10n/ko/files.po index 01bd10f96cf4a1fd6550a7ba18c3f0bdd825e878..08e22f63b54b7d53dde2a0201720953f8d4019fc 100644 --- a/l10n/ko/files.po +++ b/l10n/ko/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -76,7 +76,7 @@ msgstr "디스크에 쓰지 못했습니다" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "올바르지 않은 디렉터리입니다." @@ -96,39 +96,46 @@ msgstr "삭제" msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "보류 중" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name}이(가) 이미 존재함" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "바꾸기" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "이름 제안" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "취소" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{old_name}이(가) {new_name}(으)로 대체됨" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "실행 취소" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "파일 1개 업로드 중" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' 는 올바르지 않은 파일 이름 입니다." @@ -157,68 +164,60 @@ msgid "" "big." msgstr "다운로드가 준비 중입니다. 파일 크기가 크다면 시간이 오래 걸릴 수도 있습니다." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "이 파일은 디렉터리이거나 비어 있기 때문에 업로드할 수 없습니다" -#: js/files.js:263 -msgid "Upload Error" -msgstr "업로드 오류" - -#: js/files.js:274 -msgid "Close" -msgstr "닫기" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "여유 공간이 부족합니다" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "파일 1개 업로드 중" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "파일 {count}개 업로드 중" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "업로드가 취소되었습니다." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "파일 업로드가 진행 중입니다. 이 페이지를 벗어나면 업로드가 취소됩니다." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL을 입력해야 합니다." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "폴더 이름이 유효하지 않습니다. " -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "오류" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "이름" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "크기" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "수정됨" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "폴더 1개" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "폴더 {count}개" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "파일 1개" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "파일 {count}개" diff --git a/l10n/ko/files_encryption.po b/l10n/ko/files_encryption.po index 79f1c6ae60785936c91116c9a7ae1b0ca8f3ccd1..9a2fc1b35bda18c817e7f6ce1758f0ba9e18699f 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ko/files_external.po b/l10n/ko/files_external.po index 5e608036d5bb8921c4ac0b54b391ad7fc18ba335..b2dbdea9bd815c8f40faeb8d506864147e0ed02b 100644 --- a/l10n/ko/files_external.po +++ b/l10n/ko/files_external.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,13 +41,13 @@ msgstr "올바른 Dropbox 앱 키와 암호를 입력하십시오." msgid "Error configuring Google Drive storage" msgstr "Google 드라이브 저장소 설정 오류" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "경고: \"smbclient\"가 설치되지 않았습니다. CIFS/SMB 공유 자원에 연결할 수 없습니다. 시스템 관리자에게 설치를 요청하십시오." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 0190903ffa085cb835a9aa05a02666af147c002a..9810e11baf70d498823300b2231a8b9a1715205a 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -4,14 +4,15 @@ # # Translators: # 남자사람 , 2012. +# Park Shinjo , 2013. # Shinjo Park , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-12-10 00:11+0100\n" -"PO-Revision-Date: 2012-12-09 06:12+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +28,24 @@ msgstr "암호" msgid "Submit" msgstr "제출" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "다운로드" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "내가 관리하는 웹 서비스" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 1464b23c7c3ee40c4fa530baed434f0312deedef..fae4215410bccc8272d76779af76d410d4d6cace 100644 --- a/l10n/ko/files_trashbin.po +++ b/l10n/ko/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "오류" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index cfd2654c9c4afa9d2f796a8d8322ff47626afda7..101de33dbe4b04df8b81e86cbcace27898bd62a4 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -5,12 +5,13 @@ # Translators: # 남자사람 , 2012. # Shinjo Park , 2012. +# Sung Jin Gang , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -22,38 +23,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "되돌릴 수 없습니다: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "완료" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "파일 %s를 버전 %s로 변경하였습니다." #: history.php:49 msgid "failure" -msgstr "" +msgstr "실패" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "파일 %s를 버전 %s로 되돌리지 못했습니다." -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "오래된 버전을 사용할 수 없습니다" -#: history.php:73 +#: history.php:74 msgid "No path specified" -msgstr "" +msgstr "경로를 알수 없습니다." #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "버젼" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "변경 버튼을 클릭하여 이전 버전의 파일로 변경할 수 있습니다." diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 5cdecec02bf1639adf128c1cf697c861f59147b1..2c97ea10dba2e6ce2706a003e315113a99008643 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# 남자사람 , 2012. -# Park Shinjo , 2013. -# Shinjo Park , 2012. +# 남자사람 , 2012 +# Shinjo Park , 2013 +# Shinjo Park , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index 7c8413d0232e263d7baffdcbd35b70bb7437ca52..098a8eef8f2e06a33ff7c18c921fe5c1132250d2 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 00:50+0000\n" -"Last-Translator: Harim Park \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -97,7 +97,7 @@ msgstr "" msgid "Disable" msgstr "비활성화" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "활성화" @@ -105,64 +105,64 @@ msgstr "활성화" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "오류" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "오류" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "저장 중..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "삭제" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "되돌리기" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "그룹" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "그룹 관리자" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "삭제" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -321,11 +321,15 @@ msgstr "" msgid "More" msgstr "더 중요함" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "덜 중요함" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "버전" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the %s/%s을(를) 사용 중 #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다." #: templates/personal.php:26 msgid "Show First Run Wizard again" diff --git a/l10n/ko/user_ldap.po b/l10n/ko/user_ldap.po index ad02f58dde807129ea145aa85fdef660756caa4f..12de201d71615f93ae848dfec94d12801a2eb548 100644 --- a/l10n/ko/user_ldap.po +++ b/l10n/ko/user_ldap.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index f10bd76454e5e8f5443a82f84cc71d8dfebdc422..02c3920ceba670d4f3291f20ec12f22122edd9c9 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 17:02+0100\n" -"PO-Revision-Date: 2013-01-31 08:10+0000\n" -"Last-Translator: Shinjo Park \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -28,7 +28,7 @@ msgstr "WebDAV 인증" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index e2762dc16334b944d43c7dc4f9ccf527238d9bb4..214b67e0c493812423af3eb357d665aa9ec1d7d5 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -161,76 +161,76 @@ msgstr "" msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,9 +238,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "هه‌ڵه" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 5f194f0547d5ace015c58665540e740b4882ac9e..1ea4fe01e858d0edc86a6a49f1736ed2c8e24569 100644 --- a/l10n/ku_IQ/files.po +++ b/l10n/ku_IQ/files.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -151,68 +158,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" -msgstr "داخستن" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "هه‌ڵه" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "ناو" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 25da3eec3afd9567186f2759b49c4c8eb826fab8..afa8a7eff00997c0cdcd3d0f5ca85b0835c49c87 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ku_IQ/files_external.po b/l10n/ku_IQ/files_external.po index 0a53bb876de97b23e3cb6ccc600e689288530705..0ebebe407484078472ea694f6cff9d524080b9ca 100644 --- a/l10n/ku_IQ/files_external.po +++ b/l10n/ku_IQ/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index daa1ed36ce9bf4fdccd0b32de6b420eba4ecc2d9..5294fa1042297f9ade8dba1ec18b62be895f4cfe 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/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-10-07 02:03+0200\n" -"PO-Revision-Date: 2012-10-07 00:05+0000\n" -"Last-Translator: Hozha Koyi \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "تێپه‌ڕه‌وشه" msgid "Submit" msgstr "ناردن" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "داگرتن" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 5fe9d389ebf1c9918fbbdb9f0839c09d6d8d1fed..466bf259a35bb6c96e841c4a3c12b44d5941e700 100644 --- a/l10n/ku_IQ/files_trashbin.po +++ b/l10n/ku_IQ/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "هه‌ڵه" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index d5bfd4c337f4098fda7a9a7f7f5fd42bc71e17e7..8f2cdbd21e8f0a28d6f2127105d31cce30c1c808 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index ec89cc9c8cbc68534c165c0e67a6c4f61b0fb04a..ba160fa439967ec29a602933f9b336e1982ffbb6 100644 --- a/l10n/ku_IQ/lib.po +++ b/l10n/ku_IQ/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 60417dfa73486be1da2ef227fd29aa47ac371022..2c83b2fbbfe0bbd335f4207648022082639df8e1 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "چالاککردن" @@ -100,64 +100,64 @@ msgstr "چالاککردن" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "هه‌ڵه" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "هه‌ڵه" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "پاشکه‌وتده‌کات..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "یارمەتی" diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 313845a14b2bd9718456ba7921a65ce8474d3d1f..e623bd161b4be11e69c0ee8057b9ec37c22d7382 100644 --- a/l10n/ku_IQ/user_webdavauth.po +++ b/l10n/ku_IQ/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 27c01e9f5b5805e995109aa6d1e0599fdb85db73..f7fd08557572444310ee341f0ccbcde5b9a59693 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -162,86 +162,88 @@ msgstr "Dezember" msgid "Settings" msgstr "Astellungen" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "vrun 1 Stonn" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "vru {hours} Stonnen" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "Läschte Mount" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "vru {months} Méint" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "Méint hier" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "Läscht Joer" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "Joren hier" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Auswielen" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Ofbriechen" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nee" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Auswielen" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jo" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nee" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Fehler" @@ -261,7 +263,7 @@ msgstr "" msgid "Share" msgstr "Deelen" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -321,59 +323,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "erstellen" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "läschen" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "deelen" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -533,23 +535,23 @@ msgstr "wärt benotzt ginn" msgid "Database user" msgstr "Datebank Benotzer" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datebank Passwuert" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datebank Tabelle-Gréisst" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datebank Server" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installatioun ofschléissen" diff --git a/l10n/lb/files.po b/l10n/lb/files.po index 025945a26025e74756bbb1bd3569574481a92133..8aa5780abdfd8de8664ffe166cee1639e04f2788 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -71,7 +71,7 @@ msgstr "Konnt net op den Disk schreiwen" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -91,39 +91,46 @@ msgstr "Läschen" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "ersetzen" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "ofbriechen" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kann deng Datei net eroplueden well et en Dossier ass oder 0 byte grouss ass." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Fehler beim eroplueden" - -#: js/files.js:274 -msgid "Close" -msgstr "Zoumaachen" - -#: js/files.js:313 -msgid "1 file uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Upload ofgebrach." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Fehler" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Numm" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Gréisst" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Geännert" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index 6705693de91df00da7c2573070ba095e813f58f1..0632e6b5ab98e3c4fea48d43a54d3ffd21a4dd8f 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lb/files_external.po b/l10n/lb/files_external.po index 21d28336fc94fba603156c13cbae9d647709a799..e0bf824f956841d452d44295c8f3f4b315d7d77f 100644 --- a/l10n/lb/files_external.po +++ b/l10n/lb/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index f4d8ed5cc8e85775441ca990017684a46740a213..a8c12d1704a3ddfec9e0bdb5480b015e53008b18 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 13:36+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Passwuert" msgid "Submit" msgstr "" -#: templates/public.php:11 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:16 templates/public.php:32 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:31 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 715eba7064d7d12ff942160c10d7eeb6eb8efcdd..046e687bd2e7600a1f3dcf03641b8d699aa914a8 100644 --- a/l10n/lb/files_trashbin.po +++ b/l10n/lb/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Fehler" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index c820aa4669e61102e6d8eae49273f0e2c8ac3e39..0daea383b9df153a200ae836cb5b2a9fa402f21d 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 0937ac7a5dbf2d5d5f7f908942018b2c1122413c..b1b27935b86ac617ed8eeae4abe19d22e1bbb9f1 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 31ccb692123b2b312b966523c8d17501f2fa4d3d..c657f9b728766cd916ab397f532f96ec43b0cf0b 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -93,7 +93,7 @@ msgstr "" msgid "Disable" msgstr "Ofschalten" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Aschalten" @@ -101,64 +101,64 @@ msgstr "Aschalten" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Fehler" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Fehler" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Speicheren..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "geläscht" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "réckgängeg man" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruppen" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppen Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Läschen" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -317,11 +317,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Passwuert" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hëllef" diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index fb53f7bcb242265334ddc4ae78f4ad953e2887fc..093341b3d26cea395949efcb12cbca5e1ee56993 100644 --- a/l10n/lb/user_webdavauth.po +++ b/l10n/lb/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index 23bd346c374588a2b609f802ba10fb86960c8007..ad04a7e8c8c47153e076e46a26d94b949f05e993 100644 --- a/l10n/lt_LT/core.po +++ b/l10n/lt_LT/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -162,86 +162,88 @@ msgstr "Gruodis" msgid "Settings" msgstr "Nustatymai" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "Prieš 1 minutę" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "Prieš {count} minutes" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "šiandien" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "vakar" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "Prieš {days} dienas" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "praeitais metais" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "prieš metus" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Pasirinkite" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Gerai" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Atšaukti" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Pasirinkite" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Taip" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Gerai" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Klaida" @@ -261,7 +263,7 @@ msgstr "" msgid "Share" msgstr "Dalintis" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" @@ -321,59 +323,59 @@ msgstr "Dalintis per el. paštą:" msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Nesidalinti" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "sukurti" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "atnaujinti" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ištrinti" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "dalintis" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -533,23 +535,23 @@ msgstr "bus naudojama" msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Baigti diegimą" diff --git a/l10n/lt_LT/files.po b/l10n/lt_LT/files.po index 703841d479e902c79affe928bd49241768f8e7bb..7bc5f5a3e2e33e2e5782364320cbb6ad694549ad 100644 --- a/l10n/lt_LT/files.po +++ b/l10n/lt_LT/files.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -73,7 +73,7 @@ msgstr "Nepavyko įrašyti į diską" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -93,39 +93,46 @@ msgstr "Ištrinti" msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Laukiantis" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} jau egzistuoja" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "pakeisti" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "pasiūlyti pavadinimą" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "atšaukti" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "pakeiskite {new_name} į {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "įkeliamas 1 failas" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -154,68 +161,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Neįmanoma įkelti failo - jo dydis gali būti 0 bitų arba tai katalogas" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Įkėlimo klaida" - -#: js/files.js:274 -msgid "Close" -msgstr "Užverti" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "įkeliamas 1 failas" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} įkeliami failai" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Įkėlimas atšauktas." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Failo įkėlimas pradėtas. Jei paliksite šį puslapį, įkėlimas nutrūks." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Klaida" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Dydis" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Pakeista" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 aplankalas" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} aplankalai" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 failas" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} failai" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index 2e398b6292a5689094aa76fe367ee4934d5ce699..a3629e2cc4f48cb8e6cc88083ab610ab7a335e3d 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lt_LT/files_external.po b/l10n/lt_LT/files_external.po index 97529542e23af9c7a168f949245a95bf813e43b5..de18742d7850088f06aa65490cb508674dd3aa52 100644 --- a/l10n/lt_LT/files_external.po +++ b/l10n/lt_LT/files_external.po @@ -5,12 +5,13 @@ # Translators: # , 2012. # Dr. ROX , 2012. +# Mindaugas , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -39,18 +40,18 @@ msgstr "Prašome įvesti teisingus Dropbox \"app key\" ir \"secret\"." msgid "Error configuring Google Drive storage" msgstr "Klaida nustatinėjant Google Drive talpyklą" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Įspėjimas: \"smbclient\" nėra įdiegtas. CIFS/SMB dalinimasis nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas \"smbclient\"" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "Įspėjimas: FTP palaikymas PHP sistemoje nėra įjungtas arba nėra įdiegtas. FTP dalinimosi įjungimas nėra galimas. Prašome susisiekti su sistemos administratoriumi kad būtų įdiegtas FTP palaikymas. " #: templates/settings.php:3 msgid "External Storage" @@ -62,7 +63,7 @@ msgstr "Katalogo pavadinimas" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Išorinė saugykla" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +79,7 @@ msgstr "Pritaikyti" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Pridėti saugyklą" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index e6c1c3865f082d59ba3698bf5aeed4ae74422cfd..a2553793fbdab730b3f9a23b7cb998f2e01f9c11 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-09-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index de4d898a2c69cc64bc48c8d5bc26828e6e71c77c..f427f0e01f6a3033f88bab13ff9e85aebf5738c0 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Klaida" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 8ad43f0ec2441730f0a8e5aafdbe461784f4386e..1572027742917b3ef080397d2f401c5116dd1edf 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -5,12 +5,13 @@ # Translators: # , 2012. # Dr. ROX , 2012. +# Mindaugas , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -22,38 +23,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "Nepavyko atstatyti: %s" #: history.php:40 msgid "success" -msgstr "" +msgstr "pavyko" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "Dokumentas %s buvo atstatytas į versiją %s" #: history.php:49 msgid "failure" -msgstr "" +msgstr "klaida" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "Dokumento %s nepavyko atstatyti į versiją %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "Nėra senų versijų" -#: history.php:73 +#: history.php:74 msgid "No path specified" -msgstr "" +msgstr "Nenurodytas kelias" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versijos" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "Atstatykite dokumentą į prieš tai buvusią versiją spausdami ant jo atstatymo mygtuko" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index 484cf332ee5e040da866d9739938d2796ea9ddce..a176e307e60df81ff9e242b9b1a65f92c7f5648a 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dr. ROX , 2012. +# andrejuseu , 2012 +# Dr. ROX , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index f6bfa41c0813f72f557e99a499c5bb36c96bd8cc..79929cea32579bb647283d4c201d598c716593ba 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -94,7 +94,7 @@ msgstr "" msgid "Disable" msgstr "Išjungti" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Įjungti" @@ -102,64 +102,64 @@ msgstr "Įjungti" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Klaida" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Klaida" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Saugoma.." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "anuliuoti" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupės" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Ištrinti" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -318,11 +318,15 @@ msgstr "" msgid "More" msgstr "Daugiau" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Mažiau" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -87,248 +87,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "Slaptažodis" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "Grupės filtras" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "Prievadas" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "Naudoti TLS" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "Išjungti SSL sertifikato tikrinimą." -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "Nerekomenduojama, naudokite tik testavimui." -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pagalba" diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index f8bc059ae29c091d54d46eaaec558dae15c7d3b6..9f842d853966c998e6f14eb181b19a00ccebb521 100644 --- a/l10n/lt_LT/user_webdavauth.po +++ b/l10n/lt_LT/user_webdavauth.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mindaugas , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -19,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV autorizavimas" #: templates/settings.php:4 msgid "URL: http://" -msgstr "" +msgstr "Adresas: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud išsiųs naudotojo duomenis į šį WWW adresą. Šis įskiepis patikrins gautą atsakymą ir interpretuos HTTP būsenos kodą 401 ir 403 kaip negaliojančius duomenis, ir visus kitus gautus atsakymus kaip galiojančius duomenis. " diff --git a/l10n/lv/core.po b/l10n/lv/core.po index 6272a0af243be640e089c7096782c5dcc3e483ed..921311120e4dabcff204db1edd16abfa89a86667 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -162,86 +162,88 @@ msgstr "Decembris" msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "pirms 1 minūtes" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pirms {minutes} minūtēm" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "pirms 1 stundas" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "pirms {hours} stundām" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "šodien" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "vakar" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "pirms {days} dienām" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "pirms {months} mēnešiem" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "gadus atpakaļ" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izvēlieties" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Labi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Atcelt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nē" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izvēlieties" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Jā" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Labi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nē" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Nav norādīts objekta tips." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Kļūda" @@ -261,7 +263,7 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Kļūda, daloties" @@ -321,59 +323,59 @@ msgstr "Dalīties, izmantojot e-pastu:" msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Beigt dalīties" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "izveidot" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "atjaunināt" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "dzēst" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "dalīties" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Vēstule nosūtīta" @@ -533,23 +535,23 @@ msgstr "tiks izmantots" msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index f5636eb23a09bddfcbd21df23e5182893c0fbacd..de2375feaaba5f45459bc5f934e26fc3357498f0 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -73,7 +73,7 @@ msgstr "Neizdevās saglabāt diskā" msgid "Not enough storage available" msgstr "Nav pietiekami daudz vietas" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Nederīga direktorija." @@ -93,39 +93,46 @@ msgstr "Dzēst" msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Gaida savu kārtu" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} jau eksistē" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "aizvietot" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "ieteiktais nosaukums" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "atcelt" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "aizvietoja {new_name} ar {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "atsaukt" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "veikt dzēšanas darbību" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "Augšupielādē 1 datni" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' ir nederīgs datnes nosaukums." @@ -154,68 +161,60 @@ msgid "" "big." msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes ir lielas." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nevar augšupielādēt jūsu datni, jo tā ir direktorija vai arī tās izmērs ir 0 baiti" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Kļūda augšupielādējot" - -#: js/files.js:274 -msgid "Close" -msgstr "Aizvērt" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nepietiek brīvas vietas" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "Augšupielādē 1 datni" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "augšupielādē {count} datnes" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Augšupielāde ir atcelta." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Notiek augšupielāde. Pametot lapu tagad, tiks atcelta augšupielāde." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL nevar būt tukšs." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Kļūda" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nosaukums" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Izmērs" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Mainīts" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 mape" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} mapes" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 datne" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} datnes" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index 845062cf87778dfcdba1c07b1d57b51366bc2a3d..2b049a1c7e1a6e2ee83ae5e3bd6bab1b384348af 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/lv/files_external.po b/l10n/lv/files_external.po index 5d617e1f3a87733d92f8d00d0135a9c290c52d0f..0c6f6526303a2a1affcf6907b7c4a6eb50795b11 100644 --- a/l10n/lv/files_external.po +++ b/l10n/lv/files_external.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -38,13 +38,13 @@ msgstr "Lūdzu, norādiet derīgu Dropbox lietotnes atslēgu un noslēpumu." msgid "Error configuring Google Drive storage" msgstr "Kļūda, konfigurējot Google Drive krātuvi" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Brīdinājums: nav uzinstalēts “smbclient”. Nevar montēt CIFS/SMB koplietojumus. Lūdzu, vaicājiet savam sistēmas administratoram, lai to uzinstalē." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 46609775b6990506677c580277a4785c4c1d375f..eba98a874e572c9958f32e636f501f75d0861008 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/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: 2013-03-16 22:17+0100\n" -"PO-Revision-Date: 2013-03-15 17:00+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,14 @@ msgstr "%s ar jums dalījās ar mapi %s" msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "jūsu vadībā esošie tīmekļa servisi" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index a15568a44ed11585623fd01f52abbb9164873dfc..66670fca8c491122b75312c156c612b49ed3cd68 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,12 +18,12 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nevarēja pilnībā izdzēst %s" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" @@ -32,6 +32,10 @@ msgstr "Nevarēja atjaunot %s" msgid "perform restore operation" msgstr "veikt atjaunošanu" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Kļūda" + #: js/trash.js:34 msgid "delete file permanently" msgstr "dzēst datni pavisam" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index cfbdfa3db8fb28efb46f01c5e7065e4505504e9b..9c9098fdd98248cd3e2aec37bcb462fe114879ad 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 20:50+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -41,11 +41,11 @@ msgstr "neveiksme" msgid "File %s could not be reverted to version %s" msgstr "Datni %s nevarēja atgriezt uz versiju %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nav pieejamu vecāku versiju" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nav norādīts ceļš" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 22ea6a1ae27443bf8f2331af51aa0de5c1e603f6..7db941c050014286c633091121ecd2972a3ab653 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Rūdolfs Mazurs , 2013. +# Rūdolfs Mazurs , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -94,10 +94,6 @@ msgstr "Iestatiet administratora lietotājvārdu." msgid "Set an admin password." msgstr "Iestatiet administratora paroli." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Norādiet datu mapi." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index 864c0276cf8154479b1b14ae10f9a0cf7b08d272..fd7f24987d9016724c2f27e909b1d044ce43f62a 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/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: 2013-03-16 22:17+0100\n" -"PO-Revision-Date: 2013-03-15 17:00+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -95,7 +95,7 @@ msgstr "Atjaunināt uz {appversion}" msgid "Disable" msgstr "Deaktivēt" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Aktivēt" @@ -103,64 +103,64 @@ msgstr "Aktivēt" msgid "Please wait...." msgstr "Lūdzu, uzgaidiet...." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Kļūda" + +#: js/apps.js:90 msgid "Updating...." msgstr "Atjaunina...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Kļūda, atjauninot lietotni" -#: js/apps.js:87 -msgid "Error" -msgstr "Kļūda" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Atjaunināta" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Saglabā..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "izdzests" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "atsaukt" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nevar izņemt lietotāju" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupas" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupas administrators" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Dzēst" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "pievienot grupu" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Jānorāda derīgs lietotājvārds" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Kļūda, veidojot lietotāju" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Jānorāda derīga parole" @@ -319,11 +319,15 @@ msgstr "Žurnāla līmenis" msgid "More" msgstr "Vairāk" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Mazāk" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versija" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index bac06d9c1e37e0c6f4461bf09b87690c1af4896f..d866091dc06c0c8278f5ea302feb892da389f3b8 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-05 00:19+0100\n" -"PO-Revision-Date: 2013-02-04 11:30+0000\n" -"Last-Translator: Rūdolfs Mazurs \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index f029afa042dfaa05e7d2fd4ab8e9cea79af71f3e..81face26f615945e8960f856ccb92555d7016d30 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -163,86 +163,88 @@ msgstr "Декември" msgid "Settings" msgstr "Поставки" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "пред 1 минута" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "пред {minutes} минути" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "пред 1 час" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "пред {hours} часови" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "денеска" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "пред {days} денови" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "минатиот месец" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "пред {months} месеци" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "пред месеци" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "минатата година" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "пред години" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Избери" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Во ред" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Не" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Избери" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Во ред" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Не" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Не е специфициран типот на објект." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Грешка" @@ -262,7 +264,7 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Грешка при споделување" @@ -322,59 +324,59 @@ msgstr "Сподели по е-пошта:" msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "може да се измени" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "креирај" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "ажурирај" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "избриши" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "сподели" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Е-порака пратена" @@ -534,23 +536,23 @@ msgstr "ќе биде користено" msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Заврши го подесувањето" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 4aacdf1a85f6c00fa6e66b6f9a6b5f93ce38d1d0..f6c46aea44b40dae70f256d3df66c5fa1a9a97fb 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -73,7 +73,7 @@ msgstr "Неуспеав да запишам на диск" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -93,39 +93,46 @@ msgstr "Избриши" msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Чека" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} веќе постои" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "замени" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "предложи име" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "откажи" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "заменета {new_name} со {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "врати" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 датотека се подига" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -154,68 +161,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не може да се преземе вашата датотека бидејќи фолдерот во кој се наоѓа фајлот има големина од 0 бајти" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Грешка при преземање" - -#: js/files.js:274 -msgid "Close" -msgstr "Затвои" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 датотека се подига" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} датотеки се подигаат" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Преземањето е прекинато." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Подигање на датотека е во тек. Напуштење на страницата ќе го прекине." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Адресата неможе да биде празна." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Грешка" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Име" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Големина" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Променето" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 папка" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} папки" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 датотека" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} датотеки" diff --git a/l10n/mk/files_encryption.po b/l10n/mk/files_encryption.po index 3eab97885bd975b38368d60a7f71db0f30e93b8f..2d19fc176504d7d197fd749d9ed0721474b6ace0 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/mk/files_external.po b/l10n/mk/files_external.po index d095a119c2291c6db8baf10dc5ce0743baf7577a..fe3c3493235d8d6b5ad0f1d2ff5bbaa300292e86 100644 --- a/l10n/mk/files_external.po +++ b/l10n/mk/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,13 +38,13 @@ msgstr "Ве молам доставите валиден Dropbox клуч и т msgid "Error configuring Google Drive storage" msgstr "Грешка при конфигурација на Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не е инсталиран. Не е можно монтирање на CIFS/SMB дискови. Замолете го Вашиот систем администратор да го инсталира." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 51205c77b2caf5536d95c31d6f2a077f4807e15b..8f8d15bd33d41e59242a695d32734b027ee073ae 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/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-12-18 00:13+0100\n" -"PO-Revision-Date: 2012-12-17 13:31+0000\n" -"Last-Translator: Georgi Stanojevski \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "Лозинка" msgid "Submit" msgstr "Прати" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Преземи" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Нема достапно преглед за" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб сервиси под Ваша контрола" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 7910b81dd0a6a8333dfcc9393620c64299ca2896..5b9f5e38cac992256d7d5b8f9b69e7c738d5e4f4 100644 --- a/l10n/mk/files_trashbin.po +++ b/l10n/mk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Грешка" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index f79838b9c078c01798d14116ce501958209dc44e..0f47e5a9dd9a651af466e865a58e48064ee8f583 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-27 23:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 128d814ee1d52dfdcd4f49aec821a61cf4303a4f..2dfafad88e4617c75b242eb17f770e7e128ea4f7 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Georgi Stanojevski , 2012. +# Georgi Stanojevski , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index 907f9576c1778b892aad8c94f1845557beb2821d..6294b438afc780d0f402a446466d676be4fdf0c8 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -95,7 +95,7 @@ msgstr "" msgid "Disable" msgstr "Оневозможи" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Овозможи" @@ -103,64 +103,64 @@ msgstr "Овозможи" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Грешка" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Грешка" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Снимам..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "врати" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Администратор на група" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Избриши" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -319,11 +319,15 @@ msgstr "" msgid "More" msgstr "Повеќе" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Помалку" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Верзија" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 19b5d3df58ebf06cce6142f5704a6a1dbc9c7027..f396468a5d5b3b5f27d5a3f2b02c7b930f761397 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 9e24d8cb2fc384d29d19f8e4dcd1585970397481..f15ffdc57f202f8d767bbefdef40def070b5759a 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -163,86 +163,88 @@ msgstr "Disember" msgid "Settings" msgstr "Tetapan" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Batal" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Tidak" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ya" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Tidak" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Ralat" @@ -262,7 +264,7 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -322,59 +324,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -534,23 +536,23 @@ msgstr "akan digunakan" msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Setup selesai" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 0f234461a4298e659f966d4931415ddf113eaacc..e6c9a00ff36f5077f0e5ad6d72431a71bd297d46 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -74,7 +74,7 @@ msgstr "Gagal untuk disimpan" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -94,39 +94,46 @@ msgstr "Padam" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Dalam proses" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "ganti" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "Batal" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -155,68 +162,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Tidak boleh memuatnaik fail anda kerana mungkin ianya direktori atau saiz fail 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Muat naik ralat" - -#: js/files.js:274 -msgid "Close" -msgstr "Tutup" - -#: js/files.js:313 -msgid "1 file uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Muatnaik dibatalkan." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Ralat" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nama " -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Saiz" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index b87b0fa030b53428cdc22f6f6ca0a954fb707e94..9515dfd0de78c9899366d7b98b52fc71952d66ef 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ms_MY/files_external.po b/l10n/ms_MY/files_external.po index 898cd9062a2a31e1db32a164be33b7491bac7c67..8ecc367a1e5fbb265f6d814af1db738702895cbe 100644 --- a/l10n/ms_MY/files_external.po +++ b/l10n/ms_MY/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index 6518fcc4c6b025ef7df96b80dab5fdea2dfec133..db23a1af3fe7138aa89bc575893afdb6881013b9 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index ca5700f5ff4d07845e630aade9375de498e2a493..8c4564ff8dba125591965ef32544f070fd9a3bdd 100644 --- a/l10n/ms_MY/files_trashbin.po +++ b/l10n/ms_MY/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Ralat" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index 5694a0b699af629cfe2b5cfd89be5d7dbd16648a..6f1366cd61085498441037286a8239f0dde08abd 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index aa47131bd173e886f894e7161049c5c867ba83ab..d40a40daf28cc84d27611ac4c39bfe90d4b6029b 100644 --- a/l10n/ms_MY/lib.po +++ b/l10n/ms_MY/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ms_MY/settings.po b/l10n/ms_MY/settings.po index ead0af974b426f96a7eafa94a050eb9c6d9e8581..53d5141ad2ac57647b51b1e94ebca60155cff1db 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -96,7 +96,7 @@ msgstr "" msgid "Disable" msgstr "Nyahaktif" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Aktif" @@ -104,64 +104,64 @@ msgstr "Aktif" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Ralat" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Ralat" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Simpan..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "dihapus" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Kumpulan" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Padam" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -320,11 +320,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Bantuan" diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index 8e8f74d0a70447bcaee4504cc666b71106688ddc..c2284a13600aa067845fc1e984d60301164731c0 100644 --- a/l10n/ms_MY/user_webdavauth.po +++ b/l10n/ms_MY/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 011e4893c00985ed8edf65f264338827335a21e8..86a5d60cc6b699349f9cf61e6dd7069cf7517be2 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -161,86 +161,88 @@ msgstr "ဒီဇင်ဘာ" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "၁ မိနစ်အရင်က" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "၁ နာရီ အရင်က" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "ယနေ့" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "နှစ် အရင်က" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "ရွေးချယ်" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "အိုကေ" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ပယ်ဖျက်မည်" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "မဟုတ်ဘူး" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "ရွေးချယ်" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ဟုတ်" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "အိုကေ" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "မဟုတ်ဘူး" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "Database သုံးစွဲသူ" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Database စကားဝှက်" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Database အမည်" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 81075d343ca4f0308b38d6aaf95b29bf0d686da5..1c3bdb9087615e593b5c599d672ab577b955c462 100644 --- a/l10n/my_MM/files.po +++ b/l10n/my_MM/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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "ဖိုင်များ" @@ -82,7 +82,7 @@ msgstr "ဖိုင်များ" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index e6b714b2cb460fbd85c758c882e31530d92ae51b..8187a95657ccbac1a6edbdafd6e3593bdb7dcfdb 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/my_MM/files_external.po b/l10n/my_MM/files_external.po index 9d597dfe54579944d0c0377b7021337955c3e156..3eb55f030a617c6201d80aee146a59aa815b33e2 100644 --- a/l10n/my_MM/files_external.po +++ b/l10n/my_MM/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index b960c995af19b0114235c3ac8feb258fceff3f68..548c22898bdfcd07881c1f72321301ef7c9fff95 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/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: 2013-02-27 14:34+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index f0875b29e8568b60956b174f2e6ee2b9fe032b06..dbf87258462e5ad76d25d3b38d91c7f36e2f8d42 100644 --- a/l10n/my_MM/files_trashbin.po +++ b/l10n/my_MM/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/my_MM/files_versions.po b/l10n/my_MM/files_versions.po index 1bb8d9af22056ce56755ffeb0b6259f52943fb98..a2ba5e272de84c9dff957ebf2f17367552e3f458 100644 --- a/l10n/my_MM/files_versions.po +++ b/l10n/my_MM/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 8201b63c014a7b678da26da07f8e197ff67e9b22..01231da96e738b6d22eafd31375385864791b718 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Pyae Sone , 2013. +# Pyae Sone , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index 4e5175098a3ce1b6847ceddcbe1426e4e6f7eac7..3b64f4963b763522bb70016a88d8a021405d19ac 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "စကားဝှက်" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "အကူအညီ" diff --git a/l10n/my_MM/user_webdavauth.po b/l10n/my_MM/user_webdavauth.po index 45d8ff660d388dd101717e231cf7dd418558d14f..bfba4e1cd6e917482a9b69324d4dae5b15e8c90d 100644 --- a/l10n/my_MM/user_webdavauth.po +++ b/l10n/my_MM/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-21 00:14+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index b2d6598d27a6cde45d45f3b6f8a3e040a6c19842..3a4eaba426ae10be2f1260ccbfb11f2c2e3d33bd 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -167,86 +167,88 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillinger" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutt siden" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutter siden" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 time siden" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timer siden" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dager siden" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "forrige måned" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} måneder siden" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "måneder siden" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "forrige år" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "år siden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Velg" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nei" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Velg" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nei" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Feil" @@ -266,7 +268,7 @@ msgstr "" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Feil under deling" @@ -326,59 +328,59 @@ msgstr "Del på epost" msgid "No people found" msgstr "Ingen personer funnet" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Avslutt deling" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "kan endre" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "opprett" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "oppdater" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "slett" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "del" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Passordbeskyttet" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Kan ikke sette utløpsdato" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-post sendt" @@ -538,23 +540,23 @@ msgstr "vil bli brukt" msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fullfør oppsetting" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index 2fdd887f3b8df6ea881468de5e79d1829763e395..270f2a77d93fd403af21053f0e04cfcf4926f2f2 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_NO/files.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -79,7 +79,7 @@ msgstr "Klarte ikke å skrive til disk" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -99,39 +99,46 @@ msgstr "Slett" msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Ventende" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} finnes allerede" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "erstatt" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "foreslå navn" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "erstatt {new_name} med {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "angre" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 fil lastes opp" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -160,68 +167,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kan ikke laste opp filen din siden det er en mappe eller den har 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Opplasting feilet" - -#: js/files.js:274 -msgid "Close" -msgstr "Lukk" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 fil lastes opp" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} filer laster opp" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Opplasting avbrutt." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Filopplasting pågår. Forlater du siden nå avbrytes opplastingen." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL-en kan ikke være tom." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Feil" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Navn" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Størrelse" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Endret" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 mappe" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} mapper" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fil" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 50026411075873ff84c3d091eea8778129e4e87f..a4f3b39ecb12b7422ac2771a6b3c7ed130343ce5 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-07 00:16+0100\n" -"PO-Revision-Date: 2013-03-06 15:13+0000\n" -"Last-Translator: troll \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/nb_NO/files_external.po b/l10n/nb_NO/files_external.po index 41405997d40eb500c3397436471a2d9bb1886d04..24d044818d0404436386349812f2569e4523693b 100644 --- a/l10n/nb_NO/files_external.po +++ b/l10n/nb_NO/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: troll \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -39,13 +39,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 8f4798597a079a1a6755cb7a9c93b7c48965550b..aab4069ed7a8ed9d2459531a5da34c1e9a061d62 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/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-10-31 00:01+0100\n" -"PO-Revision-Date: 2012-10-30 12:47+0000\n" -"Last-Translator: hdalgrav \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "Passord" msgid "Submit" msgstr "Send inn" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Last ned" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web tjenester du kontrollerer" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 19998898cf628034a8419dadb421d44f8527cd6e..dde092aba963c5f1b0006c0bb060b2715d8a3522 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kunne ikke slette %s fullstendig" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" @@ -32,6 +32,10 @@ msgstr "Kunne ikke gjenopprette %s" msgid "perform restore operation" msgstr "utfør gjenopprettings operasjon" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Feil" + #: js/trash.js:34 msgid "delete file permanently" msgstr "slett filer permanent" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index b918fa61b6b4e013e2b6d164d1e52c1299228182..5f9387a60ff4e91a6191931cf215e5829e1b5af1 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -42,11 +42,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index e0d9528111df1ac2d892b71ac1a14ececc6db925..5228fc0a4419c11b641c8c196b5c1ffbebf56a25 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_NO/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arvid Nornes , 2012. -# , 2012. -# , 2012. -# , 2012. -# , 2012. +# Arvid Nornes , 2012 +# espenbye , 2012 +# hdalgrav , 2012 +# runesudden , 2012 +# sindrejh , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -98,10 +98,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 840084f1dab9bf23f751a544a187ee44972b751d..4f57396323f0c119a7de0fab98155937b3e2a413 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 21:30+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -100,7 +100,7 @@ msgstr "" msgid "Disable" msgstr "Slå avBehandle " -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Slå på" @@ -108,64 +108,64 @@ msgstr "Slå på" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Feil" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Feil" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Lagrer..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "slettet" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "angre" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppeadministrator" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slett" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -324,11 +324,15 @@ msgstr "" msgid "More" msgstr "Mer" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Mindre" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versjon" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 915d27dae8f4790cb788b7d101362c8b7b429a8f..0bdc4ebc7b0a95be907bd7ef958c7d06ab4f4b87 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 0ef3963546e9064e178ea3ef7658e6e8cd22029b..fb5ac097bd4d5fc59b1d8da6e915cab8ae34e05a 100644 --- a/l10n/ne/core.po +++ b/l10n/ne/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: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 6b9886ee527277706493f37f3ad5cfcb74afc49d..186deace5c622d88c14488a8419291c7026729b4 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/files.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -70,7 +70,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -151,68 +158,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" -msgstr "" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:955 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:956 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/ne/files_encryption.po b/l10n/ne/files_encryption.po index 89230b07489ac1e4600c91b4f2f2422ef9a89523..adf3985dab277540c423fe9ad53fdd15d9777a65 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/files_external.po b/l10n/ne/files_external.po index 5920f250efe5c82805bd79c4313dafbe2cbd781f..bacdd2133506b7d6651e3119ff7c55882f3381de 100644 --- a/l10n/ne/files_external.po +++ b/l10n/ne/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 0019778bcec42b6bf2c7391c3b4275287663e412..e18a1db2d77985192304fa0583cbcb16603db339 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/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: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index e352da345bcd152ec8883b99fd99e3f312e3efbd..16034c1cb483ea48607a9a3eb76813bf23efb752 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2013-01-31 16:03+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ne/files_versions.po b/l10n/ne/files_versions.po index a2fa4e1dabc15ac3662a5b84b9ee53957b9a5fa0..234a1c0d8f3798b864f36626cdf92582768107b9 100644 --- a/l10n/ne/files_versions.po +++ b/l10n/ne/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 59f4b9b2025f3e6cd95f94314e8c784621ed242f..44cf09325bccbd2c8a7ada0012e417b4d98f64b3 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -117,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/ne/settings.po b/l10n/ne/settings.po index b65223b746329253d1ac6cc26a71b0a831d43b77..90251cee265ed7da4a8d6b44eb95dac47128d312 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ne/user_webdavauth.po b/l10n/ne/user_webdavauth.po index 7b62eb7fe6e2f7eff8d1201e1ad2a459194d8268..64e025a6bec99cad39026ad695d31e51309f2266 100644 --- a/l10n/ne/user_webdavauth.po +++ b/l10n/ne/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-18 00:05+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 5cdb0391dd3a55fa244300cec132fda0089d2182..391f1ef71eb261ef09019e7936665d72c47dd261 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -174,86 +174,88 @@ msgstr "december" msgid "Settings" msgstr "Instellingen" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuut geleden" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuten geleden" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 uur geleden" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} uren geleden" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "vandaag" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "gisteren" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagen geleden" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "vorige maand" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} maanden geleden" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "vorig jaar" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "jaar geleden" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Kies" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Annuleren" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nee" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Kies" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nee" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Het object type is niet gespecificeerd." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Fout" @@ -273,7 +275,7 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Fout tijdens het delen" @@ -333,59 +335,59 @@ msgstr "Deel via email:" msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "maak" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "bijwerken" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "verwijderen" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "deel" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-mail verzonden" @@ -488,11 +490,11 @@ msgstr "Beveiligingswaarschuwing" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Uw PHP versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Werk uw PHP installatie bij om ownCloud veilig te kunnen gebruiken." #: templates/installation.php:32 msgid "" @@ -545,23 +547,23 @@ msgstr "zal gebruikt worden" msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database server" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Installatie afronden" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 9cfb959964653b739a12ecf55f7a3a1a3ad4e01e..a3c69c4f2d4ca61d47a774e963f292ba021ba297 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/files.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -82,7 +82,7 @@ msgstr "Schrijven naar schijf mislukt" msgid "Not enough storage available" msgstr "Niet genoeg opslagruimte beschikbaar" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Ongeldige directory." @@ -102,39 +102,46 @@ msgstr "Verwijder" msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Wachten" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} bestaat al" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "vervang" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "Stel een naam voor" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "annuleren" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "verving {new_name} met {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "uitvoeren verwijderactie" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 bestand wordt ge-upload" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "bestanden aan het uploaden" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' is een ongeldige bestandsnaam." @@ -163,68 +170,60 @@ msgid "" "big." msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestanden." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "uploaden van de file mislukt, het is of een directory of de bestandsgrootte is 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Upload Fout" - -#: js/files.js:274 -msgid "Close" -msgstr "Sluit" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Niet genoeg ruimte beschikbaar" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 bestand wordt ge-upload" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} bestanden aan het uploaden" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Uploaden geannuleerd." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Bestandsupload is bezig. Wanneer de pagina nu verlaten wordt, stopt de upload." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL kan niet leeg zijn." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Fout" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Naam" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Bestandsgrootte" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Laatst aangepast" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 map" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} mappen" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 bestand" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} bestanden" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index c287efb9f79568a9589c75f6b7baad47f60a41f6..76bec86568079ad5440b880b658b092fc5a244ed 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/nl/files_external.po b/l10n/nl/files_external.po index c15bd902af39085f4b5a1aadf9312c46c5240939..f1fefe88e171bd4565fa6001ad0ce2e3ba8ef19f 100644 --- a/l10n/nl/files_external.po +++ b/l10n/nl/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -39,13 +39,13 @@ msgstr "Geef een geldige Dropbox key en secret." msgid "Error configuring Google Drive storage" msgstr "Fout tijdens het configureren van Google Drive opslag" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Waarschuwing: \"smbclient\" is niet geïnstalleerd. Mounten van CIFS/SMB shares is niet mogelijk. Vraag uw beheerder om smbclient te installeren." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index 4ac028d4f845a7bf38196e22d62e392198c91632..e64ffbe44bf05907873cbe92e26038fea190a5b7 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-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 14:47+0000\n" -"Last-Translator: Richard Bos \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "Wachtwoord" msgid "Submit" msgstr "Verzenden" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Downloaden" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 1d6b5c7cdb8251ad930836e79ffab12e27c6691b..c80e748b44b05c6b9eac9cea5b7d4119cb3a7281 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kon %s niet permanent verwijderen" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" @@ -32,6 +32,10 @@ msgstr "Kon %s niet herstellen" msgid "perform restore operation" msgstr "uitvoeren restore operatie" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Fout" + #: js/trash.js:34 msgid "delete file permanently" msgstr "verwijder bestanden definitief" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 87ba278235f1297e5af989dbc1490cdda272ae34..9254c97a290b2afd2fe22a63cc6e6251b9f6e7ed 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/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: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 20:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 38baa929a1b145cdd1de6feee03602130ba542a6..36dc7d96382d84d591d8a14f83e721ff178ca9eb 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# André Koot , 2013. -# , 2012. -# Richard Bos , 2012. -# , 2012. +# André Koot , 2013 +# Len , 2012 +# Richard Bos , 2012 +# bartv , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Stel de gebruikersnaam van de beheerder in." msgid "Set an admin password." msgstr "Stel een beheerderswachtwoord in." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Geef een datamap op." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 37ea182bf379120fbf6f78780cbdf6ef9b62305b..34b223ac45cce9c77d22220fef933f102f048413 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/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: 2013-03-19 00:04+0100\n" -"PO-Revision-Date: 2013-03-18 14:40+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -104,7 +104,7 @@ msgstr "Bijwerken naar {appversion}" msgid "Disable" msgstr "Uitschakelen" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Inschakelen" @@ -112,64 +112,64 @@ msgstr "Inschakelen" msgid "Please wait...." msgstr "Even geduld aub...." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Fout" + +#: js/apps.js:90 msgid "Updating...." msgstr "Bijwerken...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Fout bij bijwerken app" -#: js/apps.js:87 -msgid "Error" -msgstr "Fout" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Bijgewerkt" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Aan het bewaren....." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "verwijderd" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "ongedaan maken" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kon gebruiker niet verwijderen" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Groepen" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Groep beheerder" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "verwijderen" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "toevoegen groep" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Er moet een geldige gebruikersnaam worden opgegeven" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fout bij aanmaken gebruiker" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Er moet een geldig wachtwoord worden opgegeven" @@ -328,11 +328,15 @@ msgstr "Log niveau" msgid "More" msgstr "Meer" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Minder" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versie" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index 8606d6f3164523219f6ead10df2cff1de19e4bd4..90490f9dd961188f84f57796e7399c11b2c0f494 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 09:56+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -27,7 +27,7 @@ msgstr "WebDAV authenticatie" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index 42d7537b49f80050c9e2874cf7431b22fdc1ec51..40265bd47a4cf7181ca5fa2b302e3be48928f2f5 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -162,76 +162,76 @@ msgstr "Desember" msgid "Settings" msgstr "Innstillingar" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Kanseller" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -239,9 +239,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Feil" @@ -261,7 +263,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -321,59 +323,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -533,23 +535,23 @@ msgstr "vil bli nytta" msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Fullfør oppsettet" diff --git a/l10n/nn_NO/files.po b/l10n/nn_NO/files.po index 24283db915c31c423b3983d48e261344f49eeece..ff7697f86e962711e236df61ff2a647ebc3f116a 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -72,7 +72,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -92,39 +92,46 @@ msgstr "Slett" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -153,68 +160,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" -msgstr "Lukk" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Feil" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Namn" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Storleik" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Endra" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index 5b5ba56793880ef8d642b10754c107ab8356bd54..ef0923d2a484daf547380b6a683d113008e80473 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/nn_NO/files_external.po b/l10n/nn_NO/files_external.po index 3ab783c8371ec70e21f69501ff246b2fbda9e04e..88b567ae902334deb45b12c4654d6feaecd098ec 100644 --- a/l10n/nn_NO/files_external.po +++ b/l10n/nn_NO/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 6a569d362f5f6f606e3bc263ae88b012fa49537b..296e7f5ae10a93c1663a60c0ab2d319009941166 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index 25d68085d96630dc5ba5729340bbbb800c14b7a7..1924d58a1534c41fa535e8db38e9d42d0083295a 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Feil" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index abcb5fe4f5fb054f02505d8ef9fdc0496c9442f9..3ab98c305378a1c00cb9c331c8eb793e2b0ea4b6 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 886f0fe997f41fc759b94f72c97047d505a5cb1f..5e13b5d53a9ede33084a01473e0e35473a471701 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index a4361ebb42e3942b6cf5c66ef5841edccdcea600..a273c96f065ddc60819e4dedde50f95aabc1709c 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -94,7 +94,7 @@ msgstr "" msgid "Disable" msgstr "Slå av" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Slå på" @@ -102,64 +102,64 @@ msgstr "Slå på" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Feil" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Feil" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Slett" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -318,11 +318,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Hjelp" diff --git a/l10n/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index 42c4c7ed9766f0a5759f6a912c130e0ec63e5b47..1b5e93f18ca596f21d2f58475016e5489c4de618 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/oc/core.po b/l10n/oc/core.po index d537b48bf4bccd82c9b0001163ca6af3aadea5fc..9414d1bcf4451f362391cab1310b68b227ab49da 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -161,86 +161,88 @@ msgstr "Decembre" msgid "Settings" msgstr "Configuracion" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuta a" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "uèi" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ièr" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "mes passat" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "meses a" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "an passat" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "ans a" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Causís" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "D'accòrdi" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulla" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Non" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Causís" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Òc" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "D'accòrdi" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Non" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Error" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Error al partejar" @@ -320,59 +322,59 @@ msgstr "Parteja tras corrièl :" msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Non parteje" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "crea" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "met a jorn" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "escafa" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "parteja" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "serà utilizat" msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Configuracion acabada" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 7c12910010ad9fd20d9fdacdbf68d4a35e2b4d60..1a86e26f564761439be178c28ced4b52d76257d9 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -71,7 +71,7 @@ msgstr "L'escriptura sul disc a fracassat" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -91,39 +91,46 @@ msgstr "Escafa" msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Al esperar" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "remplaça" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "nom prepausat" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "anulla" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "defar" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 fichièr al amontcargar" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossible d'amontcargar lo teu fichièr qu'es un repertòri o que ten pas que 0 octet." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Error d'amontcargar" - -#: js/files.js:274 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 fichièr al amontcargar" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Amontcargar anullat." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Un amontcargar es a se far. Daissar aquesta pagina ara tamparà lo cargament. " -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Error" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nom" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Talha" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificat" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index 4db4079a8e0dcd4d6cc5bcfc7db55fd1c29bcf67..a7fbf59235033f72ab8e2b9b0cd3a180353021c4 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/oc/files_external.po b/l10n/oc/files_external.po index b363f8d316d4c9c180c7ecaed24c08c94dfef7c1..ea558c0a4fcbf29276cd0fc3022ed6be452eedd5 100644 --- a/l10n/oc/files_external.po +++ b/l10n/oc/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index 0e83b850761e01315554995c8e5a1159f6a5edda..f250912c1eedd878c873edb73525a11ae8572bfd 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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index c021b24f318e5406479a0ca830ca250d1b8f27cf..a631653516f61ceeb729f05f2aa4354897b58c51 100644 --- a/l10n/oc/files_trashbin.po +++ b/l10n/oc/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Error" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index a84be8cd14bb4d42b26e411ab1300d5e9125c13f..eea377d1837bc0078170f6a74fe8c478fdcda0a3 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 6dff829562b0ae9014210aa7b13eb0b52e96a093..df4835c6ea4694a5473adcea837d7cf2aad24db0 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# tartafione , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index 3dd4a1a3fd4c7fbbfb0279705fab75a104e398f6..df9e0929594a90d2024bb8125ccb1dd5788d9afb 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -93,7 +93,7 @@ msgstr "" msgid "Disable" msgstr "Desactiva" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activa" @@ -101,64 +101,64 @@ msgstr "Activa" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Error" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Error" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Enregistra..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "escafat" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "defar" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grops" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grop Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Escafa" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -317,11 +317,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Ajuda" diff --git a/l10n/oc/user_webdavauth.po b/l10n/oc/user_webdavauth.po index 03cdef79eb0ee5eae569799ab2b6b0f0dbdbe07a..28e19ba92c01ca3314bdd576556358c0dce0fa1e 100644 --- a/l10n/oc/user_webdavauth.po +++ b/l10n/oc/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pl/core.po b/l10n/pl/core.po index 7c1abbdab6f8ed363fa5a3815bb2a731c4aa6ef5..91dcac0d464b10d9e1ef711c677c392ce9ef35a6 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -173,86 +173,88 @@ msgstr "Grudzień" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minutę temu" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minut temu" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 godzinę temu" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} godzin temu" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "dziś" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dni temu" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} miesięcy temu" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "lat temu" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Wybierz" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anuluj" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nie" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Wybierz" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Tak" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nie" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Nie określono typu obiektu." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Błąd" @@ -272,7 +274,7 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" @@ -332,59 +334,59 @@ msgstr "Współdziel poprzez e-mail:" msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "może edytować" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "utwórz" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "uaktualnij" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "usuń" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "współdziel" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-mail wysłany" @@ -544,23 +546,23 @@ msgstr "zostanie użyte" msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Zakończ konfigurowanie" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index c89ef93013c88a76ccc05278105d788430685c4b..3361b9741f6cb5f33d37c910c55b68cce815e6a1 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/files.po @@ -17,8 +17,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -80,7 +80,7 @@ msgstr "Błąd zapisu na dysk" msgid "Not enough storage available" msgstr "Za mało dostępnego miejsca" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Zła ścieżka." @@ -100,39 +100,46 @@ msgstr "Usuń" msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Oczekujące" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} już istnieje" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "zastąp" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "zasugeruj nazwę" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "anuluj" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "zastąpiono {new_name} przez {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "cofnij" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "wykonaj operację usunięcia" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 plik wczytywany" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "pliki wczytane" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "„.” jest nieprawidłową nazwą pliku." @@ -161,68 +168,60 @@ msgid "" "big." msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pliki są duże." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nie można wczytać pliku, ponieważ jest on katalogiem lub ma 0 bajtów" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Błąd wczytywania" - -#: js/files.js:274 -msgid "Close" -msgstr "Zamknij" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Za mało miejsca" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 plik wczytywany" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "Ilość przesyłanych plików: {count}" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Wczytywanie anulowane." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Wysyłanie pliku jest w toku. Jeśli opuścisz tę stronę, wysyłanie zostanie przerwane." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL nie może być pusty." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Błąd" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nazwa" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Rozmiar" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 folder" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "Ilość folderów: {count}" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 plik" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "Ilość plików: {count}" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index ee5832f42daeb8eae9b872b8ce2c8df8eaea2416..c2357401d81f9d7550402a8f6f2d09988f8f23e9 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 09:46+0000\n" -"Last-Translator: bbartlomiej \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/pl/files_external.po b/l10n/pl/files_external.po index 1eaaa02bf630e1e4d098d0dcd1aacd523cc8fa06..7b747f0ed54cc6923b6b5686d6c591ef3c0971ce 100644 --- a/l10n/pl/files_external.po +++ b/l10n/pl/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,13 +41,13 @@ msgstr "Proszę podać prawidłowy klucz aplikacji Dropbox i klucz sekretny." msgid "Error configuring Google Drive storage" msgstr "Wystąpił błąd podczas konfigurowania zasobu Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Ostrzeżenie: \"smbclient\" nie jest zainstalowany. Zamontowanie katalogów CIFS/SMB nie jest możliwe. Skontaktuj sie z administratorem w celu zainstalowania." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index a355ae067e71ea5f8ad1c6cecbe446c35cbf3203..4007f347ff0cc40ede073293033281dd0ecdda9d 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/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: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 14:40+0000\n" -"Last-Translator: emc \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,14 +38,14 @@ msgstr "%s współdzieli folder z tobą %s" msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Pobierz" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "Kontrolowane serwisy" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index d33ebb00422c5f841c8fe1e254a5b7a0e2a1923a..284ff04071a1c9d3e06e52c6e89bf3432ae95773 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: 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" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nie można trwale usunąć %s" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Nie można przywrócić %s" @@ -32,6 +32,10 @@ msgstr "Nie można przywrócić %s" msgid "perform restore operation" msgstr "wykonywanie operacji przywracania" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Błąd" + #: js/trash.js:34 msgid "delete file permanently" msgstr "trwale usuń plik" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 54824d793e71939227f1ccbb9b3ad25ba97dbc33..28ab5a893cea2ea6a4733024b934a85781e6a4eb 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:05+0100\n" -"PO-Revision-Date: 2013-03-02 07:50+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index c9672d1051971e524adeaed6086e51b474ea8d8a..dbc02c98d2508bdb3008b1e4d2d01705b26412e8 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cyryl Sochacki <>, 2012. -# Cyryl Sochacki , 2012-2013. -# Maciej Tarmas , 2013. -# Marcin Małecki , 2012-2013. +# Cyryl Sochacki , 2012 +# Cyryl Sochacki , 2012-2013 +# Maciej Tarmas , 2013 +# Marcin Małecki , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:00+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Ustaw nazwę administratora." msgid "Set an admin password." msgstr "Ustaw hasło administratora." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Określ folder danych." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 66b58472169269f981272daf66283dc6f0dfd8f2..ff5ed02f9b6e5590cef53ed5eb125536be6d77be 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -21,9 +21,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:06+0100\n" -"PO-Revision-Date: 2013-03-02 22:39+0000\n" -"Last-Translator: Maciej Tarmas \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -106,7 +106,7 @@ msgstr "Aktualizacja do {appversion}" msgid "Disable" msgstr "Wyłącz" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Włącz" @@ -114,64 +114,64 @@ msgstr "Włącz" msgid "Please wait...." msgstr "Proszę czekać..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Błąd" + +#: js/apps.js:90 msgid "Updating...." msgstr "Aktualizacja w toku..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Błąd podczas aktualizacji aplikacji" -#: js/apps.js:87 -msgid "Error" -msgstr "Błąd" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Zaktualizowano" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Zapisywanie..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "usunięto" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "cofnij" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nie można usunąć użytkownika" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupy" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Administrator grupy" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Usuń" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "dodaj grupę" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Należy podać prawidłową nazwę użytkownika" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Błąd podczas tworzenia użytkownika" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Należy podać prawidłowe hasło" @@ -330,11 +330,15 @@ msgstr "Poziom logów" msgid "More" msgstr "Więcej" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Mniej" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Wersja" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 44e963a5a43418d911619eb251586c76198e1753..437dc1175dacc711e32645ee92ab72551a5cd9a9 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-16 00:19+0100\n" -"PO-Revision-Date: 2013-01-15 08:54+0000\n" -"Last-Translator: bbartlomiej \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -28,7 +28,7 @@ msgstr "Uwierzytelnienie WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pl_PL/core.po b/l10n/pl_PL/core.po index 94e45d6c9222611ac2de2d0aae7510db237c1807..59dba278777a9d10065146f06316da9fbbc0086e 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: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "Ustawienia" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/pl_PL/files.po b/l10n/pl_PL/files.po index 732200fd6fab3cfea03d2290d2f9f576c5e6ec37..6c5cbd655cbd410d2d03a9924e4a735354884166 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -70,7 +70,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -151,68 +158,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/pl_PL/files_encryption.po b/l10n/pl_PL/files_encryption.po index d41a8cb3da55fdae02b4dba55be976f241454567..13ec81b2fa52b2cbacf5d105da444582ea580410 100644 --- a/l10n/pl_PL/files_encryption.po +++ b/l10n/pl_PL/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/pl_PL/files_external.po b/l10n/pl_PL/files_external.po index abd87d253b8b65416d0c841084e8a584975c02a2..63786d6b42709da3d15accae1f1a1516625ba1fe 100644 --- a/l10n/pl_PL/files_external.po +++ b/l10n/pl_PL/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pl_PL/files_sharing.po b/l10n/pl_PL/files_sharing.po index 5735894fdf4391ef3d03b01b900b961ced937575..6bd035fa98c10a6455f216441eca58de45f71f4d 100644 --- a/l10n/pl_PL/files_sharing.po +++ b/l10n/pl_PL/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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/pl_PL/files_trashbin.po b/l10n/pl_PL/files_trashbin.po index 3de7aff0fae4c1ddc19a3f4f190356294adbdeaa..7920003d18cd3d73b01fb3610930bbf6a598f2b4 100644 --- a/l10n/pl_PL/files_trashbin.po +++ b/l10n/pl_PL/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "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" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/pl_PL/files_versions.po b/l10n/pl_PL/files_versions.po index 8634a4a3e6a649fc4119ccdb39ad926584281e87..f20407f561a4ce3ab3be4c5a0440da824c13de47 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/pl_PL/lib.po b/l10n/pl_PL/lib.po index 3a14af541f8912cb071316e2df74dd0e0e77d8c6..b041eeee3055c4e8292102accb0b60d4dc4829d9 100644 --- a/l10n/pl_PL/lib.po +++ b/l10n/pl_PL/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -117,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/pl_PL/settings.po b/l10n/pl_PL/settings.po index 3a1780a3529c09fa493350b1126598b7af0b3ccc..038b200e8ea5933f1a0123d54f26b8430f714e27 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/owncloud/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/pl_PL/user_webdavauth.po b/l10n/pl_PL/user_webdavauth.po index 2ffe7523c4db1a9d706ea27a6e82aeac667ce821..8056a470e9904c6d6ea615f0ede9b8e3db69cef1 100644 --- a/l10n/pl_PL/user_webdavauth.po +++ b/l10n/pl_PL/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 610177d5968a0f7c5d9def83b100f42359595466..69739f01cb536c19f12ffc183fe8c7b3cfcff0cb 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/core.po @@ -11,6 +11,7 @@ # , 2012. # , 2012. # Rodrigo Tavares , 2013. +# Sedir G. Morais , 2013. # Thiago Vicente , 2012. # Unforgiving Fallout <>, 2012. # Van Der Fran , 2011, 2012. @@ -18,8 +19,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -171,86 +172,88 @@ msgstr "dezembro" msgid "Settings" msgstr "Configurações" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minuto atrás" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 hora atrás" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} horas atrás" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hoje" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ontem" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "último mês" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} meses atrás" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "último ano" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escolha" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Não" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escolha" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Não" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "O tipo de objeto não foi especificado." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Erro" @@ -270,7 +273,7 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Erro ao compartilhar" @@ -330,59 +333,59 @@ msgstr "Compartilhar via e-mail:" msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "pode editar" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "controle de acesso" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "criar" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "atualizar" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "remover" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "compartilhar" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-mail enviado" @@ -485,11 +488,11 @@ msgstr "Aviso de Segurança" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Por favor atualize sua instalação do PHP para utilizar o ownCloud de forma segura." #: templates/installation.php:32 msgid "" @@ -542,23 +545,23 @@ msgstr "será usado" msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Concluir configuração" diff --git a/l10n/pt_BR/files.po b/l10n/pt_BR/files.po index e1a0f1e6c850df76f2cf6d9f090cee7fdd522df1..1347204dd4b91b5cfedab5f9f7e0ce4762470dae 100644 --- a/l10n/pt_BR/files.po +++ b/l10n/pt_BR/files.po @@ -9,6 +9,7 @@ # Guilherme Maluf Balzana , 2012. # , 2012. # Rodrigo Tavares , 2013. +# Sedir G. Morais , 2013. # , 2012. # Thiago Vicente , 2012. # Tulio Simoes Martins Padilha , 2013. @@ -18,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +82,7 @@ msgstr "Falha ao escrever no disco" msgid "Not enough storage available" msgstr "Espaço de armazenamento insuficiente" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Diretório inválido." @@ -101,39 +102,46 @@ msgstr "Excluir" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} já existe" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "substituir" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "sugerir nome" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "Substituído {old_name} por {new_name} " -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "desfazer" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "realizar operação de exclusão" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "enviando 1 arquivo" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "enviando arquivos" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' é um nome de arquivo inválido." @@ -162,68 +170,60 @@ msgid "" "big." msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os arquivos forem grandes." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Impossível enviar seus arquivo por ele ser um diretório ou ter 0 bytes." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Erro de envio" - -#: js/files.js:274 -msgid "Close" -msgstr "Fechar" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "enviando 1 arquivo" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "Enviando {count} arquivos" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Espaço de armazenamento insuficiente" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Upload em andamento. Sair da página agora resultará no cancelamento do envio." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL não pode ficar em branco" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Erro" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nome" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Tamanho" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificado" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 arquivo" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} arquivos" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 51cd8db4d819394f56204d0079add124d6f9e4a0..66f9c4e029957f79b6da1f858f14d623a2b7d90a 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 23:00+0000\n" -"Last-Translator: rodrigost23 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/files_external.po b/l10n/pt_BR/files_external.po index 12f2c415299d2be2cd972c356856db52e16d3189..9b0ff93c3cccfef46c882b2c057a0751c106961e 100644 --- a/l10n/pt_BR/files_external.po +++ b/l10n/pt_BR/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -40,13 +40,13 @@ msgstr "Por favor forneça um app key e secret válido do Dropbox" msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar armazenamento do Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Aviso: \"smbclient\" não está instalado. Impossível montar compartilhamentos de CIFS/SMB. Por favor, peça ao seu administrador do sistema para instalá-lo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index f6e8856cc62d04ad8c2af75f1d4a91efc9c63125..52bc451ea0c4a241a2d2e33a4a64f96d7ff94070 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/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: 2013-02-14 00:05+0100\n" -"PO-Revision-Date: 2013-02-13 22:01+0000\n" -"Last-Translator: sedir \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Senha" msgid "Submit" msgstr "Submeter" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Baixar" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "web services sob seu controle" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index d016d12f4f949b0cf067c7a32cff88f3518c77a6..728344416d127d621e3f0d8887f54ed9986c60b0 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Não foi possível excluir %s permanentemente" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" @@ -32,6 +32,10 @@ msgstr "Não foi possível restaurar %s" msgid "perform restore operation" msgstr "realizar operação de restauração" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Erro" + #: js/trash.js:34 msgid "delete file permanently" msgstr "excluir arquivo permanentemente" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 88db88761f5a99a605c17f06139669fa61b5ce8f..72744963485193c4db4feaf6fe2f9f6ff392c848 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 12:10+0000\n" -"Last-Translator: dudanogueira \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 81f403506a42686f24dc417a752dc507cede81f0..b6f5ca1cf8c06fefd20b037ef30fb9600635ff5a 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Frederico Freire Boaventura , 2013. -# , 2012. -# , 2012. -# Rodrigo Tavares , 2013. +# dudanogueira , 2012 +# fboaventura , 2013 +# Schopfer , 2012 +# sedir , 2012 +# Rodrigo Tavares , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: fboaventura \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -98,10 +98,6 @@ msgstr "Defina um nome de usuário de administrador." msgid "Set an admin password." msgstr "Defina uma senha de administrador." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especifique uma pasta de dados." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index c29a840ce614057ad2e8c743e02ee966f0faee0e..c7c53c3952a462fbc803fce5d91e1ebf8b404ffb 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/settings.po @@ -18,9 +18,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-03 00:06+0100\n" -"PO-Revision-Date: 2013-03-01 23:10+0000\n" -"Last-Translator: fboaventura \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -103,7 +103,7 @@ msgstr "Atualizar para {appversion}" msgid "Disable" msgstr "Desabilitar" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Habilitar" @@ -111,64 +111,64 @@ msgstr "Habilitar" msgid "Please wait...." msgstr "Por favor, aguarde..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Erro" + +#: js/apps.js:90 msgid "Updating...." msgstr "Atualizando..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Erro ao atualizar aplicativo" -#: js/apps.js:87 -msgid "Error" -msgstr "Erro" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Atualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Guardando..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "excluído" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "desfazer" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Impossível remover usuário" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrativo" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Excluir" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "adicionar grupo" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Forneça um nome de usuário válido" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erro ao criar usuário" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Forneça uma senha válida" @@ -327,11 +327,15 @@ msgstr "Nível de registro" msgid "More" msgstr "Mais" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Menos" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versão" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index be539b59a8a815d456f36fb602f763aaa79d426e..c68169faea49ab228acd0f61599f658e8bb700b8 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 16:22+0000\n" -"Last-Translator: rodrigost23 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autenticação WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 2c111617e8de60af1ffcebf449d59c37b1cb1e35..cde8bb618994dfcb41cdcc828a64ee423f082b2b 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/core.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -168,86 +168,88 @@ msgstr "Dezembro" msgid "Settings" msgstr "Definições" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "Há 1 minuto" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minutos atrás" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Há 1 hora" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Há {hours} horas atrás" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hoje" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ontem" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dias atrás" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "ultímo mês" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "Há {months} meses atrás" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "meses atrás" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "ano passado" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "anos atrás" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Escolha" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Cancelar" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Não" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Escolha" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Sim" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Não" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "O tipo de objecto não foi especificado" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Erro" @@ -267,7 +269,7 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Erro ao partilhar" @@ -327,59 +329,59 @@ msgstr "Partilhar via email:" msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "pode editar" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "criar" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "actualizar" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "apagar" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "partilhar" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-mail enviado" @@ -539,23 +541,23 @@ msgstr "vai ser usada" msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Acabar instalação" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index f3c2332dbb3793db34fc8119c15eb83bd477773a..6794c27ed346622bc85e055fe59038bb0ee46c7e 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/files.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -78,7 +78,7 @@ msgstr "Falhou a escrita no disco" msgid "Not enough storage available" msgstr "Não há espaço suficiente em disco" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Directório Inválido" @@ -98,39 +98,46 @@ msgstr "Apagar" msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Pendente" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "O nome {new_name} já existe" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "substituir" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "sugira um nome" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "cancelar" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "substituido {new_name} por {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "desfazer" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "Executar a tarefa de apagar" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "A enviar 1 ficheiro" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "A enviar os ficheiros" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' não é um nome de ficheiro válido!" @@ -159,68 +166,60 @@ msgid "" "big." msgstr "O seu download está a ser preparado. Este processo pode demorar algum tempo se os ficheiros forem grandes." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Não é possível fazer o envio do ficheiro devido a ser uma pasta ou ter 0 bytes" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Erro no envio" - -#: js/files.js:274 -msgid "Close" -msgstr "Fechar" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Espaço em disco insuficiente!" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "A enviar 1 ficheiro" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "A carregar {count} ficheiros" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Envio cancelado." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Envio de ficheiro em progresso. Irá cancelar o envio se sair da página agora." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "O URL não pode estar vazio." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Erro" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nome" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Tamanho" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificado" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 pasta" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} pastas" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 ficheiro" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} ficheiros" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index 461a5030b77309c5bc3a67538e873b3340ffd754..5b7f52b3712ee9a49f62659e276c706e8c3b32ed 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 00:03+0100\n" -"PO-Revision-Date: 2013-02-10 14:21+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/pt_PT/files_external.po b/l10n/pt_PT/files_external.po index 012e5e87c2386196ff93f3f11e4c1fb07d6974e8..583bb3bfaf3aaf831b2c48f0b5fe99579e7387fd 100644 --- a/l10n/pt_PT/files_external.po +++ b/l10n/pt_PT/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Por favor forneça uma \"app key\" e \"secret\" do Dropbox válidas." msgid "Error configuring Google Drive storage" msgstr "Erro ao configurar o armazenamento do Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenção: O cliente \"smbclient\" não está instalado. Não é possível montar as partilhas CIFS/SMB . Peça ao seu administrador para instalar." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index b3df0a72fac2d849ea466878d81f9e1ace25363d..913b52dd574ccca39d614cb0f6daef4b3b8087f1 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Duarte Velez Grilo , 2012. +# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2012-10-01 02:04+0200\n" -"PO-Revision-Date: 2012-09-30 22:25+0000\n" -"Last-Translator: Duarte Velez Grilo \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -20,30 +21,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "Palavra-Passe" +msgstr "Password" #: templates/authenticate.php:6 msgid "Submit" msgstr "Submeter" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "Descarregar" +msgstr "Transferir" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Não há pré-visualização para" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "serviços web sob o seu controlo" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index b7c57b0cf01756fad57cd3d5587cf3ad929f8096..187d7ecf917ed88b066e7476551de65bfb071afc 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -4,12 +4,13 @@ # # Translators: # Daniel Pinto , 2013. +# Helder Meneses , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,19 +19,23 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Não foi possível eliminar %s de forma permanente" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "Restaurar" +msgstr "executar a operação de restauro" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Erro" #: js/trash.js:34 msgid "delete file permanently" @@ -66,7 +71,7 @@ msgstr "{count} ficheiros" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "Não ha ficheiros. O lixo está vazio" +msgstr "Não hà ficheiros. O lixo está vazio!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 54018e45527e41bd0480898f883867d1cabf566b..102a1060df217d00624a19187e3a0cd0476ae39d 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 11:40+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 83c4610100c200870caa08abfda550da242a903c..00910212282bd2d6db75a917c1720a5d866ee6ec 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012-2013. -# Daniel Pinto , 2013. -# Duarte Velez Grilo , 2012. -# Helder Meneses , 2013. +# Mouxy , 2012-2013 +# Mouxy , 2013 +# Duarte Velez Grilo , 2012 +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "Definir um nome de utilizador de administrador" msgid "Set an admin password." msgstr "Definiar uma password de administrador" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Especificar a pasta para os dados." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 84f9f0950299d2949b25277788bcff6ab8041199..a0be25c84ba33c5f19d9cb2b38a799fe6a874120 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 11:39+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -100,7 +100,7 @@ msgstr "Actualizar para a versão {appversion}" msgid "Disable" msgstr "Desactivar" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activar" @@ -108,64 +108,64 @@ msgstr "Activar" msgid "Please wait...." msgstr "Por favor aguarde..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Erro" + +#: js/apps.js:90 msgid "Updating...." msgstr "A Actualizar..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Erro enquanto actualizava a aplicação" -#: js/apps.js:87 -msgid "Error" -msgstr "Erro" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Actualizado" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "A guardar..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "apagado" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "desfazer" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Não foi possível remover o utilizador" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupos" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupo Administrador" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Apagar" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "Adicionar grupo" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Um nome de utilizador válido deve ser fornecido" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Erro a criar utilizador" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Uma password válida deve ser fornecida" @@ -324,11 +324,15 @@ msgstr "Nível do registo" msgid "More" msgstr "Mais" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Menos" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versão" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index 6f6d78b3df7d945157b6ae3e881fe4e97cb614ec..ba3adcee8647bd628445ec4b794a5bb5c5097633 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-18 00:03+0100\n" -"PO-Revision-Date: 2013-01-17 00:54+0000\n" -"Last-Translator: Mouxy \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -27,7 +27,7 @@ msgstr "Autenticação WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 31779a0c1c3cc3c74f3c981eaf3db07093c917c5..35676e96cfe20c566bf87aad62c6d88d852540f6 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -166,86 +166,88 @@ msgstr "Decembrie" msgid "Settings" msgstr "Configurări" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut în urmă" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minute in urma" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Acum o ora" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ore în urmă" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "astăzi" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ieri" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} zile in urma" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "ultima lună" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} luni în urmă" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "ultimul an" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "ani în urmă" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Alege" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Anulare" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nu" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Alege" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nu" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Tipul obiectului nu a fost specificat" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Eroare" @@ -265,7 +267,7 @@ msgstr "" msgid "Share" msgstr "Partajează" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Eroare la partajare" @@ -325,59 +327,59 @@ msgstr "Distribuie prin email:" msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "poate edita" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "control acces" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "creare" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "actualizare" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ștergere" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "partajare" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Mesajul a fost expediat" @@ -537,23 +539,23 @@ msgstr "vor fi folosite" msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Finalizează instalarea" diff --git a/l10n/ro/files.po b/l10n/ro/files.po index 8ace99a88b74306d91725b510306559eea9386e0..e15f6abff90fdba3f53093524409d93053f63ccb 100644 --- a/l10n/ro/files.po +++ b/l10n/ro/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -76,7 +76,7 @@ msgstr "Eroare la scriere pe disc" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Director invalid." @@ -96,39 +96,46 @@ msgstr "Șterge" msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "În așteptare" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} deja exista" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "înlocuire" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "sugerează nume" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "anulare" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} inlocuit cu {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "un fișier se încarcă" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' este un nume invalid de fișier." @@ -157,68 +164,60 @@ msgid "" "big." msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă fișierele sunt mari." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nu s-a putut încărca fișierul tău deoarece pare să fie un director sau are 0 bytes." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Eroare la încărcare" - -#: js/files.js:274 -msgid "Close" -msgstr "Închide" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nu este suficient spațiu disponibil" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "un fișier se încarcă" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} fisiere incarcate" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Încărcare anulată." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Fișierul este în curs de încărcare. Părăsirea paginii va întrerupe încărcarea." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Adresa URL nu poate fi goală." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Eroare" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Nume" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Dimensiune" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Modificat" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 folder" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} foldare" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fisier" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} fisiere" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index ba27a3e08d25f072b9ef8aba92d8a9f494e06b85..a4aa0e05dfedb1336cdd29974f4ebea644802478 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ro/files_external.po b/l10n/ro/files_external.po index c9a3313b9bf963fb4dee12c263339158b1566661..104dee153262b7b3b8f073b02f5e85ac0f4e9786 100644 --- a/l10n/ro/files_external.po +++ b/l10n/ro/files_external.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -39,13 +39,13 @@ msgstr "Prezintă te rog o cheie de Dropbox validă și parola" msgid "Error configuring Google Drive storage" msgstr "Eroare la configurarea mediului de stocare Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Atenție: \"smbclient\" nu este instalat. Montarea mediilor CIFS/SMB partajate nu este posibilă. Solicită administratorului sistemului tău să îl instaleaze." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 7966d650dad54ec58f4e1ebc2e05bc9906677ebb..6dfb5310d780390b82a27f479363b8c9a9f51be0 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/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-27 02:01+0200\n" -"PO-Revision-Date: 2012-09-26 13:27+0000\n" -"Last-Translator: g.ciprian \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "Parolă" msgid "Submit" msgstr "Trimite" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Descarcă" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "servicii web controlate de tine" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index facd2efe40d35614fa981e099d5e4a94f5a5990a..1c2d7260a9b9be3eadcf47ad29a3a3207d36a540 100644 --- a/l10n/ro/files_trashbin.po +++ b/l10n/ro/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Eroare" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 9a6c076a43c2a0fd01a130172ac28119dac0ccec..0648c9a78cad3ba4752873b40ed09f215e6fb9bd 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 3377eaa19916e08921c9ab7481fb9c6c25a118d3..9508b63732827b3bb1ce37376175c69d3ee9fb5a 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dumitru Ursu <>, 2013. -# , 2012. -# , 2012. +# Dimon Pockemon <>, 2013 +# g.ciprian , 2012 +# laurentiucristescu , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index ac2965b4d758e9486f6c4c3d23bb6c076b5d58c1..942cb3c8edc099d4c926e3ec5b5f0d5c447e2e12 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -99,7 +99,7 @@ msgstr "" msgid "Disable" msgstr "Dezactivați" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Activați" @@ -107,64 +107,64 @@ msgstr "Activați" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Eroare" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Eroare" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Salvez..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "șters" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "Anulează ultima acțiune" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupuri" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Grupul Admin " -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Șterge" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -323,11 +323,15 @@ msgstr "" msgid "More" msgstr "Mai mult" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Mai puțin" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 1f11c76068bbe3713e58adf9250894ae60087fb1..637e3bf026950670e92bf3d747c6d56a471f3b3d 100644 --- a/l10n/ro/user_webdavauth.po +++ b/l10n/ro/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-27 00:04+0100\n" -"PO-Revision-Date: 2013-01-26 00:09+0000\n" -"Last-Translator: Dimon Pockemon <>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,7 +27,7 @@ msgstr "Autentificare WebDAV" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 4eea1fc51903ae247f025663a0ecd0086584dc17..6f4f8a3c6811cdf3c6bfb7b49f0927ff23645098 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -19,9 +19,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -172,86 +172,88 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 минуту назад" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} минут назад" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "час назад" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} часов назад" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "сегодня" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} дней назад" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} месяцев назад" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "в прошлом году" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "несколько лет назад" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Выбрать" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ок" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отмена" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Нет" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Выбрать" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ок" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Нет" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Тип объекта не указан" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Ошибка" @@ -271,7 +273,7 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" @@ -331,59 +333,59 @@ msgstr "Поделится через электронную почту:" msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "может редактировать" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "контроль доступа" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "создать" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "обновить" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "удалить" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "открыть доступ" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Письмо отправлено" @@ -543,23 +545,23 @@ msgstr "будет использовано" msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершить установку" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 061359ae9e99d1a3f9c41a8375769fd29ca8447e..d532da2e90a1f0ff38a509b687cb2e301c53e17f 100644 --- a/l10n/ru/files.po +++ b/l10n/ru/files.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -84,7 +84,7 @@ msgstr "Ошибка записи на диск" msgid "Not enough storage available" msgstr "Недостаточно доступного места в хранилище" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Неправильный каталог." @@ -104,39 +104,46 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Ожидание" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} уже существует" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "заменить" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "предложить название" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "отмена" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "заменено {new_name} на {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "отмена" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "выполняется операция удаления" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "загружается 1 файл" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' - неправильное имя файла." @@ -165,68 +172,60 @@ msgid "" "big." msgstr "Загрузка началась. Это может потребовать много времени, если файл большого размера." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не удается загрузить файл размером 0 байт в каталог" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Ошибка загрузки" - -#: js/files.js:274 -msgid "Close" -msgstr "Закрыть" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Недостаточно свободного места" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "загружается 1 файл" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} файлов загружается" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Загрузка отменена." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Файл в процессе загрузки. Покинув страницу вы прервёте загрузку." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Ссылка не может быть пустой." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Ошибка" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Название" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Размер" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Изменён" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 папка" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 файл" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} файлов" diff --git a/l10n/ru/files_encryption.po b/l10n/ru/files_encryption.po index 1244183e43b039381c2fe04567c059ff71a75866..414201060bdb5925034d25671097c56af28406cd 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ru/files_external.po b/l10n/ru/files_external.po index 61f36042ba61142f8e084ed8e5de29ce8da0f3c4..5054c5c61d26dfee1c3b35f9d14ba714b834a708 100644 --- a/l10n/ru/files_external.po +++ b/l10n/ru/files_external.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,13 +41,13 @@ msgstr "Пожалуйста, предоставьте действующий к msgid "Error configuring Google Drive storage" msgstr "Ошибка при настройке хранилища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Внимание: \"smbclient\" не установлен. Подключение по CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index 425b0ed259102204fd6dfc30fce3d633de62c059..1278347ec84ef9c4a6c66cce2ee3a9614e327c19 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.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-10-20 02:02+0200\n" -"PO-Revision-Date: 2012-10-19 13:24+0000\n" -"Last-Translator: skoptev \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -29,24 +29,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Скачать" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Предпросмотр недоступен для" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index 339575a0bc90626261924d942506fa2294a63aa6..45af8ef813051027d34e955751b85fc643f345b3 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: 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" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s не может быть удалён навсегда" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" @@ -32,6 +32,10 @@ msgstr "%s не может быть восстановлен" msgid "perform restore operation" msgstr "выполнить операцию восстановления" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Ошибка" + #: js/trash.js:34 msgid "delete file permanently" msgstr "удалить файл навсегда" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 8709b06612f4c687a87dfbabf4f88c47c05b8ad4..da5a0e022838a410e78b095ad7b6e84eb04a5095 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:30+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 018ecd9e5ab69fd12bb7e1c5b7fb4dc1fbe92102..e6a61975e2339a07abe094d4f851b120be771c10 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -3,21 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Denis , 2013. -# Denis , 2012. -# , 2012. -# Mihail Vasiliev , 2012. -# , 2012. -# Sergey , 2013. -# , 2012. -# Дмитрий , 2013. +# Denis , 2013 +# Denis , 2012 +# k0ldbl00d , 2012 +# Mihail Vasiliev , 2012 +# mPolr , 2012 +# m4rkell , 2013 +# VicDeo , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -101,10 +101,6 @@ msgstr "Установить имя пользователя для admin." msgid "Set an admin password." msgstr "становит пароль для admin." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Указать папку данных." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 9fc87e4aad9f0dfac1ad56ba2f0665be0e34a405..2b06278427cdc181f3201b50edd5bc601d0b9a35 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -22,9 +22,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 05:30+0000\n" -"Last-Translator: Langaru \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -107,7 +107,7 @@ msgstr "Обновить до {версия приложения}" msgid "Disable" msgstr "Выключить" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Включить" @@ -115,64 +115,64 @@ msgstr "Включить" msgid "Please wait...." msgstr "Повремени..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Ошибка" + +#: js/apps.js:90 msgid "Updating...." msgstr "Обновление..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Ошибка в процессе обновления приложения" -#: js/apps.js:87 -msgid "Error" -msgstr "Ошибка" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Обновлено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Сохранение..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "удален" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "отмена" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Невозможно удалить пользователя" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Группы" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Группа Администраторы" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Удалить" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "добавить группу" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Предоставте подходящее имя пользователя" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Ошибка создания пользователя" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Предоставте подходящий пароль" @@ -331,11 +331,15 @@ msgstr "Уровень лога" msgid "More" msgstr "Больше" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Меньше" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Версия" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index c66ccc74b9912194faa7e5db53e9fa3790a85b4c..c402a174582882fb20a8610226eb4db333bbcf33 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-12 15:10+0100\n" -"PO-Revision-Date: 2013-02-12 10:43+0000\n" -"Last-Translator: Denis \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po index 3767eb892f18f737ee25b47a34ab1e6d7471a8c6..b6aa78f2ae78020887caca8504c7ca849b54dee0 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/ru_RU/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -163,86 +163,88 @@ msgstr "Декабрь" msgid "Settings" msgstr "Настройки" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "секунд назад" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr " 1 минуту назад" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{минуты} минут назад" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 час назад" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{часы} часов назад" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "сегодня" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "вчера" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{дни} дней назад" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{месяцы} месяцев назад" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "месяц назад" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "в прошлом году" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "лет назад" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Выбрать" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Да" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Отмена" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Нет" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Выбрать" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Да" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Нет" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Тип объекта не указан." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Ошибка" @@ -262,7 +264,7 @@ msgstr "Опубликовано" msgid "Share" msgstr "Сделать общим" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Ошибка создания общего доступа" @@ -322,59 +324,59 @@ msgstr "Сделать общедоступным посредством email:" msgid "No people found" msgstr "Не найдено людей" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Рекурсивный общий доступ не разрешен" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Совместное использование в {объект} с {пользователь}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Отключить общий доступ" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "возможно редактирование" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "контроль доступа" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "создать" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "обновить" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "удалить" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "сделать общим" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Пароль защищен" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Ошибка при отключении даты истечения срока действия" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Ошибка при установке даты истечения срока действия" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Отправка ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Письмо отправлено" @@ -534,23 +536,23 @@ msgstr "будет использоваться" msgid "Database user" msgstr "Пользователь базы данных" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль базы данных" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Имя базы данных" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Табличная область базы данных" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Сервер базы данных" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершение настройки" diff --git a/l10n/ru_RU/files.po b/l10n/ru_RU/files.po index bd2ae71c4775fa03e7cda36a7c3b00b8042f83f6..4e3eddace5646b231a08661e491a5cd3fb634960 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/ru_RU/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -74,7 +74,7 @@ msgstr "Не удалось записать на диск" msgid "Not enough storage available" msgstr "Недостаточно места в хранилище" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Неверный каталог." @@ -94,39 +94,46 @@ msgstr "Удалить" msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Ожидающий решения" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{новое_имя} уже существует" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "отмена" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "подобрать название" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "отменить" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "заменено {новое_имя} с {старое_имя}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "отменить действие" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "выполняется процесс удаления" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "загрузка 1 файла" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' является неверным именем файла." @@ -155,68 +162,60 @@ msgid "" "big." msgstr "Идёт подготовка к скачке Вашего файла. Это может занять некоторое время, если фалы большие." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Невозможно загрузить файл,\n так как он имеет нулевой размер или является директорией" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Ошибка загрузки" - -#: js/files.js:274 -msgid "Close" -msgstr "Закрыть" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Не достаточно свободного места" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "загрузка 1 файла" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{количество} загружено файлов" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Загрузка отменена" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Процесс загрузки файла. Если покинуть страницу сейчас, загрузка будет отменена." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL не должен быть пустым." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неверное имя папки. Использование наименования 'Опубликовано' зарезервировано Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Ошибка" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Имя" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Размер" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Изменен" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 папка" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{количество} папок" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 файл" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{количество} файлов" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po index cd0001f8dac4f5030281f9c517f5a8c9f018194a..e9f3e4b2039a80f045316b528b3e147de0ac6036 100644 --- a/l10n/ru_RU/files_encryption.po +++ b/l10n/ru_RU/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po index 70c76d26278dc3301c48e8030dd8bed7194a9ee5..43604ee01625d8c5c0dfd79eff90379e8fa59671 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/ru_RU/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,13 +38,13 @@ msgstr "Пожалуйста представьте допустимый клю msgid "Error configuring Google Drive storage" msgstr "Ошибка настройки хранилища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Предупреждение: \"smbclient\" не установлен. Подключение общих папок CIFS/SMB невозможно. Пожалуйста, обратитесь к системному администратору, чтобы установить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po index 7f31cb63091ddd5be7c19da7def8c80a4bac5030..2f1f872d545eff092fd2a8360f8f3e58070c1e7a 100644 --- a/l10n/ru_RU/files_sharing.po +++ b/l10n/ru_RU/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-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 10:54+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Передать" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s имеет общий с Вами доступ к папке %s " -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s имеет общий с Вами доступ к файлу %s " -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Загрузка" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Предварительный просмотр недоступен" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "веб-сервисы под Вашим контролем" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po index cb950a5b53c13e245946db647f0b6ec38ffb74a5..dd27b348b3b423279ccddf6b69a36801e04ea1e5 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/ru_RU/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "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" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "%s не может быть удалён навсегда" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" @@ -32,6 +32,10 @@ msgstr "%s не может быть восстановлен" msgid "perform restore operation" msgstr "выполнить операцию восстановления" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Ошибка" + #: js/trash.js:34 msgid "delete file permanently" msgstr "удалить файл навсегда" diff --git a/l10n/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po index 202ace6ab3c411ed5f838725059741d159993313..8931ebb796c487e3d2511f28d89c97ae9f6f296f 100644 --- a/l10n/ru_RU/files_versions.po +++ b/l10n/ru_RU/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ru_RU/lib.po b/l10n/ru_RU/lib.po index 894f7cb9c6240ee4a0808d19f119f516d5c37ee1..7c5c0870ed58b75bc652fb3ff3685aad251eb2d8 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/ru_RU/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# , 2012. -# Дмитрий , 2013. +# AnnaSch , 2013 +# AnnaSch , 2012 +# Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po index cfc0f39c99faa165c862c497902c9b127164d8f0..09c56fb828489c068a8bf0671ed9dca09a40a273 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/ru_RU/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -94,7 +94,7 @@ msgstr "" msgid "Disable" msgstr "Отключить" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Включить" @@ -102,64 +102,64 @@ msgstr "Включить" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Ошибка" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "Ошибка" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Сохранение" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "удалено" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "отменить действие" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Группы" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Группа Admin" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Удалить" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -318,11 +318,15 @@ msgstr "" msgid "More" msgstr "Подробнее" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Меньше" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Версия" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po index 48ae554ac04cbfd0015c4bfea1ba26787f5ee12d..8223c3dc9ba4af8d253cb4b1176da5ca206b28aa 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/ru_RU/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 10:01+0000\n" -"Last-Translator: AnnaSch \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -28,7 +28,7 @@ msgstr "WebDAV аутентификация" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/si_LK/core.po b/l10n/si_LK/core.po index 7262d4a281784c3788e23410d58e9273aa08c608..bd225017a61ad612e84a3b90345add8882d54242 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -163,86 +163,88 @@ msgstr "දෙසැම්බර්" msgid "Settings" msgstr "සැකසුම්" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 මිනිත්තුවකට පෙර" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "අද" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "තෝරන්න" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "හරි" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "එපා" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "නැහැ" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "තෝරන්න" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ඔව්" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "හරි" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "නැහැ" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "දෝෂයක්" @@ -262,7 +264,7 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -322,59 +324,59 @@ msgstr "විද්‍යුත් තැපෑල මඟින් බෙදා msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "සදන්න" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "මකන්න" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -534,23 +536,23 @@ msgstr "භාවිතා වනු ඇත" msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index c8e36a1fa17fd3f123144587c943d327486d6bfa..3b5c8990fbb4ea16863cba78cf99fb7d6a2629ae 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -72,7 +72,7 @@ msgstr "තැටිගත කිරීම අසාර්ථකයි" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -92,39 +92,46 @@ msgstr "මකන්න" msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "ප්‍රතිස්ථාපනය කරන්න" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "නමක් යෝජනා කරන්න" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "අත් හරින්න" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 ගොනුවක් උඩගත කෙරේ" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -153,68 +160,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "උඩුගත කිරීමේ දෝශයක්" - -#: js/files.js:274 -msgid "Close" -msgstr "වසන්න" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 ගොනුවක් උඩගත කෙරේ" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "උඩුගත කිරීම අත් හරින්න ලදී" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "උඩුගතකිරීමක් සිදුවේ. පිටුව හැර යාමෙන් එය නැවතෙනු ඇත" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "යොමුව හිස් විය නොහැක" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "දෝෂයක්" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "නම" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "ප්‍රමාණය" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 ෆොල්ඩරයක්" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 ගොනුවක්" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index 7af077ac2a7fdaca427df6170f8bc67316e80395..3e1361874ca2558e7b0893d3c64af5c595268549 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/files_external.po b/l10n/si_LK/files_external.po index 8e5728e38a5dcf523a886879812868398bb2320b..13c3bd6a621d1d0ea159ccf05c1086c4ea6da67c 100644 --- a/l10n/si_LK/files_external.po +++ b/l10n/si_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "කරුණාකර වලංගු Dropbox යෙදුම් යත msgid "Error configuring Google Drive storage" msgstr "Google Drive ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 6308f9a772fc3f12d7c8f20cb604b88ccf047f1c..d4a15ed8444a927c9e2a76a996650040d8f02309 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/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-10-23 02:02+0200\n" -"PO-Revision-Date: 2012-10-22 05:59+0000\n" -"Last-Translator: Anushke Guneratne \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "මුරපදය" msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "භාගත කරන්න" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index fd1a2c1ae8c51c9544c189a5f07325e930ef0c63..bc2af0ccec88e1a25bbffae23f51c6a07108919f 100644 --- a/l10n/si_LK/files_trashbin.po +++ b/l10n/si_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "දෝෂයක්" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 66e6bcb8f644c6f1fc1e129650ebfd149ba9a31b..eb2829745c703062ed0fa1f08df3825665eb28ef 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 2e67cbd7df8dc32eaf7018e4f222cc047d51d639..c785afebd7bad7a63ea1d5609f841aba5ca913fa 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Anushke Guneratne , 2012. -# , 2012. +# Anushke Guneratne , 2012 +# dinusha , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index faa4cd05a42a5e0f8688c3fae8c01a4379d8a65d..ecb6a7c40f7ed4e076a03d7087ee3cbf2355dcd9 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -95,7 +95,7 @@ msgstr "" msgid "Disable" msgstr "අක්‍රිය කරන්න" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "ක්‍රියත්මක කරන්න" @@ -103,64 +103,64 @@ msgstr "ක්‍රියත්මක කරන්න" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "දෝෂයක්" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "දෝෂයක්" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "සුරැකෙමින් පවතී..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "සමූහය" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "කාණ්ඩ පරිපාලක" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "මකා දමනවා" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -319,11 +319,15 @@ msgstr "" msgid "More" msgstr "වැඩි" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "අඩු" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/si_LK/user_webdavauth.po b/l10n/si_LK/user_webdavauth.po index a6141d359c90502e160602e73ecdcac30140a92c..cb5a2e879d31b7d6bc8fcdfe96adcd39ed81a1d8 100644 --- a/l10n/si_LK/user_webdavauth.po +++ b/l10n/si_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 7afee22acfcae8afd38da4d530df06de089475a9..585de750f26aab9b8c5b41decd358a50f79d5101 100644 --- a/l10n/sk/core.po +++ b/l10n/sk/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: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index dc487bdeeb258e1c097ab3e3c71fc890693b140e..858044fcb80d08f4e22d7a228a5bfc40af8a45e8 100644 --- a/l10n/sk/files.po +++ b/l10n/sk/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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/sk/files_encryption.po b/l10n/sk/files_encryption.po index eb687048cabbdc79857a0ba08158f5a8a2ef1f25..0e065e2795656da10c3d109c1020bcd19df6efa7 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sk/files_external.po b/l10n/sk/files_external.po index 685594af3ea5fe4aa1f9cbc87f09f987949e8a62..f99201a5587a152735172010b176702d08dc757c 100644 --- a/l10n/sk/files_external.po +++ b/l10n/sk/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 942e60b0498d651b2cae2ea7f39ec94250e84b0b..1b12c173860ba2d7f7f6b04462c9774089702d40 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/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: 2013-02-09 00:12+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 39049d7953472c5ff5c098aafb92dce40ad51cb8..725fce01267096774e80623b783cd79345bb8de4 100644 --- a/l10n/sk/files_trashbin.po +++ b/l10n/sk/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po index c273fd68fbdc2917eb6b2edc2afdb6c32b0352ce..7157752d7107b3ffc0d8aab864eb89c363633075 100644 --- a/l10n/sk/files_versions.po +++ b/l10n/sk/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 68541eae87db4abad53a83e44f7fd6060d977b48..72fd060bdd6faa95920f2b331a72ed7f5c067fe1 100644 --- a/l10n/sk/lib.po +++ b/l10n/sk/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -117,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sk/settings.po b/l10n/sk/settings.po index f2e8a802d76a408e2d05be35c1da481edaa97f24..d9b345699cfcb54e00d6f9d28ac1ee447c7f91af 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po index eb6e13c58c0b8df5ce71710b079c030a8f6d3010..4a5a83a1eaba6d652657daf7595895802700ad64 100644 --- a/l10n/sk/user_webdavauth.po +++ b/l10n/sk/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-09 00:12+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 2541bd7b2fdfa2ed480277310f4b5a38474291e3..6ec59a28f0b0f2407bab0189f13709bdb913f772 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/core.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -167,86 +167,88 @@ msgstr "December" msgid "Settings" msgstr "Nastavenia" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "pred minútou" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pred {minutes} minútami" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Pred 1 hodinou." -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Pred {hours} hodinami." -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "dnes" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "včera" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "pred {days} dňami" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "Pred {months} mesiacmi." -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "minulý rok" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "pred rokmi" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Výber" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Zrušiť" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nie" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Výber" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Áno" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nie" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Nešpecifikovaný typ objektu." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Chyba" @@ -266,7 +268,7 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Chyba počas zdieľania" @@ -326,59 +328,59 @@ msgstr "Zdieľať cez e-mail:" msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "prístupové práva" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "vytvoriť" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "aktualizovať" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "vymazať" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "zdieľať" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Email odoslaný" @@ -538,23 +540,23 @@ msgstr "bude použité" msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Dokončiť inštaláciu" diff --git a/l10n/sk_SK/files.po b/l10n/sk_SK/files.po index 7f333feb890ffcde82e33061a3623ab1a9b7cc14..e5dac9f96530fc3eb582c3757b0aee79b61907b8 100644 --- a/l10n/sk_SK/files.po +++ b/l10n/sk_SK/files.po @@ -7,14 +7,15 @@ # , 2012. # Marián Hvolka , 2013. # , 2012. +# Martin Zatroch , 2013. # Roman Priesol , 2012. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -76,7 +77,7 @@ msgstr "Zápis na disk sa nepodaril" msgid "Not enough storage available" msgstr "Nedostatok dostupného úložného priestoru" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Neplatný priečinok" @@ -96,39 +97,46 @@ msgstr "Odstrániť" msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Čaká sa" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} už existuje" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "nahradiť" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "pomôcť s menom" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "zrušiť" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "prepísaný {new_name} súborom {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "vrátiť" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "vykonať zmazanie" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 súbor sa posiela " + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "nahrávanie súborov" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' je neplatné meno súboru." @@ -157,68 +165,60 @@ msgid "" "big." msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, môže to chvíľu trvať." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Nemôžem nahrať súbor lebo je to priečinok alebo má 0 bajtov." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Chyba odosielania" - -#: js/files.js:274 -msgid "Close" -msgstr "Zavrieť" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nie je k dispozícii dostatok miesta" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 súbor sa posiela " - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} súborov odosielaných" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Odosielanie zrušené" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Opustenie stránky zruší práve prebiehajúce odosielanie súboru." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL nemôže byť prázdne" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Chyba" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Meno" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Veľkosť" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Upravené" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 priečinok" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} priečinkov" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 súbor" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} súborov" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index 232ee99f2fe6e513118dcd58eea9e0934d11977b..69c0359cc185fb9c8e12baed4e1987fdf812aebb 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-11 15:39+0100\n" -"PO-Revision-Date: 2013-02-11 13:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sk_SK/files_external.po b/l10n/sk_SK/files_external.po index 1b4c71637cf9a2ba92297cd18cabeff52ae7d739..3603bda557ebbb0822d77c80ac48ed42613e5bdb 100644 --- a/l10n/sk_SK/files_external.po +++ b/l10n/sk_SK/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Zadajte platný kľúč aplikácie a heslo Dropbox" msgid "Error configuring Google Drive storage" msgstr "Chyba pri konfigurácii úložiska Google drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Upozornenie: \"smbclient\" nie je nainštalovaný. Nie je možné pripojenie oddielov CIFS/SMB. Požiadajte administrátora systému, nech ho nainštaluje." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index b964369a8b050d7acb9bfa81bc430bfa39d0a6bd..d792bd55d10307713110a561b67b28c1b31750b1 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/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-10-02 02:02+0200\n" -"PO-Revision-Date: 2012-10-01 08:36+0000\n" -"Last-Translator: martinb \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "Heslo" msgid "Submit" msgstr "Odoslať" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Stiahnuť" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 15a570d462112e211f0a46a38e8c8bb9106faacc..4c53d28f017b804af2dae58973d8ea64f67b5b2b 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -19,12 +19,12 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Nemožno zmazať %s navždy" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" @@ -33,6 +33,10 @@ msgstr "Nemožno obnoviť %s" msgid "perform restore operation" msgstr "vykonať obnovu" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Chyba" + #: js/trash.js:34 msgid "delete file permanently" msgstr "trvalo zmazať súbor" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 0face773183b617945fb1fc726a3de8a9641e913..6bb0cb836c87abc06c1334ca239d8a8595722617 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 15:20+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -43,11 +43,11 @@ msgstr "chyba" msgid "File %s could not be reverted to version %s" msgstr "Súbor %s nemohol byť obnovený na verziu %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Nie sú dostupné žiadne staršie verzie" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Nevybrali ste cestu" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index ff6d9ce9f037342ea09722193659bd96dead11ab..b99a339307ee12f04a5baaa98e4964a335030193 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.po @@ -3,17 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Marián Hvolka , 2013. -# , 2012. -# Roman Priesol , 2012. -# , 2012. +# mhh , 2013 +# martinb , 2012 +# Roman Priesol , 2012 +# martin , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -97,10 +97,6 @@ msgstr "Zadajte používateľské meno administrátora." msgid "Set an admin password." msgstr "Zadajte heslo administrátora." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Zadajte priečinok pre dáta." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index 0d12e6c1d74d0f457fb148b9924f445b2ca5d82b..84eb780da7c7c0468399d2b40b938140cfe8d9f4 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/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: 2013-03-01 00:05+0100\n" -"PO-Revision-Date: 2013-02-28 15:10+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -98,7 +98,7 @@ msgstr "Aktualizovať na {appversion}" msgid "Disable" msgstr "Zakázať" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Povoliť" @@ -106,64 +106,64 @@ msgstr "Povoliť" msgid "Please wait...." msgstr "Čakajte prosím..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Chyba" + +#: js/apps.js:90 msgid "Updating...." msgstr "Aktualizujem..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "chyba pri aktualizácii aplikácie" -#: js/apps.js:87 -msgid "Error" -msgstr "Chyba" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Aktualizované" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Ukladám..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "zmazané" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "vrátiť" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Nemožno odobrať používateľa" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupiny" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Správca skupiny" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Odstrániť" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "pridať skupinu" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Musíte zadať platné používateľské meno" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Chyba pri vytváraní používateľa" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Musíte zadať platné heslo" @@ -322,11 +322,15 @@ msgstr "Úroveň záznamu" msgid "More" msgstr "Viac" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Menej" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Verzia" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index b3a30b89ca6593ebd560e116497fcb98e68a4472..e20d8617a6c167522b14d3df4376a7ec3a9b65a1 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-31 00:27+0100\n" -"PO-Revision-Date: 2013-01-30 08:31+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -27,7 +27,7 @@ msgstr "WebDAV overenie" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sl/core.po b/l10n/sl/core.po index dc741ae40120e17fef304599674df676f16aab9f..3d0bd6ff5d77500b0f6a03cda94060d976d8aa66 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -3,19 +3,19 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2013. -# <>, 2012. -# Matej Urbančič <>, 2013. -# , 2012. -# Peter Peroša , 2012. -# , 2012. +# mateju <>, 2013 +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 +# Peter Peroša , 2012 +# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 19:00+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" @@ -166,86 +166,88 @@ msgstr "december" msgid "Settings" msgstr "Nastavitve" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "pred minuto" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "pred {minutes} minutami" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "pred 1 uro" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "pred {hours} urami" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "danes" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "včeraj" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "pred {days} dnevi" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "pred {months} meseci" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "lansko leto" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "let nazaj" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Izbor" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "V redu" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Prekliči" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ne" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Izbor" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Da" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "V redu" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ne" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Vrsta predmeta ni podana." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Napaka" @@ -265,7 +267,7 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Napaka med souporabo" @@ -325,59 +327,59 @@ msgstr "Souporaba preko elektronske pošte:" msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Odstrani souporabo" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "ustvari" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "posodobi" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "izbriši" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "določi souporabo" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Elektronska pošta je poslana" @@ -523,37 +525,37 @@ msgstr "Napredne možnosti" msgid "Data folder" msgstr "Podatkovna mapa" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Končaj namestitev" diff --git a/l10n/sl/files.po b/l10n/sl/files.po index 671ea6e72d42e5d2d00c15b298b847fe79568542..1c0597e776ed756d7e830db1867d313d9537d9bd 100644 --- a/l10n/sl/files.po +++ b/l10n/sl/files.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# , 2012. -# Peter Peroša , 2012. -# , 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 +# Peter Peroša , 2012 +# urossolar , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 20: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" @@ -75,7 +75,7 @@ msgstr "Pisanje na disk je spodletelo" msgid "Not enough storage available" msgstr "Na voljo ni dovolj prostora" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Neveljavna mapa." @@ -95,39 +95,46 @@ msgstr "Izbriši" msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "V čakanju ..." -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} že obstaja" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "zamenjaj" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "predlagaj ime" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "prekliči" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "preimenovano ime {new_name} z imenom {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "razveljavi" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "izvedi opravilo brisanja" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "Pošiljanje 1 datoteke" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "poteka pošiljanje datotek" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' je neveljavno ime datoteke." @@ -156,68 +163,60 @@ msgid "" "big." msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datoteka zelo velika." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Pošiljanje ni mogoče, saj gre za mapo, ali pa je datoteka velikosti 0 bajtov." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Napaka med pošiljanjem" - -#: js/files.js:274 -msgid "Close" -msgstr "Zapri" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Na voljo ni dovolj prostora." -#: js/files.js:313 -msgid "1 file uploading" -msgstr "Pošiljanje 1 datoteke" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "pošiljanje {count} datotek" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Pošiljanje je preklicano." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "V teku je pošiljanje datoteke. Če zapustite to stran zdaj, bo pošiljanje preklicano." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "Naslov URL ne sme biti prazna vrednost." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Napaka" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Ime" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Velikost" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 mapa" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} map" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 datoteka" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} datotek" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 05ce9505eb29843149ffa0e73d3632696d7265ba..32f913f26223cc7a369ec892bf5469aee99197d4 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 14:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sl/files_external.po b/l10n/sl/files_external.po index 0f996cbe3112f100d5c5ada316d2071b2f6ecab2..d7930595bc256d7419a1cee82720ab1b1181fcd9 100644 --- a/l10n/sl/files_external.po +++ b/l10n/sl/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Vpisati je treba veljaven ključ programa in kodo za Dropbox" msgid "Error configuring Google Drive storage" msgstr "Napaka nastavljanja shrambe Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Opozorilo: paket \"smbclient\" ni nameščen. Priklapljanje pogonov CIFS/SMB ne bo mogoče." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 2080303af5a20b213b07ae217f768f72c6631118..cce37540707187c4d0e4bed419e83dd049f388b9 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/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: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 14:21+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -37,14 +37,14 @@ msgstr "Oseba %s je določila mapo %s za souporabo" msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Prejmi" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "Predogled ni na voljo za" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index d7643659a2893f973af125b38504d7accc57ff22..1c88a1cf01b96ec3470b96746f8ce152782d0822 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/files_trashbin.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2013. -# Matej Urbančič <>, 2013. +# mateju <>, 2013 +# mateju <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 19:30+0000\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 17:02+0000\n" "Last-Translator: mateju <>\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" "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" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Datoteke %s ni mogoče dokončno izbrisati." -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" @@ -33,6 +33,10 @@ msgstr "Ni mogoče obnoviti %s" msgid "perform restore operation" msgstr "izvedi opravilo obnavljanja" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Napaka" + #: js/trash.js:34 msgid "delete file permanently" msgstr "dokončno izbriši datoteko" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 5810bb0297c23ef5433a8bb6b2650360dd867dbc..154d0ce0887243fd5b6a39fa2afd45d86b7633be 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-13 00:05+0100\n" -"PO-Revision-Date: 2013-03-12 14:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 59a136bd0edc138451612d7a81baea4568b215cf..bc51adf8f3d52ff16c2169312132a157639ebd12 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <>, 2012. -# Matej Urbančič <>, 2013. -# Peter Peroša , 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter Peroša , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "Nastavi uporabniško ime skrbnika." msgid "Set an admin password." msgstr "Nastavi geslo skrbnika." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Določi podatkovno mapo." - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -113,7 +109,7 @@ msgstr "%s - vnos imena podatkovne zbirke." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "%s - v imenu podatkovne zbirke ni dovoljeno vpisati pik." +msgstr "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik." #: setup.php:64 #, php-format @@ -122,7 +118,7 @@ msgstr "%s - vnos gostitelja podatkovne zbirke." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "Uporabniško ime ali geslo PostgreSQL ni pravilno" +msgstr "Uporabniško ime ali geslo PostgreSQL ni veljavno" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." @@ -130,11 +126,11 @@ msgstr "Prijaviti se je treba v obstoječi ali pa skrbniški račun." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "Uporabniško ime ali geslo Oracle ni pravilno" +msgstr "Uporabniško ime ali geslo Oracle ni veljavno" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "Uporabniško ime ali geslo MySQL ni pravilno" +msgstr "Uporabniško ime ali geslo MySQL ni veljavno" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -177,7 +173,7 @@ msgstr "Napačni ukaz je: \"%s\", ime: %s, geslo: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Uporabniško ime ali geslo MS SQL ni pravilno: %s" +msgstr "Uporabniško ime ali geslo MS SQL ni veljavno: %s" #: setup.php:853 msgid "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index efba9dfb3406268ee10b8bd10e4f4a35016386cf..957fabe747232fde8c8081305e87dcf15886e951 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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: 2013-03-12 00:13+0100\n" -"PO-Revision-Date: 2013-03-11 13:00+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -98,7 +98,7 @@ msgstr "Posodobi na {appversion}" msgid "Disable" msgstr "Onemogoči" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Omogoči" @@ -106,64 +106,64 @@ msgstr "Omogoči" msgid "Please wait...." msgstr "Počakajte ..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Napaka" + +#: js/apps.js:90 msgid "Updating...." msgstr "Poteka posodabljanje ..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Prišlo je do napake med posodabljanjem programa." -#: js/apps.js:87 -msgid "Error" -msgstr "Napaka" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Posodobljeno" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Poteka shranjevanje ..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "izbrisano" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "razveljavi" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Uporabnika ni mogoče odstraniti" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Skupine" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Skrbnik skupine" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Izbriši" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "dodaj skupino" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Navedeno mora biti veljavno uporabniško ime" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Napaka ustvarjanja uporabnika" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Navedeno mora biti veljavno geslo" @@ -182,7 +182,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 "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podmapo korenske mape spletnega strežnika." +msgstr "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud, namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podrejeno mapo korenske mape spletnega strežnika." #: templates/admin.php:29 msgid "Setup Warning" @@ -237,7 +237,7 @@ msgstr "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da #: templates/admin.php:92 msgid "Cron" -msgstr "Cron" +msgstr "Periodično opravilo" #: templates/admin.php:101 msgid "Execute one task with each page loaded" @@ -308,7 +308,7 @@ msgstr "Zahtevaj šifrirano povezovanje odjemalcev v oblak ownCloud" msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "Prijava mora biti vzpostavljena z uporabo protokolo HTTPS za omogočanje šifriranja SSL." +msgstr "Prijava mora biti vzpostavljena z uporabo protokola HTTPS za omogočanje šifriranja SSL." #: templates/admin.php:195 msgid "Log" @@ -322,11 +322,15 @@ msgstr "Raven beleženja" msgid "More" msgstr "Več" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Manj" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Različica" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index 829fe4d8a16d395963193094598305ff75a90d97..dc42b6b156404617e9baf08f5f654e884ab495f0 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-10 00:05+0100\n" -"PO-Revision-Date: 2013-03-09 19:30+0000\n" -"Last-Translator: mateju <>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index 93dbe6a732b747001d5f0809d98c4b251742c61b..1179d65ec7c34ffa30c774f90f26442843116f89 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,584 +21,586 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "Përdoruesi %s ndau me ju një skedar" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "Përdoruesi %s ndau me ju një dosje" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "Përdoruesi %s ndau me ju skedarin \"%s\". Ky skedar është gati për shkarkim nga këtu: %s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "Përdoruesi %s ndau me ju dosjen \"%s\". Kjo dosje është gati për shkarkim nga këto: %s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "Mungon tipi i kategorisë." #: ajax/vcategories/add.php:30 msgid "No category to add?" -msgstr "" +msgstr "Asnjë kategori për të shtuar?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "Kjo kategori tashmë ekziston: %s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "Mungon tipi i objektit." #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "Mungon ID-ja e %s." #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "" +msgstr "Veprim i gabuar gjatë shtimit të %s tek të parapëlqyerat." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "" +msgstr "Nuk selektuar për tu eliminuar asnjë kategori." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "" +msgstr "Veprim i gabuar gjatë heqjes së %s nga të parapëlqyerat." #: js/config.php:34 msgid "Sunday" -msgstr "" +msgstr "E djelë" #: js/config.php:35 msgid "Monday" -msgstr "" +msgstr "E hënë" #: js/config.php:36 msgid "Tuesday" -msgstr "" +msgstr "E martë" #: js/config.php:37 msgid "Wednesday" -msgstr "" +msgstr "E mërkurë" #: js/config.php:38 msgid "Thursday" -msgstr "" +msgstr "E enjte" #: js/config.php:39 msgid "Friday" -msgstr "" +msgstr "E premte" #: js/config.php:40 msgid "Saturday" -msgstr "" +msgstr "E shtunë" #: js/config.php:45 msgid "January" -msgstr "" +msgstr "Janar" #: js/config.php:46 msgid "February" -msgstr "" +msgstr "Shkurt" #: js/config.php:47 msgid "March" -msgstr "" +msgstr "Mars" #: js/config.php:48 msgid "April" -msgstr "" +msgstr "Prill" #: js/config.php:49 msgid "May" -msgstr "" +msgstr "Maj" #: js/config.php:50 msgid "June" -msgstr "" +msgstr "Qershor" #: js/config.php:51 msgid "July" -msgstr "" +msgstr "Korrik" #: js/config.php:52 msgid "August" -msgstr "" +msgstr "Gusht" #: js/config.php:53 msgid "September" -msgstr "" +msgstr "Shtator" #: js/config.php:54 msgid "October" -msgstr "" +msgstr "Tetor" #: js/config.php:55 msgid "November" -msgstr "" +msgstr "Nëntor" #: js/config.php:56 msgid "December" -msgstr "" +msgstr "Dhjetor" #: js/js.js:286 msgid "Settings" -msgstr "" +msgstr "Parametrat" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" -msgstr "" +msgstr "sekonda më parë" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" -msgstr "" +msgstr "1 minutë më parë" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" -msgstr "" +msgstr "{minutes} minuta më parë" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" -msgstr "" +msgstr "1 orë më parë" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours} orë më parë" -#: js/js.js:784 +#: js/js.js:723 msgid "today" -msgstr "" +msgstr "sot" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" -msgstr "" +msgstr "dje" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" -msgstr "" +msgstr "{days} ditë më parë" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" -msgstr "" +msgstr "muajin e shkuar" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" -msgstr "" +msgstr "{months} muaj më parë" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" -msgstr "" +msgstr "muaj më parë" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" -msgstr "" +msgstr "vitin e shkuar" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" -msgstr "" +msgstr "vite më parë" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Në rregull" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" -msgstr "" +msgstr "Anulo" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Zgjidh" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" -msgstr "" +msgstr "Po" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Jo" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "Nuk është specifikuar tipi i objektit." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" -msgstr "" +msgstr "Veprim i gabuar" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "Nuk është specifikuar emri i app-it." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "Skedari i nevojshëm {file} nuk është i instaluar!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "Ndarë" #: js/share.js:90 msgid "Share" -msgstr "" +msgstr "Nda" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" -msgstr "" +msgstr "Veprim i gabuar gjatë ndarjes" #: js/share.js:136 msgid "Error while unsharing" -msgstr "" +msgstr "Veprim i gabuar gjatë heqjes së ndarjes" #: js/share.js:143 msgid "Error while changing permissions" -msgstr "" +msgstr "Veprim i gabuar gjatë ndryshimit të lejeve" #: js/share.js:152 msgid "Shared with you and the group {group} by {owner}" -msgstr "" +msgstr "Ndarë me ju dhe me grupin {group} nga {owner}" #: js/share.js:154 msgid "Shared with you by {owner}" -msgstr "" +msgstr "Ndarë me ju nga {owner}" #: js/share.js:159 msgid "Share with" -msgstr "" +msgstr "Nda me" #: js/share.js:164 msgid "Share with link" -msgstr "" +msgstr "Nda me lidhje" #: js/share.js:167 msgid "Password protect" -msgstr "" +msgstr "Mbro me kod" #: js/share.js:169 templates/installation.php:54 templates/login.php:35 msgid "Password" -msgstr "" +msgstr "Kodi" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "Dërgo email me lidhjen" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "Dërgo" #: js/share.js:178 msgid "Set expiration date" -msgstr "" +msgstr "Cakto datën e përfundimit" #: js/share.js:179 msgid "Expiration date" -msgstr "" +msgstr "Data e përfundimit" #: js/share.js:211 msgid "Share via email:" -msgstr "" +msgstr "Nda me email:" #: js/share.js:213 msgid "No people found" -msgstr "" +msgstr "Nuk u gjet asnjë person" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" -msgstr "" +msgstr "Rindarja nuk lejohet" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" -msgstr "" +msgstr "Ndarë në {item} me {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" -msgstr "" +msgstr "Hiq ndarjen" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" -msgstr "" +msgstr "mund të ndryshosh" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" -msgstr "" +msgstr "kontrollimi i hyrjeve" -#: js/share.js:314 +#: js/share.js:325 msgid "create" -msgstr "" +msgstr "krijo" -#: js/share.js:317 +#: js/share.js:328 msgid "update" -msgstr "" +msgstr "azhurno" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" -msgstr "" +msgstr "elimino" -#: js/share.js:323 +#: js/share.js:334 msgid "share" -msgstr "" +msgstr "nda" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" -msgstr "" +msgstr "Mbrojtur me kod" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" -msgstr "" +msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" -msgstr "" +msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "Duke dërguar..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "Email-i u dërgua" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem komunitetin ownCloud." #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i." #: lostpassword/controller.php:48 msgid "ownCloud password reset" -msgstr "" +msgstr "Rivendosja e kodit të ownCloud-it" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "" +msgstr "Përdorni lidhjen në vijim për të rivendosur kodin: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." -msgstr "" +msgstr "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin." #: lostpassword/templates/lostpassword.php:5 msgid "Reset email send." -msgstr "" +msgstr "Emaili i rivendosjes u dërgua." #: lostpassword/templates/lostpassword.php:8 msgid "Request failed!" -msgstr "" +msgstr "Kërkesa dështoi!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 #: templates/login.php:28 msgid "Username" -msgstr "" +msgstr "Përdoruesi" #: lostpassword/templates/lostpassword.php:14 msgid "Request reset" -msgstr "" +msgstr "Bëj kërkesë për rivendosjen" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "" +msgstr "Kodi yt u rivendos" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" -msgstr "" +msgstr "Tek faqja e hyrjes" #: lostpassword/templates/resetpassword.php:8 msgid "New password" -msgstr "" +msgstr "Kodi i ri" #: lostpassword/templates/resetpassword.php:11 msgid "Reset password" -msgstr "" +msgstr "Rivendos kodin" #: strings.php:5 msgid "Personal" -msgstr "" +msgstr "Personale" #: strings.php:6 msgid "Users" -msgstr "" +msgstr "Përdoruesit" #: strings.php:7 msgid "Apps" -msgstr "" +msgstr "App" #: strings.php:8 msgid "Admin" -msgstr "" +msgstr "Admin" #: strings.php:9 msgid "Help" -msgstr "" +msgstr "Ndihmë" #: templates/403.php:12 msgid "Access forbidden" -msgstr "" +msgstr "Ndalohet hyrja" #: templates/404.php:12 msgid "Cloud not found" -msgstr "" +msgstr "Cloud-i nuk u gjet" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" -msgstr "" +msgstr "Ndrysho kategoritë" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "" +msgstr "Shto" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 msgid "Security Warning" -msgstr "" +msgstr "Paralajmërim sigurie" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Versioni juaj i PHP-së është i cënueshëm nga sulmi NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Ju lutem azhurnoni instalimin tuaj të PHP-së që të përdorni ownCloud-in në mënyrë të sigurt." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "" +msgstr "Nuk disponohet asnjë krijues numrash të rastësishëm, ju lutem aktivizoni shtesën PHP OpenSSL." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "" +msgstr "Pa një krijues numrash të rastësishëm të sigurt një person i huaj mund të jetë në gjendje të parashikojë kodin dhe të marri llogarinë tuaj." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "Dosja dhe skedarët e të dhënave tuaja mbase janë të arritshme nga interneti sepse skedari .htaccess nuk po punon." #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni dokumentacionin." #: templates/installation.php:44 msgid "Create an admin account" -msgstr "" +msgstr "Krijo një llogari administruesi" #: templates/installation.php:62 msgid "Advanced" -msgstr "" +msgstr "Të përparuara" #: templates/installation.php:64 msgid "Data folder" -msgstr "" +msgstr "Emri i dosjes" #: templates/installation.php:73 msgid "Configure the database" -msgstr "" +msgstr "Konfiguro database-in" #: templates/installation.php:78 templates/installation.php:90 #: templates/installation.php:101 templates/installation.php:112 #: templates/installation.php:124 msgid "will be used" -msgstr "" +msgstr "do të përdoret" #: templates/installation.php:136 msgid "Database user" -msgstr "" +msgstr "Përdoruesi i database-it" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" -msgstr "" +msgstr "Kodi i database-it" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" -msgstr "" +msgstr "Emri i database-it" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" -msgstr "" +msgstr "Tablespace-i i database-it" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" -msgstr "" +msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" -msgstr "" +msgstr "Mbaro setup-in" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "" +msgstr "shërbime web nën kontrollin tënd" #: templates/layout.user.php:58 msgid "Log out" -msgstr "" +msgstr "Dalje" #: templates/login.php:10 msgid "Automatic logon rejected!" -msgstr "" +msgstr "Hyrja automatike u refuzua!" #: templates/login.php:11 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +msgstr "Nqse nuk keni ndryshuar kodin kohët e fundit, llogaria juaj mund të jetë komprometuar." #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "" +msgstr "Ju lutemi, ndryshoni kodin për ta siguruar përsëri llogarinë tuaj." #: templates/login.php:19 msgid "Lost your password?" -msgstr "" +msgstr "Ke humbur kodin?" #: templates/login.php:41 msgid "remember" -msgstr "" +msgstr "kujto" #: templates/login.php:43 msgid "Log in" -msgstr "" +msgstr "Hyrje" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "Hyrje alternative" #: templates/part.pagenavi.php:3 msgid "prev" -msgstr "" +msgstr "mbrapa" #: templates/part.pagenavi.php:20 msgid "next" -msgstr "" +msgstr "para" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "Po azhurnoj ownCloud-in me versionin %s. Mund të zgjasi pak." diff --git a/l10n/sq/files.po b/l10n/sq/files.po index fa55c5d695270693c2bc804a7a3170e3703977c8..3915e15310117e798f36cdd0b5d03770da3f598e 100644 --- a/l10n/sq/files.po +++ b/l10n/sq/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2011-08-13 02:19+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,296 +21,295 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "%s nuk u spostua" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Nuk është i mundur riemërtimi i skedarit" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" -msgstr "" +msgstr "Nuk pati veprime të gabuara, skedari u ngarkua me sukses" #: ajax/upload.php:27 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " -msgstr "" +msgstr "Skedari i ngarkuar tejkalon udhëzimin upload_max_filesize tek php.ini:" #: ajax/upload.php:29 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "" +msgstr "Skedari i ngarkuar tejkalon udhëzimin MAX_FILE_SIZE të specifikuar në formularin HTML" #: ajax/upload.php:30 msgid "The uploaded file was only partially uploaded" -msgstr "" +msgstr "Skedari i ngarkuar u ngarkua vetëm pjesërisht" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "" +msgstr "Nuk u ngarkua asnjë skedar" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "" +msgstr "Një dosje e përkohshme nuk u gjet" #: ajax/upload.php:33 msgid "Failed to write to disk" -msgstr "" +msgstr "Ruajtja në disk dështoi" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Nuk ka mbetur hapësirë memorizimi e mjaftueshme" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "Dosje e pavlefshme." #: appinfo/app.php:12 msgid "Files" -msgstr "" +msgstr "Skedarët" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Elimino përfundimisht" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" -msgstr "" +msgstr "Elimino" #: js/fileactions.js:193 msgid "Rename" -msgstr "" +msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" -msgstr "" +msgstr "Pezulluar" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" -msgstr "" +msgstr "{new_name} ekziston" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" -msgstr "" +msgstr "zëvëndëso" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" -msgstr "" +msgstr "sugjero një emër" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" -msgstr "" +msgstr "anulo" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" -msgstr "" +msgstr "U zëvëndësua {new_name} me {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" -msgstr "" +msgstr "anulo" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "ekzekuto operacionin e eliminimit" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "Po ngarkohet 1 skedar" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "po ngarkoj skedarët" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "'.' është emër i pavlefshëm." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Emri i skedarit nuk mund të jetë bosh." #: js/files.js:64 msgid "" "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " "allowed." -msgstr "" +msgstr "Emër i pavlefshëm, '\\', '/', '<', '>', ':', '\"', '|', '?' dhe '*' nuk lejohen." #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Hapësira juaj e memorizimit është plot, nuk mund të ngarkoni apo sinkronizoni më skedarët." #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Hapësira juaj e memorizimit është gati plot ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët janë të mëdhenj." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" +msgstr "Nuk është i mundur ngarkimi i skedarit tuaj sepse është dosje ose ka dimension 0 byte" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" -msgstr "" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Nuk ka hapësirë memorizimi e mjaftueshme" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." -msgstr "" +msgstr "Ngarkimi u anulua." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" +msgstr "Ngarkimi i skedarit është në vazhdim. Nqse ndërroni faqen tani ngarkimi do të anulohet." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "URL-i nuk mund të jetë bosh." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i." + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Veprim i gabuar" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:872 templates/index.php:70 msgid "Name" -msgstr "" +msgstr "Emri" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" -msgstr "" +msgstr "Dimensioni" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" -msgstr "" +msgstr "Modifikuar" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" -msgstr "" +msgstr "1 dosje" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" -msgstr "" +msgstr "{count} dosje" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" -msgstr "" +msgstr "1 skedar" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" -msgstr "" +msgstr "{count} skedarë" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" -msgstr "" +msgstr "Ngarko" #: templates/admin.php:5 msgid "File handling" -msgstr "" +msgstr "Trajtimi i skedarit" #: templates/admin.php:7 msgid "Maximum upload size" -msgstr "" +msgstr "Dimensioni maksimal i ngarkimit" #: templates/admin.php:10 msgid "max. possible: " -msgstr "" +msgstr "maks. i mundur:" #: templates/admin.php:15 msgid "Needed for multi-file and folder downloads." -msgstr "" +msgstr "Duhet për shkarkimin e dosjeve dhe të skedarëve" #: templates/admin.php:17 msgid "Enable ZIP-download" -msgstr "" +msgstr "Aktivizo shkarkimin e ZIP-eve" #: templates/admin.php:20 msgid "0 is unlimited" -msgstr "" +msgstr "0 është i pakufizuar" #: templates/admin.php:22 msgid "Maximum input size for ZIP files" -msgstr "" +msgstr "Dimensioni maksimal i ngarkimit të skedarëve ZIP" #: templates/admin.php:26 msgid "Save" -msgstr "" +msgstr "Ruaj" #: templates/index.php:7 msgid "New" -msgstr "" +msgstr "I ri" #: templates/index.php:10 msgid "Text file" -msgstr "" +msgstr "Skedar teksti" #: templates/index.php:12 msgid "Folder" -msgstr "" +msgstr "Dosje" #: templates/index.php:14 msgid "From link" -msgstr "" +msgstr "Nga lidhja" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Skedarë të eliminuar" #: templates/index.php:48 msgid "Cancel upload" -msgstr "" +msgstr "Anulo ngarkimin" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Nuk keni të drejta për të shkruar këtu." #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "" +msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" #: templates/index.php:76 msgid "Download" -msgstr "" +msgstr "Shkarko" #: templates/index.php:88 templates/index.php:89 msgid "Unshare" -msgstr "" +msgstr "Hiq ndarjen" #: templates/index.php:108 msgid "Upload too large" -msgstr "" +msgstr "Ngarkimi është shumë i madh" #: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "" +msgstr "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." #: templates/index.php:115 msgid "Files are being scanned, please wait." -msgstr "" +msgstr "Skedarët po analizohen, ju lutemi pritni." #: templates/index.php:118 msgid "Current scanning" -msgstr "" +msgstr "Analizimi aktual" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Po përmirësoj memorjen e filesystem-it..." diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 4cb262b3e8b4a89bd9e05c12d2b390805f2fed24..7dbf902707ea08c3c2bb9ecfc3787ea4b00b4ec5 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/files_external.po b/l10n/sq/files_external.po index 6c93f93535f44ed17e9b3d87dce4b99c80b2c42d..bb92141f3eb99f98fbf20513eae35d0fd9aa7b88 100644 --- a/l10n/sq/files_external.po +++ b/l10n/sq/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " @@ -92,12 +92,12 @@ msgstr "" #: templates/settings.php:100 msgid "Users" -msgstr "" +msgstr "Përdoruesit" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "" +msgstr "Elimino" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index addd845a30b885c49b45a532f715810d349bc637..9b729426c31d456add1687f1bc3f31950b2d026c 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,30 +20,30 @@ msgstr "" #: templates/authenticate.php:4 msgid "Password" -msgstr "" +msgstr "Kodi" #: templates/authenticate.php:6 msgid "Submit" -msgstr "" +msgstr "Parashtro" #: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" -msgstr "" +msgstr "%s ndau me ju dosjen %s" #: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" -msgstr "" +msgstr "%s ndau me ju skedarin %s" #: templates/public.php:19 templates/public.php:43 msgid "Download" -msgstr "" +msgstr "Shkarko" #: templates/public.php:40 msgid "No preview available for" -msgstr "" +msgstr "Shikimi paraprak nuk është i mundur për" #: templates/public.php:50 msgid "web services under your control" -msgstr "" +msgstr "shërbime web nën kontrollin tënd" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index e7a31b71c0245b90098ea2d99b8148e74e82861b..a2e6c8176af9d56a0210c74c5b704a6d363094be 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-01-31 16:03+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,61 +21,65 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "" +msgstr "Nuk munda ta eliminoj përfundimisht %s" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "" +msgstr "Nuk munda ta rivendos %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" -msgstr "" +msgstr "ekzekuto operacionin e rivendosjes" + +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Veprim i gabuar" #: js/trash.js:34 msgid "delete file permanently" -msgstr "" +msgstr "eliminoje përfundimisht skedarin" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Elimino përfundimisht" #: js/trash.js:174 templates/index.php:17 msgid "Name" -msgstr "" +msgstr "Emri" #: js/trash.js:175 templates/index.php:27 msgid "Deleted" -msgstr "" +msgstr "Eliminuar" #: js/trash.js:184 msgid "1 folder" -msgstr "" +msgstr "1 dosje" #: js/trash.js:186 msgid "{count} folders" -msgstr "" +msgstr "{count} dosje" #: js/trash.js:194 msgid "1 file" -msgstr "" +msgstr "1 skedar" #: js/trash.js:196 msgid "{count} files" -msgstr "" +msgstr "{count} skedarë" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "" +msgstr "Këtu nuk ka asgjë. Koshi juaj është bosh!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "Rivendos" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "" +msgstr "Elimino" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "Skedarë të eliminuar" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index a5a97e9bdb6a677209577eb364a50aec069c2b21..a2ce9ffe2b5b8288906bd8e58a3f1f62406bc334 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 7b99e8377fa167a92d1261090b79966e337d1471..9629d1e79c22d4d5f0f513dec613f39cea5e986e 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,119 +20,115 @@ msgstr "" #: app.php:349 msgid "Help" -msgstr "" +msgstr "Ndihmë" #: app.php:362 msgid "Personal" -msgstr "" +msgstr "Personale" #: app.php:373 msgid "Settings" -msgstr "" +msgstr "Parametrat" #: app.php:385 msgid "Users" -msgstr "" +msgstr "Përdoruesit" #: app.php:398 msgid "Apps" -msgstr "" +msgstr "App" #: app.php:406 msgid "Admin" -msgstr "" +msgstr "Admin" #: files.php:209 msgid "ZIP download is turned off." -msgstr "" +msgstr "Shkarimi i skedarëve ZIP është i çaktivizuar." #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "" +msgstr "Skedarët duhet të shkarkohen një nga një." #: files.php:211 files.php:244 msgid "Back to Files" -msgstr "" +msgstr "Kthehu tek skedarët" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "" +msgstr "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP." #: helper.php:228 msgid "couldn't be determined" -msgstr "" +msgstr "nuk u vendos dot" #: json.php:28 msgid "Application is not enabled" -msgstr "" +msgstr "Programi nuk është i aktivizuar." #: json.php:39 json.php:62 json.php:73 msgid "Authentication error" -msgstr "" +msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" #: json.php:51 msgid "Token expired. Please reload page." -msgstr "" +msgstr "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen." #: search/provider/file.php:17 search/provider/file.php:35 msgid "Files" -msgstr "" +msgstr "Skedarët" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "" +msgstr "Tekst" #: search/provider/file.php:29 msgid "Images" -msgstr "" +msgstr "Foto" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Cakto emrin e administratorit." #: setup.php:37 msgid "Set an admin password." -msgstr "" - -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" +msgstr "Cakto kodin e administratorit." #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "% shkruani përdoruesin e database-it." #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s shkruani emrin e database-it." #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s nuk mund të përdorni pikat tek emri i database-it" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s caktoni pozicionin (host) e database-it." #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit." #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "" +msgstr "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm." #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -139,120 +136,120 @@ msgstr "" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "Veprim i gabuar i DB-it: \"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Komanda e gabuar ishte: \"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "Përdoruesi MySQL '%s'@'localhost' ekziston." #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Eliminoni këtë përdorues nga MySQL" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "Përdoruesi MySQL '%s'@'%%' ekziston" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "Eliminoni këtë përdorues nga MySQL." #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s" #: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." #: template.php:113 msgid "seconds ago" -msgstr "" +msgstr "sekonda më parë" #: template.php:114 msgid "1 minute ago" -msgstr "" +msgstr "1 minutë më parë" #: template.php:115 #, php-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minuta më parë" #: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "1 orë më parë" #: template.php:117 #, php-format msgid "%d hours ago" -msgstr "" +msgstr "%d orë më parë" #: template.php:118 msgid "today" -msgstr "" +msgstr "sot" #: template.php:119 msgid "yesterday" -msgstr "" +msgstr "dje" #: template.php:120 #, php-format msgid "%d days ago" -msgstr "" +msgstr "%d ditë më parë" #: template.php:121 msgid "last month" -msgstr "" +msgstr "muajin e shkuar" #: template.php:122 #, php-format msgid "%d months ago" -msgstr "" +msgstr "%d muaj më parë" #: template.php:123 msgid "last year" -msgstr "" +msgstr "vitin e shkuar" #: template.php:124 msgid "years ago" -msgstr "" +msgstr "vite më parë" #: updater.php:78 #, php-format msgid "%s is available. Get more information" -msgstr "" +msgstr "%s është i disponueshëm. Informohuni këtu" #: updater.php:81 msgid "up to date" -msgstr "" +msgstr "i azhornuar" #: updater.php:84 msgid "updates check is disabled" -msgstr "" +msgstr "kontrollimi i azhurnimeve është i çaktivizuar" #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" -msgstr "" +msgstr "Kategoria \"%s\" nuk u gjet" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index b574c00074e305e76f21c038be5483a40d7e1730..0ea938feaf70c96e9bc28f7ece5607a005b1291a 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2011-07-25 16:05+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,7 +25,7 @@ msgstr "" #: ajax/changedisplayname.php:23 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "" +msgstr "Veprim i gabuar gjatë vërtetimit të identitetit" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" @@ -100,6 +101,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Veprim i gabuar" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,56 +113,52 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" -msgstr "" +msgstr "anulo" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" -msgstr "" +msgstr "Elimino" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -167,7 +168,7 @@ msgstr "" #: templates/admin.php:15 msgid "Security Warning" -msgstr "" +msgstr "Paralajmërim sigurie" #: templates/admin.php:18 msgid "" @@ -186,12 +187,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -316,11 +317,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -124,7 +124,7 @@ msgstr "" #: templates/settings.php:46 msgid "Password" -msgstr "" +msgstr "Kodi" #: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." @@ -330,4 +330,4 @@ msgstr "" #: templates/settings.php:99 msgid "Help" -msgstr "" +msgstr "Ndihmë" diff --git a/l10n/sq/user_webdavauth.po b/l10n/sq/user_webdavauth.po index 1324665d52b15a00cac3887dcd62970a668e17a6..9449bd231d54fe5bbcd0b3170def20e838bf0d39 100644 --- a/l10n/sq/user_webdavauth.po +++ b/l10n/sq/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 209bd1e19e841d435b944c1891544f7feb59e368..e9760003433a3792669b4161a14895756edf0ae6 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -163,86 +163,88 @@ msgstr "Децембар" msgid "Settings" msgstr "Подешавања" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "пре 1 минут" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "пре {minutes} минута" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "Пре једног сата" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "Пре {hours} сата (сати)" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "данас" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "јуче" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "пре {days} дана" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "Пре {months} месеца (месеци)" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "месеци раније" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "прошле године" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "година раније" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Одабери" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "У реду" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Откажи" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Не" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Одабери" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Да" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "У реду" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Не" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Врста објекта није подешена." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Грешка" @@ -262,7 +264,7 @@ msgstr "" msgid "Share" msgstr "Дељење" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Грешка у дељењу" @@ -322,59 +324,59 @@ msgstr "Подели поштом:" msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Не дели" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "може да мења" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "права приступа" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "направи" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "ажурирај" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "обриши" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "подели" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Порука је послата" @@ -534,23 +536,23 @@ msgstr "ће бити коришћен" msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Заврши подешавање" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index 12f2d04313df321ed957ef92d979c1012aa47285..18eacafc8b06bf6e509ffff0ab6f461bb17c6111 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/files.po @@ -5,13 +5,14 @@ # Translators: # Ivan Petrović , 2012. # Slobodan Terzić , 2011, 2012. +# , 2013. # , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -23,20 +24,20 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "" +msgstr "Не могу да преместим %s – датотека с овим именом већ постоји" #: ajax/move.php:27 ajax/move.php:30 #, php-format msgid "Could not move %s" -msgstr "" +msgstr "Не могу да преместим %s" #: ajax/rename.php:22 ajax/rename.php:25 msgid "Unable to rename file" -msgstr "" +msgstr "Не могу да преименујем датотеку" #: ajax/upload.php:19 msgid "No file was uploaded. Unknown error" -msgstr "" +msgstr "Ниједна датотека није отпремљена услед непознате грешке" #: ajax/upload.php:26 msgid "There is no error, the file uploaded with success" @@ -71,11 +72,11 @@ msgstr "Не могу да пишем на диск" #: ajax/upload.php:51 msgid "Not enough storage available" -msgstr "" +msgstr "Нема довољно простора" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." -msgstr "" +msgstr "неисправна фасцикла." #: appinfo/app.php:12 msgid "Files" @@ -83,7 +84,7 @@ msgstr "Датотеке" #: js/fileactions.js:125 msgid "Delete permanently" -msgstr "" +msgstr "Обриши за стално" #: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" @@ -93,46 +94,53 @@ msgstr "Обриши" msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "На чекању" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} већ постоји" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "замени" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "предложи назив" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "откажи" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "замењено {new_name} са {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "опозови" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" -msgstr "" +msgstr "обриши" + +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "Отпремам 1 датотеку" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "датотеке се отпремају" #: js/files.js:52 msgid "'.' is an invalid file name." -msgstr "" +msgstr "Датотека „.“ је неисправног имена." #: js/files.js:56 msgid "File name cannot be empty." -msgstr "" +msgstr "Име датотеке не може бити празно." #: js/files.js:64 msgid "" @@ -142,80 +150,72 @@ msgstr "Неисправан назив. Следећи знакови нису #: js/files.js:78 msgid "Your storage is full, files can not be updated or synced anymore!" -msgstr "" +msgstr "Ваше складиште је пуно. Датотеке више не могу бити ажуриране ни синхронизоване." #: js/files.js:82 msgid "Your storage is almost full ({usedSpacePercent}%)" -msgstr "" +msgstr "Ваше складиште је скоро па пуно ({usedSpacePercent}%)" #: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "" +msgstr "Припремам преузимање. Ово може да потраје ако су датотеке велике." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Не могу да отпремим датотеку као фасциклу или она има 0 бајтова" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Грешка при отпремању" - -#: js/files.js:274 -msgid "Close" -msgstr "Затвори" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "Отпремам 1 датотеку" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "Отпремам {count} датотеке/а" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Нема довољно простора" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Отпремање је прекинуто." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Отпремање датотеке је у току. Ако сада напустите страницу, прекинућете отпремање." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." -msgstr "" +msgstr "Адреса не може бити празна." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" +msgstr "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Грешка" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Назив" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Величина" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Измењено" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 фасцикла" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} фасцикле/и" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 датотека" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} датотеке/а" @@ -273,7 +273,7 @@ msgstr "Са везе" #: templates/index.php:42 msgid "Deleted files" -msgstr "" +msgstr "Обрисане датотеке" #: templates/index.php:48 msgid "Cancel upload" @@ -281,7 +281,7 @@ msgstr "Прекини отпремање" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "" +msgstr "Овде немате дозволу за писање." #: templates/index.php:62 msgid "Nothing in here. Upload something!" @@ -315,4 +315,4 @@ msgstr "Тренутно скенирање" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "" +msgstr "Дограђујем кеш система датотека…" diff --git a/l10n/sr/files_encryption.po b/l10n/sr/files_encryption.po index 4f38bb711f920edeb8ec52ab355e7f830ebcc6a3..2eae48fdc6c484aa9c51fe408c3598172767e768 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sr/files_external.po b/l10n/sr/files_external.po index f9dec54fe8b2e11961a8d4f6972bb4f641546e46..476522e9fbd903f40353c829e69ac510d8e688eb 100644 --- a/l10n/sr/files_external.po +++ b/l10n/sr/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index d2e787a42cddc76c281c99a06c24ccb52d06ded8..8c455cac47476cf8aaa45a0cffc1cad5d49ae3f9 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-07 00:07+0100\n" -"PO-Revision-Date: 2013-02-06 17:30+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -25,24 +25,24 @@ msgstr "Лозинка" msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Преузми" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index b02e31e10988f7bb047c967682224b3cf8990cd1..69d8ab3bf2addc494e02b64d16abc1daf010b996 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "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" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -32,13 +32,17 @@ msgstr "" msgid "perform restore operation" msgstr "врати у претходно стање" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Грешка" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" #: js/trash.js:121 msgid "Delete permanently" -msgstr "" +msgstr "Обриши за стално" #: js/trash.js:174 templates/index.php:17 msgid "Name" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 402e0c7165b11e81e1874dfd78a3bb67445f74e8..b878bee5636bab24f623962f2b8260d6888b0a59 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 2238c037e6abfe10405535dc08183befec837dcc..95f58fe7f5b2b3f695594cb223f23f08a596ec27 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/lib.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivan Petrović , 2012-2013. -# , 2013. -# , 2012. +# Ivan Petrović , 2012-2013 +# Rancher , 2013 +# Rancher , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -183,12 +179,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Погледајте водиче за инсталацију." #: template.php:113 msgid "seconds ago" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 6e248a0cdde39e3d018f4eb2a6485096bf381b97..4faad27c2ff45b2905a30f8e689853d5d1207f32 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -5,12 +5,13 @@ # Translators: # , 2012. # Slobodan Terzić , 2011, 2012. +# , 2013. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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,7 +31,7 @@ msgstr "Грешка при аутентификацији" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "Не могу да променим име за приказ" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -84,84 +85,84 @@ msgstr "Не могу да уклоним корисника из групе %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "Не могу да ажурирам апликацију." #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "Ажурирај на {appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" msgstr "Искључи" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Укључи" #: js/apps.js:55 msgid "Please wait...." -msgstr "" +msgstr "Сачекајте…" -#: js/apps.js:84 -msgid "Updating...." -msgstr "" - -#: js/apps.js:87 -msgid "Error while updating app" -msgstr "" - -#: js/apps.js:87 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" msgstr "Грешка" #: js/apps.js:90 +msgid "Updating...." +msgstr "Ажурирам…" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "Грешка при ажурирању апликације" + +#: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "Ажурирано" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Чување у току..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" -msgstr "" +msgstr "обрисано" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "опозови" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "Не могу да уклоним корисника" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групе" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Управник групе" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Обриши" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" -msgstr "" +msgstr "додај групу" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "Морате унети исправно корисничко име" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "Грешка при прављењу корисника" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "Морате унети исправну лозинку" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -182,32 +183,32 @@ msgstr "Тренутно су ваши подаци и датотеке дост #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Упозорење о подешавању" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Погледајте водиче за инсталацију." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "Недостаје модул „fileinfo“" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "Локализација не ради" #: templates/admin.php:63 #, php-format @@ -219,7 +220,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "Веза с интернетом не ради" #: templates/admin.php:78 msgid "" @@ -237,7 +238,7 @@ msgstr "" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Изврши један задатак са сваком учитаном страницом" #: templates/admin.php:111 msgid "" @@ -253,52 +254,52 @@ msgstr "" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "Дељење" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "Омогући API Share" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "Дозвољава апликацијама да користе API Share" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "Дозволи везе" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "Дозволи корисницима да деле ставке с другима путем веза" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "Дозволи поновно дељење" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Дозволи корисницима да поновно деле ставке с другима" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "Дозволи корисницима да деле са било ким" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "Безбедност" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "Наметни HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе." #: templates/admin.php:185 msgid "" @@ -308,21 +309,25 @@ msgstr "" #: templates/admin.php:195 msgid "Log" -msgstr "" +msgstr "Бележење" #: templates/admin.php:196 msgid "Log level" -msgstr "" +msgstr "Ниво бележења" #: templates/admin.php:223 msgid "More" -msgstr "" +msgstr "Више" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Мање" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" -msgstr "" +msgstr "Верзија" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the %s од дозвољен #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Преузмите апликације ради синхронизовања датотека" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -419,19 +424,19 @@ msgstr "Измени лозинку" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "Име за приказ" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "Ваше име за приказ је промењено" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "Не могу да променим ваше име за приказ" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "Промени име за приказ" #: templates/personal.php:70 msgid "Email" @@ -455,15 +460,15 @@ msgstr " Помозите у превођењу" #: templates/personal.php:91 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "Корисничко име" #: templates/users.php:32 msgid "Create" @@ -471,11 +476,11 @@ msgstr "Направи" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Подразумевано складиште" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" -msgstr "" +msgstr "Неограничено" #: templates/users.php:59 templates/users.php:154 msgid "Other" @@ -483,16 +488,16 @@ msgstr "Друго" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "Складиште" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "промени име за приказ" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "постави нову лозинку" #: templates/users.php:134 msgid "Default" -msgstr "" +msgstr "Подразумевано" diff --git a/l10n/sr/user_ldap.po b/l10n/sr/user_ldap.po index cf42fd657318433e2d8c85035e4dc0a309b5ca62..5ab18046b0cea79f60316d9c6707043163fa7ffb 100644 --- a/l10n/sr/user_ldap.po +++ b/l10n/sr/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/sr/user_webdavauth.po b/l10n/sr/user_webdavauth.po index 764d45ef4080787a054b1ebfebca12c64df88417..c72a84c03cb0d4743918d0e5567c498572cb6de3 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-03 00:04+0100\n" -"PO-Revision-Date: 2013-02-02 22:10+0000\n" -"Last-Translator: Rancher \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -26,7 +26,7 @@ msgstr "WebDAV провера идентитета" msgid "URL: http://" msgstr "Адреса: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 7980d128e39a52fa9ee1ff9af434e45df993c55f..e3b9468ad2f451a0ef7ffc771b6a230092275022 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -161,76 +161,76 @@ msgstr "Decembar" msgid "Settings" msgstr "Podešavanja" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Otkaži" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -238,9 +238,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "će biti korišćen" msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Završi podešavanje" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index 67b2fed9b72bef5e383c12ff349c670c752e1337..20a4cf13bcee83013a8a9dfabd19b5a2e139097b 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -71,7 +71,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -91,39 +91,46 @@ msgstr "Obriši" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:274 -msgid "Close" -msgstr "Zatvori" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Ime" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Veličina" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index a34c90f6c0de4dcc6d561c436af8fbebdf0cb94e..9eb93b9f9384eb19dd6b4bf3bcad5c6b47ffcd6b 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/sr@latin/files_external.po b/l10n/sr@latin/files_external.po index ccf11b6140c1cdc77776b000a8cb0c7a28b2c535..fbfb36951c0b5368278d914373e59d7b975dbef1 100644 --- a/l10n/sr@latin/files_external.po +++ b/l10n/sr@latin/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index cd27899cfcbfc461492819397f884a56fc9aa3bb..778a78eb8c0a7327956c65641baace880cacbedc 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/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-22 01:14+0200\n" -"PO-Revision-Date: 2012-09-21 23:15+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 65e0a7afc15ddc1804a0c7c52fe6481c0bb01db7..5743501ec1f73c75ab046339abcdb1b518e56ed7 100644 --- a/l10n/sr@latin/files_trashbin.po +++ b/l10n/sr@latin/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "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" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index 53af96aaac6e7066b540a4a3aed4cba5cca1027d..7e54c05a933048bd58290a130799ed8cee9804c9 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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index b8283201e1bcff5ea63fafef7046e44321cf0dee..2cc4b44f0fe1f337e7489d7f8b2ac5aa49d721bf 100644 --- a/l10n/sr@latin/lib.po +++ b/l10n/sr@latin/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:20+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:04+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" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sr@latin/settings.po b/l10n/sr@latin/settings.po index 02323fa5e0556f5140fdfa019159b982ed8d070e..6b6e5528039ad747e9282fe5dfb55bb473384181 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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -93,7 +93,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -101,64 +101,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupe" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Obriši" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -317,11 +317,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "Pomoć" diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index 246116723c6910e7a2517f1316fa74d89d36cfd0..44c82fe664f3fc14a0c82d46744dd8ce7c85f755 100644 --- a/l10n/sr@latin/user_webdavauth.po +++ b/l10n/sr@latin/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sv/core.po b/l10n/sv/core.po index f0ee889be0a171a62321f2bd50d0184bd25d8856..a176c33235e3832c0dfd589d9563bef4492c3a8e 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -167,86 +167,88 @@ msgstr "December" msgid "Settings" msgstr "Inställningar" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 minut sedan" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} minuter sedan" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 timme sedan" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} timmar sedan" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "i dag" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "i går" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} dagar sedan" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "förra månaden" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} månader sedan" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "månader sedan" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "förra året" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "år sedan" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Välj" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Avbryt" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Nej" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Välj" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Ja" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Nej" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Objekttypen är inte specificerad." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Fel" @@ -266,7 +268,7 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Fel vid delning" @@ -326,59 +328,59 @@ msgstr "Dela via e-post:" msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "kan redigera" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "skapa" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "uppdatera" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "radera" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "dela" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "E-post skickat" @@ -481,11 +483,11 @@ msgstr "Säkerhetsvarning" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Uppdatera din PHP-installation för att använda ownCloud säkert." #: templates/installation.php:32 msgid "" @@ -538,23 +540,23 @@ msgstr "kommer att användas" msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Avsluta installation" diff --git a/l10n/sv/files.po b/l10n/sv/files.po index 66866dc075a1bbae80cfe1374244c534e32df709..f18dad221465fe05652e679faaebc0de1f9a7f4a 100644 --- a/l10n/sv/files.po +++ b/l10n/sv/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \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" @@ -77,7 +77,7 @@ msgstr "Misslyckades spara till disk" msgid "Not enough storage available" msgstr "Inte tillräckligt med lagringsutrymme tillgängligt" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Felaktig mapp." @@ -97,39 +97,46 @@ msgstr "Radera" msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Väntar" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} finns redan" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "ersätt" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "föreslå namn" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "avbryt" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "ersatt {new_name} med {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "ångra" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "utför raderingen" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 filuppladdning" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' är ett ogiltigt filnamn." @@ -158,68 +165,60 @@ msgid "" "big." msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Kunde inte ladda upp dina filer eftersom det antingen är en mapp eller har 0 bytes." -#: js/files.js:263 -msgid "Upload Error" -msgstr "Uppladdningsfel" - -#: js/files.js:274 -msgid "Close" -msgstr "Stäng" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Inte tillräckligt med utrymme tillgängligt" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 filuppladdning" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} filer laddas upp" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Uppladdning avbruten." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL kan inte vara tom." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Fel" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Namn" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Storlek" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Ändrad" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 mapp" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} mappar" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 fil" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} filer" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index b401db609de32d1be23dd421e1b4f90b92d7ebbb..a1c717ce9fc4258c958cd0bfce755ae271165786 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sv/files_external.po b/l10n/sv/files_external.po index 3873222cace19d340b9db58e56de2406d62ddcdf..e58feaa6ceb70dc0070b9360e88a493e2b44226c 100644 --- a/l10n/sv/files_external.po +++ b/l10n/sv/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -39,13 +39,13 @@ msgstr "Ange en giltig Dropbox nyckel och hemlighet." msgid "Error configuring Google Drive storage" msgstr "Fel vid konfigurering av Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varning: \"smb-klienten\" är inte installerad. Montering av CIFS/SMB delningar är inte möjligt. Kontakta din systemadministratör för att få den installerad." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 8b3fffa739269256aa88879dba82348010011bc1..c8e79bb65dfc24dfbd5ff4af21c739cbab1a6a65 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/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-24 02:01+0200\n" -"PO-Revision-Date: 2012-09-23 11:37+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \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" @@ -26,24 +26,24 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:11 +#: templates/public.php:13 #, 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 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "webbtjänster under din kontroll" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 7bcef3c0308d6f0d4cfddefea822a3a1893a082e..c917c8bda1905f501348f0bf0c9b792ae2c1353a 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -19,12 +19,12 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Kunde inte radera %s permanent" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" @@ -33,6 +33,10 @@ msgstr "Kunde inte återställa %s" msgid "perform restore operation" msgstr "utför återställning" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Fel" + #: js/trash.js:34 msgid "delete file permanently" msgstr "radera filen permanent" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index f092111cf652b4f081793c8d2f89476fd922c26b..ada122d58b192ed2e709452200e723f91bea922d 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -41,17 +41,17 @@ msgstr "misslyckades" msgid "File %s could not be reverted to version %s" msgstr "Filen %s kunde inte återställas till version %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Inga gamla versioner finns tillgängliga" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Ingen sökväg angiven" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "Versioner" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 9ec9755c6ae1b669ca3fb440ffb7394d48bcc3d1..13887eda440b4b846a2048f4e3d649995e6f48d2 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Magnus Höglund , 2012-2013. -# , 2012. +# Magnus Höglund , 2012-2013 +# Magnus Höglund , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -95,10 +95,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index bf1d01a7e9595e65ef4b756e165f2d8c78e2cb7e..78e13f62c260251d0592c13dd55f47357115b7d2 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-07 00:16+0100\n" -"PO-Revision-Date: 2013-03-06 01:50+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \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" @@ -101,7 +101,7 @@ msgstr "Uppdaterar till {appversion}" msgid "Disable" msgstr "Deaktivera" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Aktivera" @@ -109,64 +109,64 @@ msgstr "Aktivera" msgid "Please wait...." msgstr "Var god vänta..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Fel" + +#: js/apps.js:90 msgid "Updating...." msgstr "Uppdaterar..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Fel uppstod vid uppdatering av appen" -#: js/apps.js:87 -msgid "Error" -msgstr "Fel" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Uppdaterad" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Sparar..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "raderad" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "ångra" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "Kan inte ta bort användare" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Grupper" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Gruppadministratör" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Radera" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "lägg till grupp" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Ett giltigt användarnamn måste anges" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Fel vid skapande av användare" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Ett giltigt lösenord måste anges" @@ -189,7 +189,7 @@ msgstr "Din datakatalog och dina filer är förmodligen tillgängliga från Inte #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "Installationsvarning" #: templates/admin.php:32 msgid "" @@ -210,7 +210,7 @@ msgstr "Modulen \"fileinfo\" saknas" msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." #: templates/admin.php:58 msgid "Locale not working" @@ -325,11 +325,15 @@ msgstr "" msgid "More" msgstr "Mer" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Mindre" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Version" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the %s av tillgängliga %s" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Skaffa appar för att synkronisera dina filer" #: templates/personal.php:26 msgid "Show First Run Wizard again" diff --git a/l10n/sv/user_ldap.po b/l10n/sv/user_ldap.po index 5c0f9e8a18ba7e18cbd6bd464cc1dd67d52f4574..f75fdc8da007e98a5a45ddff8c6a9318863a41cb 100644 --- a/l10n/sv/user_ldap.po +++ b/l10n/sv/user_ldap.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Lokal_Profil \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \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" @@ -239,7 +239,7 @@ msgstr "Rekommenderas inte, använd bara för test. " #: templates/settings.php:78 msgid "Cache Time-To-Live" -msgstr "" +msgstr "Cache Time-To-Live" #: templates/settings.php:78 msgid "in seconds. A change empties the cache." @@ -307,7 +307,7 @@ msgstr "Kvotfält" #: templates/settings.php:93 msgid "Quota Default" -msgstr "" +msgstr "Datakvot standard" #: templates/settings.php:93 msgid "in bytes" @@ -319,7 +319,7 @@ msgstr "E-postfält" #: templates/settings.php:95 msgid "User Home Folder Naming Rule" -msgstr "" +msgstr "Namnregel för hemkatalog" #: templates/settings.php:95 msgid "" @@ -329,7 +329,7 @@ msgstr "Lämnas tomt för användarnamn (standard). Ange annars ett LDAP/AD-attr #: templates/settings.php:99 msgid "Test Configuration" -msgstr "" +msgstr "Testa konfigurationen" #: templates/settings.php:99 msgid "Help" diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index 98475a8bd9775afb679e26b017dc40cc6af859f8..0cb54a97da1e6dc12ac5bc776cbe0ab7e62a6cba 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-21 15:25+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \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" @@ -26,7 +26,7 @@ msgstr "WebDAV Autentisering" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index f5cc1f2d3e816dd344e35af31737dc12fa3a9fb4..8a88331b36568ce95138f882ba0e9e6b7a1995a7 100644 --- a/l10n/sw_KE/core.po +++ b/l10n/sw_KE/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: 2013-03-22 00:03+0100\n" -"PO-Revision-Date: 2013-03-21 23:03+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -531,23 +533,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index c6160aff80e4e8b5b7236cd2e8092f1c5e2e3ddc..5dd812bc1b0a8dbc4e39a76ee26ca8c9e4c1740d 100644 --- a/l10n/sw_KE/files.po +++ b/l10n/sw_KE/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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/sw_KE/files_encryption.po b/l10n/sw_KE/files_encryption.po index 210f1a0455645b7515be7ff18031addc99970243..2d586daf24e0f2b3249fdbc5f94bef821e44a2ed 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/sw_KE/files_external.po b/l10n/sw_KE/files_external.po index 2054bbb707ea136765c9be0ed94706f9035c26c9..f61afed3306c800d1fb264e63203c7062f9c4653 100644 --- a/l10n/sw_KE/files_external.po +++ b/l10n/sw_KE/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index adbbc6c0f0372246d89a9c61496fd821843c15ad..324fbf714d88cac8b65d683e8b9281bf7ff94ea3 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/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: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,24 +25,24 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 441869baaba1c193a658da094ba3e3661dfd9ca5..dd07e322699fa46f566fcbacd1031016e9f96702 100644 --- a/l10n/sw_KE/files_trashbin.po +++ b/l10n/sw_KE/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po index e8849bf702f65f5b2e7f5ac1b674532c6f511af9..d0251e6a978156ade82310faf89b5ec7cf71efc5 100644 --- a/l10n/sw_KE/files_versions.po +++ b/l10n/sw_KE/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 8dbccab4ab36d5bb8ec611f227c5ebd7cd75728f..f2bae1c728f42e7dfa593522fe50736fceb5acab 100644 --- a/l10n/sw_KE/lib.po +++ b/l10n/sw_KE/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:36+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -41,19 +41,19 @@ msgstr "" msgid "Admin" msgstr "" -#: files.php:202 +#: files.php:209 msgid "ZIP download is turned off." msgstr "" -#: files.php:203 +#: files.php:210 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:204 files.php:231 +#: files.php:211 files.php:244 msgid "Back to Files" msgstr "" -#: files.php:228 +#: files.php:241 msgid "Selected files too large to generate zip file." msgstr "" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -117,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:128 setup.php:320 setup.php:365 +#: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:129 setup.php:152 setup.php:229 +#: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:151 setup.php:453 setup.php:520 +#: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:228 +#: setup.php:232 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:282 setup.php:386 setup.php:395 setup.php:413 setup.php:423 -#: setup.php:432 setup.php:461 setup.php:527 setup.php:553 setup.php:560 -#: setup.php:571 setup.php:578 setup.php:587 setup.php:595 setup.php:604 -#: setup.php:610 +#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 +#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 +#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 +#: setup.php:614 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:283 setup.php:387 setup.php:396 setup.php:414 setup.php:424 -#: setup.php:433 setup.php:462 setup.php:528 setup.php:554 setup.php:561 -#: setup.php:572 setup.php:588 setup.php:596 setup.php:605 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:299 +#: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:300 +#: setup.php:304 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:305 +#: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:306 +#: setup.php:310 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:579 setup.php:611 +#: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:631 +#: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:849 +#: setup.php:853 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:850 +#: setup.php:854 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/sw_KE/settings.po b/l10n/sw_KE/settings.po index 53be4d2d72fb9bc40c6fb34f8f3acb16b3237dbe..f85fcdca12223986260ccfafdd2730b20b8855ce 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 -msgid "Updating...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" msgstr "" -#: js/apps.js:87 -msgid "Error while updating app" +#: js/apps.js:90 +msgid "Updating...." msgstr "" -#: js/apps.js:87 -msgid "Error" +#: js/apps.js:93 +msgid "Error while updating app" msgstr "" -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "" diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po index 1e07c21030d991e6bcd4a4fc19e8f3b6a9b084da..426f5e30721bce1699149d8e299f50ff17be506e 100644 --- a/l10n/sw_KE/user_webdavauth.po +++ b/l10n/sw_KE/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-08 00:10+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 751695a1ced1359c1999aa10d4593547d23a9663..50d6af9b6bb38aeb54f1f0f166baab6dae71fa87 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -162,86 +162,88 @@ msgstr "மார்கழி" msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 நிமிடத்திற்கு முன் " -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 மணித்தியாலத்திற்கு முன்" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "இன்று" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{நாட்கள்} நாட்களுக்கு முன்" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "வருடங்களுக்கு முன்" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "தெரிவுசெய்க " +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "சரி" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "இரத்து செய்க" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "இல்லை" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "தெரிவுசெய்க " -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ஆம்" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "சரி" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "இல்லை" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "பொருள் வகை குறிப்பிடப்படவில்லை." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "வழு" @@ -261,7 +263,7 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" @@ -321,59 +323,59 @@ msgstr "மின்னஞ்சலினூடான பகிர்வு: " msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "பகிரமுடியாது" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "படைத்தல்" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "நீக்குக" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -533,23 +535,23 @@ msgstr "பயன்படுத்தப்படும்" msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index b85389d015c90305a0ba6f7220afcf0d52f5f4b6..f26efe92171ebdb6c34ef060be49c9e1961305a3 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -71,7 +71,7 @@ msgstr "வட்டில் எழுத முடியவில்லை" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -91,39 +91,46 @@ msgstr "அழிக்க" msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "நிலுவையிலுள்ள" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} ஏற்கனவே உள்ளது" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "மாற்றிடுக" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "பெயரை பரிந்துரைக்க" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "இரத்து செய்க" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "அடைவு அல்லது 0 bytes ஐ கொண்டுள்ளதால் உங்களுடைய கோப்பை பதிவேற்ற முடியவில்லை" -#: js/files.js:263 -msgid "Upload Error" -msgstr "பதிவேற்றல் வழு" - -#: js/files.js:274 -msgid "Close" -msgstr "மூடுக" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{எண்ணிக்கை} கோப்புகள் பதிவேற்றப்படுகின்றது" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "பதிவேற்றல் இரத்து செய்யப்பட்டுள்ளது" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "கோப்பு பதிவேற்றம் செயல்பாட்டில் உள்ளது. இந்தப் பக்கத்திலிருந்து வெறியேறுவதானது பதிவேற்றலை இரத்து செய்யும்." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL வெறுமையாக இருக்கமுடியாது." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "வழு" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "பெயர்" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "அளவு" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 கோப்புறை" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{எண்ணிக்கை} கோப்புறைகள்" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 கோப்பு" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{எண்ணிக்கை} கோப்புகள்" diff --git a/l10n/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index fbd878dfe562d7f0eb6e7d1f81782581bc6c2ef1..59fde5c4fe18cac638bf5facdd0b7e66d0ae0317 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/files_external.po b/l10n/ta_LK/files_external.po index 45a3d535d75bd5e9eca7731ff0224b6e043fb78a..678e681c2da76a42053a6c5fe8e8e739809dd632 100644 --- a/l10n/ta_LK/files_external.po +++ b/l10n/ta_LK/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -38,13 +38,13 @@ msgstr "தயவுசெய்து ஒரு செல்லுபடிய msgid "Error configuring Google Drive storage" msgstr "Google இயக்க சேமிப்பகத்தை தகமைப்பதில் வழு" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index cdb761631d352eedcdc7a1fbde831a995e69693e..1aef2d28b22289964b99e76e3bda80f42b8fb869 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/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-11-20 00:01+0100\n" -"PO-Revision-Date: 2012-11-19 09:00+0000\n" -"Last-Translator: suganthi \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "கடவுச்சொல்" msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index ee8095bcdc257b3e187b1a8f39402ecf6ba92f86..924bbb462ad22b0f79e7307c2b0140251fb84d4b 100644 --- a/l10n/ta_LK/files_trashbin.po +++ b/l10n/ta_LK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "வழு" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index abba80ba96bab168fa667c4ba2ff1dad52541fd8..7c7a4eee0b3b91d73950d3d77eefb90752df3d0d 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index ded8befb317f450b63152d4eb6d639f604198f2e..82184ac7e884cee562ac979ac39a0d0f0eecad7b 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# suganthi , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index a6351ece395cf669d5db7a746f6bbe9ef39b3b20..7d988829d0534d2a05bf12498fef025d1c418984 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -93,7 +93,7 @@ msgstr "" msgid "Disable" msgstr "இயலுமைப்ப" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "செயலற்றதாக்குக" @@ -101,64 +101,64 @@ msgstr "செயலற்றதாக்குக" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "வழு" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "வழு" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "இயலுமைப்படுத்துக" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "குழுக்கள்" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "குழு நிர்வாகி" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "அழிக்க" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -317,11 +317,15 @@ msgstr "" msgid "More" msgstr "மேலதிக" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "குறைவான" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index 59edf0b378ace0457003d6a5442462b87a1702cf..e75db9cc3f918754065e41886ead8bba674a22a0 100644 --- a/l10n/ta_LK/user_webdavauth.po +++ b/l10n/ta_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -26,7 +26,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/te/core.po b/l10n/te/core.po index 419caf97942a41a4311963789fac555e0e6d026e..3077ce28a0434d8fa058f667c2b360a8ac5e0d9b 100644 --- a/l10n/te/core.po +++ b/l10n/te/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: వీవెన్ \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -161,86 +161,88 @@ msgstr "డిసెంబర్" msgid "Settings" msgstr "అమరికలు" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 నిమిషం క్రితం" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} నిమిషాల క్రితం" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 గంట క్రితం" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} గంటల క్రితం" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "ఈరోజు" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} రోజుల క్రితం" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} నెలల క్రితం" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "సంవత్సరాల క్రితం" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "సరే" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "రద్దుచేయి" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "కాదు" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "అవును" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "సరే" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "కాదు" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "పొరపాటు" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "తొలగించు" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "" msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index 9199d6b858e093c7ba65d817ab5d7ab637354520..47cac8cd8ae761418f629b0b569b9389197ffa0e 100644 --- a/l10n/te/files.po +++ b/l10n/te/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: వీవెన్ \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,7 +71,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -91,39 +91,46 @@ msgstr "తొలగించు" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "రద్దుచేయి" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" -msgstr "మూసివేయి" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "పొరపాటు" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "పేరు" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "పరిమాణం" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/te/files_encryption.po b/l10n/te/files_encryption.po index 4490c006c8294d433754f88324a9dcb682a8b92d..cf1d6e37e15676e7a330369208d65bdf7f51eda6 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/files_external.po b/l10n/te/files_external.po index 443334d1537a744cfa27c2a5b378e3854173d6b8..0ad4883fc5a7ad9667dd80a781bb9676af827fd6 100644 --- a/l10n/te/files_external.po +++ b/l10n/te/files_external.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:34+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index fbc5e47d934f619254cef490c3d6ec1a144483d6..8d26d12e9395c5de292c62dc34f23fdad9609511 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index f685b9efdffb078c4aebdc953de75ada70d7b8b2..c7d0a59bc5ef7bd39086e81176630e88777f2385 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-01-31 16:03+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "పొరపాటు" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/te/files_versions.po b/l10n/te/files_versions.po index 5f1b874d45053b470b13c89eaf30f9802eaa02a6..d69922bf833c89806f0a23a8ac72697af448f5be 100644 --- a/l10n/te/files_versions.po +++ b/l10n/te/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:37+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 15ff1dbac85deff04beebb23f0fde5da1f1aedf7..3123d067aacb5fab439dfb469116dcffe5a77605 100644 --- a/l10n/te/lib.po +++ b/l10n/te/lib.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-07-27 22:23+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 6acfd293ecf5a34dc2444ae8ea376eeac2fbd461..3fe64246815eff45b579ba23254fbacd4cd31a91 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 10:10+0000\n" -"Last-Translator: వీవెన్ \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -101,6 +101,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "పొరపాటు" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -109,56 +113,52 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "పొరపాటు" - #: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "తొలగించు" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -317,11 +317,15 @@ msgstr "" msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/te/user_webdavauth.po b/l10n/te/user_webdavauth.po index 9719a079784c349f352fc350d23e30826c44a3a6..bfa7e06be6f86a43deb4a8da80bfc46f236b88fa 100644 --- a/l10n/te/user_webdavauth.po +++ b/l10n/te/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 6a60130e187a1956ab20ce48252648cd0a43778c..35b43eb24d1400e7f2148a20b8479b781e8efc55 100644 --- a/l10n/templates/core.pot +++ b/l10n/templates/core.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -160,76 +160,76 @@ msgstr "" msgid "Settings" msgstr "" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" msgstr "" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "" -#: js/oc-dialogs.js:162 -msgid "No" +#: js/oc-dialogs.js:185 +msgid "Choose" msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "" -#: js/oc-dialogs.js:180 -msgid "Ok" +#: js/oc-dialogs.js:222 +msgid "No" msgstr "" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 @@ -237,9 +237,11 @@ msgstr "" msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "" @@ -259,7 +261,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "" @@ -291,7 +293,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "" @@ -319,59 +321,59 @@ msgstr "" msgid "No people found" msgstr "" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -407,7 +409,7 @@ msgid "Request failed!" msgstr "" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "" @@ -517,37 +519,37 @@ msgstr "" msgid "Data folder" msgstr "" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "" @@ -559,33 +561,33 @@ msgstr "" msgid "Log out" msgstr "" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "" -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "" -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 6b6d0dc3403a29597c05b038e903e374a2a070e0..89a7db16078cd6d83ce3553afa4a9c11ee40b85a 100644 --- a/l10n/templates/files.pot +++ b/l10n/templates/files.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,7 +70,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -151,68 +158,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index a2d4fd06fb451870a09b63fa7360ba6f45b9f9a2..474450fd7d3ac35b6ecaf7e3adb5d74b1fb460cd 100644 --- a/l10n/templates/files_encryption.pot +++ b/l10n/templates/files_encryption.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+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 493b6562689c51630328e59959c73f98611db408..55b915b8c1959a5fa1a0a6a1244089a111ebda96 100644 --- a/l10n/templates/files_external.pot +++ b/l10n/templates/files_external.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting " "of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index 572c6d59b51622c5a46fe0eda6200d5e59f379c7..6da4a5a9c1b227f2937377843874477228581861 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+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_trashbin.pot b/l10n/templates/files_trashbin.pot index 2c65ed26d97ef8fbac555acf061775d24b6ff501..6f7cd8036e60b7186a43ebc7f1f7c9e4d675eaef 100644 --- a/l10n/templates/files_trashbin.pot +++ b/l10n/templates/files_trashbin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 6f4cd41225fd17b4060a2899df8e7a232d0239e3..40c2e572fbbbafe582e4e866e3336fefcd8380af 100644 --- a/l10n/templates/files_versions.pot +++ b/l10n/templates/files_versions.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+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/lib.pot b/l10n/templates/lib.pot index db45e55dbf9434cdf71122b05d70594a28056944..cf80a35b29095357d29e60ae6c632307f80acd5e 100644 --- a/l10n/templates/lib.pot +++ b/l10n/templates/lib.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -117,72 +113,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." msgstr "" -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 #, php-format msgid "DB Error: \"%s\"" msgstr "" -#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 -#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:854 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "" -#: setup.php:854 +#: setup.php:855 #, php-format msgid "Please double check the installation guides." msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 8c002907be727b1d5ebd54daad42f410d4f3c79e..1b32c3ac1bd9391a5b17d15f5b2786955a6e094e 100644 --- a/l10n/templates/settings.pot +++ b/l10n/templates/settings.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -100,6 +100,10 @@ msgstr "" msgid "Please wait...." msgstr "" +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "" + #: js/apps.js:90 msgid "Updating...." msgstr "" @@ -108,56 +112,52 @@ msgstr "" msgid "Error while updating app" msgstr "" -#: js/apps.js:93 -msgid "Error" -msgstr "" - #: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -312,15 +312,19 @@ msgstr "" msgid "Log level" msgstr "" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:228 +msgid "Less" +msgstr "" + +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index b8c323b4c1a43762e5c6c011fe6b7c2eaabe7182..98ae8159bdf0f3f3b093beb0dbe193bb4515a100 100644 --- a/l10n/templates/user_webdavauth.pot +++ b/l10n/templates/user_webdavauth.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-03-28 00:02+0100\n" +"POT-Creation-Date: 2013-04-23 01:58+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 f3a4d788f723208c030802600b10bccab626650b..a5d768f9caf38ef2fbcaf25acf6c3f3b390f6af8 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -162,86 +162,88 @@ msgstr "ธันวาคม" msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 นาทีก่อนหน้านี้" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} นาทีก่อนหน้านี้" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 ชั่วโมงก่อนหน้านี้" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} ชั่วโมงก่อนหน้านี้" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "วันนี้" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{day} วันก่อนหน้านี้" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} เดือนก่อนหน้านี้" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "ปี ที่ผ่านมา" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "เลือก" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "ตกลง" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "ยกเลิก" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "ไม่ตกลง" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "เลือก" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ตกลง" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "ตกลง" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "ไม่ตกลง" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "ชนิดของวัตถุยังไม่ได้รับการระบุ" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "พบข้อผิดพลาด" @@ -261,7 +263,7 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" @@ -321,59 +323,59 @@ msgstr "แชร์ผ่านทางอีเมล" msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "สร้าง" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "อัพเดท" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ลบ" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "แชร์" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "ส่งอีเมล์แล้ว" @@ -533,23 +535,23 @@ msgstr "จะถูกใช้" msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index e39a41e9cdad1f9d18fc8cd9395bcbbbe5deb4da..76c99829ca30e5c08909f81286dc46623a560f0c 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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -72,7 +72,7 @@ msgstr "เขียนข้อมูลลงแผ่นดิสก์ล้ msgid "Not enough storage available" msgstr "เหลือพื้นที่ไม่เพียงสำหรับใช้งาน" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "ไดเร็กทอรี่ไม่ถูกต้อง" @@ -92,39 +92,46 @@ msgstr "ลบ" msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} มีอยู่แล้วในระบบ" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "แทนที่" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "แนะนำชื่อ" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "ยกเลิก" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "ดำเนินการตามคำสั่งลบ" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง" @@ -153,68 +160,60 @@ msgid "" "big." msgstr "กำลังเตรียมดาวน์โหลดข้อมูล หากไฟล์มีขนาดใหญ่ อาจใช้เวลาสักครู่" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "ไม่สามารถอัพโหลดไฟล์ของคุณได้ เนื่องจากไฟล์ดังกล่าวเป็นไดเร็กทอรี่หรือมีขนาด 0 ไบต์" -#: js/files.js:263 -msgid "Upload Error" -msgstr "เกิดข้อผิดพลาดในการอัพโหลด" - -#: js/files.js:274 -msgid "Close" -msgstr "ปิด" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "มีพื้นที่เหลือไม่เพียงพอ" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "กำลังอัพโหลด {count} ไฟล์" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "การอัพโหลดถูกยกเลิก" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "การอัพโหลดไฟล์กำลังอยู่ในระหว่างดำเนินการ การออกจากหน้าเว็บนี้จะทำให้การอัพโหลดถูกยกเลิก" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL ไม่สามารถเว้นว่างได้" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "ข้อผิดพลาด" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "ชื่อ" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "ขนาด" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "ปรับปรุงล่าสุด" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 โฟลเดอร์" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} โฟลเดอร์" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 ไฟล์" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} ไฟล์" diff --git a/l10n/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index 0f055b572fb2206003e2cb999e9158c0e1947511..ffe62d259880f7706ccdb7fa62cdb9f8d149ea5b 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/th_TH/files_external.po b/l10n/th_TH/files_external.po index 5ea939ece8b60dcfcf77b38c66f6f853d9a78b21..8ad035271a394adb80798d453245589fa8770835 100644 --- a/l10n/th_TH/files_external.po +++ b/l10n/th_TH/files_external.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,13 +38,13 @@ msgstr "กรุณากรอกรหัส app key ของ Dropbox แล msgid "Error configuring Google Drive storage" msgstr "เกิดข้อผิดพลาดในการกำหนดค่าการจัดเก็บข้อมูลในพื้นที่ของ Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "คำเตือน: \"smbclient\" ยังไม่ได้ถูกติดตั้ง. การชี้ CIFS/SMB เพื่อแชร์ข้อมูลไม่สามารถกระทำได้ กรุณาสอบถามข้อมูลเพิ่มเติมจากผู้ดูแลระบบเพื่อติดตั้ง." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index ca52d4c44496a38fe0df7e1b9af0444355294829..4d2deef16b225e4b12902d21fedd34e187d79c36 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/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-23 02:01+0200\n" -"PO-Revision-Date: 2012-09-22 11:10+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,24 +26,24 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 73191ef2fb2b614ef7fa63fe85bd51006bc48851..9c184200fecdf2ca431b64e1628cea501702a62d 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -32,6 +32,10 @@ msgstr "" msgid "perform restore operation" msgstr "ดำเนินการคืนค่า" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "ข้อผิดพลาด" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 1abe7bfdb5e7bbec2b871677c1ca8a4d121434a0..4abcac4e0d87cc6e17a917cb5f17e9d47b1de39a 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -41,11 +41,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index eff4a91b329f94be2fa55b06f3936d839dfb6c1f..4ede057cbdde7013ddc750c326e7689b4b9d7f7a 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# AriesAnywhere Anywhere , 2012-2013. +# AriesAnywhere Anywhere , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 01fe7419eb2da602ce94f89fc27dcde51d5c78a7..c239256ebec6f4076f318fc2296288ac162cdd5e 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -95,7 +95,7 @@ msgstr "อัพเดทไปเป็นรุ่น {appversion}" msgid "Disable" msgstr "ปิดใช้งาน" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "เปิดใช้งาน" @@ -103,64 +103,64 @@ msgstr "เปิดใช้งาน" msgid "Please wait...." msgstr "กรุณารอสักครู่..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "ข้อผิดพลาด" + +#: js/apps.js:90 msgid "Updating...." msgstr "กำลังอัพเดทข้อมูล..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ" -#: js/apps.js:87 -msgid "Error" -msgstr "ข้อผิดพลาด" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "อัพเดทแล้ว" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "กำลังบันทึุกข้อมูล..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "ลบแล้ว" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "เลิกทำ" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "กลุ่ม" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "ผู้ดูแลกลุ่ม" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "ลบ" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -319,11 +319,15 @@ msgstr "" msgid "More" msgstr "มาก" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "น้อย" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index 3493831b2c1f7084a9e3ea50b006b5c15877bea4..5c6623a310acf91a0c74962cea1032e16a6ee543 100644 --- a/l10n/th_TH/user_webdavauth.po +++ b/l10n/th_TH/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-22 00:54+0000\n" -"Last-Translator: AriesAnywhere Anywhere \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,7 +26,7 @@ msgstr "WebDAV Authentication" msgid "URL: http://" msgstr "URL: http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/tr/core.po b/l10n/tr/core.po index f0fecbe22381bd5c6a457671361f70b44988b8f1..943cc42487d4cc12dc613dcf598fcb3a150150cd 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -3,20 +3,21 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Aranel Surion , 2011, 2012. -# Caner Başaran , 2012. -# H.Oktay Tefenli , 2013. -# , 2012. -# ismail yenigul , 2013. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Aranel Surion , 2011, 2012 +# Caner Başaran , 2012 +# otefenli , 2013 +# ifthenelse , 2013 +# alpere , 2012 +# ismail yenigül , 2013 +# Necdet Yücel , 2012 +# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: otefenli \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 07:40+0000\n" +"Last-Translator: ifthenelse \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" @@ -167,86 +168,88 @@ msgstr "Aralık" msgid "Settings" msgstr "Ayarlar" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 dakika önce" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} dakika önce" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 saat önce" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} saat önce" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "bugün" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "dün" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} gün önce" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "geçen ay" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} ay önce" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "ay önce" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "geçen yıl" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "yıl önce" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "seç" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Tamam" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "İptal" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Hayır" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "seç" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Evet" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Tamam" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Hayır" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Nesne türü belirtilmemiş." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Hata" @@ -266,7 +269,7 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " @@ -298,7 +301,7 @@ msgstr "Bağlantı ile paylaş" msgid "Password protect" msgstr "Şifre korunması" -#: js/share.js:169 templates/installation.php:54 templates/login.php:35 +#: js/share.js:169 templates/installation.php:54 templates/login.php:26 msgid "Password" msgstr "Parola" @@ -326,59 +329,59 @@ msgstr "Eposta ile paylaş" msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr " {item} içinde {user} ile paylaşılanlarlar" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "oluştur" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "güncelle" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "sil" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "paylaş" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Eposta gönderildi" @@ -414,7 +417,7 @@ msgid "Request failed!" msgstr "İstek reddedildi!" #: lostpassword/templates/lostpassword.php:11 templates/installation.php:48 -#: templates/login.php:28 +#: templates/login.php:19 msgid "Username" msgstr "Kullanıcı adı" @@ -456,7 +459,7 @@ msgstr "Yönetici" #: strings.php:9 msgid "Help" -msgstr "Yardı" +msgstr "Yardım" #: templates/403.php:12 msgid "Access forbidden" @@ -524,37 +527,37 @@ msgstr "Gelişmiş" msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "Kurulumu tamamla" @@ -566,33 +569,33 @@ msgstr "kontrolünüzdeki web servisleri" msgid "Log out" msgstr "Çıkış yap" -#: templates/login.php:10 +#: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Otomatik oturum açma reddedildi!" -#: templates/login.php:11 +#: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" msgstr "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir." -#: templates/login.php:13 +#: templates/login.php:12 msgid "Please change your password to secure your account again." msgstr "Hesabınızı korumak için lütfen parolanızı değiştirin." -#: templates/login.php:19 +#: templates/login.php:34 msgid "Lost your password?" msgstr "Parolanızı mı unuttunuz?" -#: templates/login.php:41 +#: templates/login.php:39 msgid "remember" msgstr "hatırla" -#: templates/login.php:43 +#: templates/login.php:41 msgid "Log in" msgstr "Giriş yap" -#: templates/login.php:49 +#: templates/login.php:47 msgid "Alternative Logins" msgstr "Alternatif Girişler" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index ac819301a7d7958a7e5a4d7014284d990e79e1b2..c9fcbdb56368f4799b88d24322ccbbfd4e33b419 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: ismail yenigül \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -77,7 +77,7 @@ msgstr "Diske yazılamadı" msgid "Not enough storage available" msgstr "Yeterli disk alanı yok" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Geçersiz dizin." @@ -97,39 +97,46 @@ msgstr "Sil" msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Bekliyor" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} zaten mevcut" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "değiştir" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "Öneri ad" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "iptal" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "{new_name} ismi {old_name} ile değiştirildi" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "geri al" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "Silme işlemini gerçekleştir" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 dosya yüklendi" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "Dosyalar yükleniyor" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' geçersiz dosya adı." @@ -158,68 +165,60 @@ msgid "" "big." msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Dosyanızın boyutu 0 byte olduğundan veya bir dizin olduğundan yüklenemedi" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Yükleme hatası" - -#: js/files.js:274 -msgid "Close" -msgstr "Kapat" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 dosya yüklendi" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} dosya yükleniyor" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Yeterli disk alanı yok" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Yükleme iptal edildi." -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL boş olamaz." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Hata" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Ad" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Boyut" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 dizin" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} dizin" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 dosya" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} dosya" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 52609fb3a4e0799c1ca0da25772613e88a5b6c32..445755c59c2d8a9f8daeadf96dff66ef724fad48 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -9,15 +9,15 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 20:10+0000\n" -"Last-Translator: atakan96 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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=2; plural=(n > 1);\n" #: templates/settings-personal.php:4 templates/settings.php:5 msgid "Encryption" diff --git a/l10n/tr/files_external.po b/l10n/tr/files_external.po index efe9a4aec4605934434f32d6859ace8df6747316..a52ac427e9e3ad34d0f26489afff705a915605ab 100644 --- a/l10n/tr/files_external.po +++ b/l10n/tr/files_external.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# Caner Başaran , 2013 +# Necdet Yücel , 2012 +# atakan96 , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 15:10+0000\n" +"Last-Translator: KAT.RAT12 \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" @@ -25,7 +27,7 @@ msgstr "Giriş kabul edildi" #: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 msgid "Error configuring Dropbox storage" -msgstr "" +msgstr "Dropbox depo yapılandırma hatası" #: js/dropbox.js:65 js/google.js:66 msgid "Grant access" @@ -37,20 +39,20 @@ msgstr "Lütfen Dropbox app key ve secret temin ediniz" #: js/google.js:36 js/google.js:93 msgid "Error configuring Google Drive storage" -msgstr "" +msgstr "Google Drive depo yapılandırma hatası" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "Uyari.''smbclient''yüklü değil. Mont etme CIFS/SMB hissenin mümkün değildir. Lutfen kullanici sistemin sormak onu yuklemek ici, " -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr ". Sistem FTP PHPden aktif degil veya yuklemedi. Monte etme hissenin FTP mumkun degildir. Lutfen kullaniici sistemin sormak onu yuklemek icin." #: templates/settings.php:3 msgid "External Storage" @@ -62,7 +64,7 @@ msgstr "Dizin ismi" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "Harici Depolama" #: templates/settings.php:11 msgid "Configuration" @@ -78,7 +80,7 @@ msgstr "Uygulanabilir" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "Depo ekle" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 5cef16c9263ce487a529447680b4dafc2c6e54cc..365c9b3a7db6cb23aace62ee72c41fd645c4db76 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/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-12-05 00:04+0100\n" -"PO-Revision-Date: 2012-12-04 11:33+0000\n" -"Last-Translator: alpere \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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=2; plural=(n > 1);\n" #: templates/authenticate.php:4 msgid "Password" @@ -26,24 +26,24 @@ msgstr "Şifre" msgid "Submit" msgstr "Gönder" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "İndir" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "Bilgileriniz güvenli ve şifreli" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 37b1dd250d16e2dc5a8b045009922ea371f204de..2354e94204d868d322389ab3e9a50c7dc6aa2355 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-25 10:30+0000\n" -"Last-Translator: otefenli \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -33,6 +33,10 @@ msgstr "%s Geri yüklenemedi" msgid "perform restore operation" msgstr "Geri yükleme işlemini gerçekleştir" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Hata" + #: js/trash.js:34 msgid "delete file permanently" msgstr "Dosyayı kalıcı olarak sil" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 59ad4923c43f29c10c4cd296ec86d757c06ac98b..bf1b595e50fe4d87883cefa6e5f8f98fb99efc16 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-25 10:20+0000\n" -"Last-Translator: otefenli \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 59325d120342bdc99ffced72b0f9013fc01b6072..6f7a085617ecf61cc0f223b3f16e27afe8528045 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ismail yenigul , 2013. -# Necdet Yücel , 2012. +# ismail yenigül , 2013 +# Necdet Yücel , 2012 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 16:03+0000\n" +"Last-Translator: KAT.RAT12 \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" @@ -89,15 +90,11 @@ msgstr "Resimler" #: setup.php:34 msgid "Set an admin username." -msgstr "" +msgstr "Bir adi kullanici vermek. " #: setup.php:37 msgid "Set an admin password." -msgstr "" - -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" +msgstr "Parola yonetici birlemek. " #: setup.php:55 #, php-format @@ -119,72 +116,72 @@ msgstr "" msgid "%s set the database host." msgstr "" -#: setup.php:132 setup.php:324 setup.php:369 +#: setup.php:132 setup.php:325 setup.php:370 msgid "PostgreSQL username and/or password not valid" -msgstr "" +msgstr "PostgreSQL adi kullanici ve/veya parola yasal degildir. " -#: setup.php:133 setup.php:156 setup.php:233 +#: setup.php:133 setup.php:156 setup.php:234 msgid "You need to enter either an existing account or the administrator." -msgstr "" +msgstr "Bir konto veya kullanici birlemek ihtiyacin. " -#: setup.php:155 setup.php:457 setup.php:524 +#: setup.php:155 setup.php:458 setup.php:525 msgid "Oracle username and/or password not valid" -msgstr "" +msgstr "Adi klullanici ve/veya parola Oracle mantikli değildir. " -#: setup.php:232 +#: setup.php:233 msgid "MySQL username and/or password not valid" msgstr "" -#: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 -#: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 -#: setup.php:575 setup.php:582 setup.php:591 setup.php:599 setup.php:608 -#: setup.php:614 +#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 +#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 +#: setup.php:576 setup.php:583 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:615 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "DB Hata: ''%s''" -#: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 -#: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 -#: setup.php:576 setup.php:592 setup.php:600 setup.php:609 +#: setup.php:288 setup.php:392 setup.php:401 setup.php:419 setup.php:429 +#: setup.php:438 setup.php:467 setup.php:533 setup.php:559 setup.php:566 +#: setup.php:577 setup.php:593 setup.php:601 setup.php:610 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "Komut rahasiz ''%s''. " -#: setup.php:303 +#: setup.php:304 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL kullanici '%s @local host zatan var. " -#: setup.php:304 +#: setup.php:305 msgid "Drop this user from MySQL" -msgstr "" +msgstr "Bu kullanici MySQLden list disari koymak. " -#: setup.php:309 +#: setup.php:310 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL kullanici '%s @ % % zaten var (zaten yazili)" -#: setup.php:310 +#: setup.php:311 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:583 setup.php:615 +#: setup.php:584 setup.php:616 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" msgstr "" -#: setup.php:635 +#: setup.php:636 #, php-format msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:853 +#: setup.php:854 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: setup.php:854 +#: setup.php:855 #, php-format msgid "Please double check the installation guides." msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index 100d5064bad354c43eee0272bde483e6e02ff9c6..86e9e92833a5077eeaa3ff4385750f70faae4d49 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -6,6 +6,7 @@ # Aranel Surion , 2011-2013. # Caner Başaran , 2013. # Emre , 2012. +# Fatih Aşıcı , 2013. # H.Oktay Tefenli , 2013. # , 2012. # ismail yenigul , 2013. @@ -15,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Caner Başaran \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -108,6 +109,10 @@ msgstr "Etkin" msgid "Please wait...." msgstr "Lütfen bekleyin...." +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Hata" + #: js/apps.js:90 msgid "Updating...." msgstr "Güncelleniyor...." @@ -116,62 +121,58 @@ msgstr "Güncelleniyor...." msgid "Error while updating app" msgstr "Uygulama güncellenirken hata" -#: js/apps.js:93 -msgid "Error" -msgstr "Hata" - #: js/apps.js:96 msgid "Updated" msgstr "Güncellendi" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Kaydediliyor..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "silindi" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "geri al" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Kullanıcı kaldırılamıyor" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Gruplar" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Yönetici Grubu " -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Sil" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "grup ekle" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Geçerli bir kullanıcı adı mutlaka sağlanmalı" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Kullanıcı oluşturulurken hata" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Geçerli bir parola mutlaka sağlanmalı" #: personal.php:29 personal.php:30 msgid "__language_name__" -msgstr "__dil_adı__" +msgstr "Türkçe" #: templates/admin.php:15 msgid "Security Warning" @@ -221,7 +222,7 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "Bu ownCloud sunucusu sistem yerelini %s olarak değiştiremedi. Bu, dosya adlarındaki bazı karakterler ile sorun yaşanabileceği anlamına gelir. %s yerelini desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." #: templates/admin.php:75 msgid "Internet connection not working" @@ -243,19 +244,19 @@ msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "Yüklenen her sayfa ile bir görev çalıştır" #: templates/admin.php:111 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 bir webcron hizmetinde kaydedilir. Owncloud kökündeki cron.php sayfasını http üzerinden dakikada bir çağır." #: templates/admin.php:121 msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "Sistemin cron hizmetini kullan. Bir sistem cronjob'ı ile owncloud klasöründeki cron.php dosyasını dakikada bir çağır." #: templates/admin.php:128 msgid "Sharing" @@ -283,7 +284,7 @@ msgstr "Paylaşıma izin ver" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver" #: templates/admin.php:158 msgid "Allow users to share with anyone" @@ -291,7 +292,7 @@ msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" #: templates/admin.php:168 msgid "Security" @@ -304,13 +305,13 @@ msgstr "HTTPS bağlantısına zorla" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "İstemcileri ownCloud'a şifreli bir bağlantı ile bağlanmaya zorlar." #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen bu ownCloud örneğine HTTPS ile bağlanın." #: templates/admin.php:195 msgid "Log" @@ -324,11 +325,15 @@ msgstr "Günlük seviyesi" msgid "More" msgstr "Daha fazla" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Az" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the , 2012. -# TayançKILIÇLI , 2013. +# Necdet Yücel , 2012 +# atakan96 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 07:40+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" diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index f5f060e198ce141eeb8eb7f42abaf3f0d89718e5..a5b58c7648ffdb4430fc17e9c4266938c6ee5337 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.po @@ -3,22 +3,23 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Necdet Yücel , 2012. -# TayançKILIÇLI , 2013. +# alpere , 2012 +# Necdet Yücel , 2012 +# atakan96 , 2013 +# KAT.RAT12 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 20:10+0000\n" -"Last-Translator: atakan96 \n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 20:10+0000\n" +"Last-Translator: KAT.RAT12 \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=2; plural=(n > 1);\n" #: templates/settings.php:3 msgid "WebDAV Authentication" @@ -33,4 +34,4 @@ msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " "credentials, and all other responses as valid credentials." -msgstr "" +msgstr "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. " diff --git a/l10n/uk/core.po b/l10n/uk/core.po index be291bdfdd46f0f64e595acb503e24479b045f46..7935fe6434d56a88c821203906e869af319ad192 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -166,86 +166,88 @@ msgstr "Грудень" msgid "Settings" msgstr "Налаштування" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 хвилину тому" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} хвилин тому" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 годину тому" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} години тому" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "сьогодні" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "вчора" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} днів тому" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "минулого місяця" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} місяців тому" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "місяці тому" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "минулого року" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "роки тому" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Обрати" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Ok" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Відмінити" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Ні" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Обрати" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Так" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Ні" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Не визначено тип об'єкту." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Помилка" @@ -265,7 +267,7 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Помилка під час публікації" @@ -325,59 +327,59 @@ msgstr "Опублікувати через Ел. пошту:" msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Заборонити доступ" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "може редагувати" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "контроль доступу" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "створити" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "оновити" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "видалити" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "опублікувати" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Ел. пошта надіслана" @@ -480,11 +482,11 @@ msgstr "Попередження про небезпеку" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud." #: templates/installation.php:32 msgid "" @@ -537,23 +539,23 @@ msgstr "буде використано" msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Завершити налаштування" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index db393aecae19b023848d61eccd4838b2d641ecdc..3afb162edb0472c0bb531f44161180e46aca72c3 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -74,7 +74,7 @@ msgstr "Невдалося записати на диск" msgid "Not enough storage available" msgstr "Місця більше немає" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Невірний каталог." @@ -94,39 +94,46 @@ msgstr "Видалити" msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Очікування" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} вже існує" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "заміна" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "запропонуйте назву" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "відміна" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "замінено {new_name} на {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "відмінити" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "виконати операцію видалення" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 файл завантажується" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "файли завантажуються" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' це невірне ім'я файлу." @@ -155,68 +162,60 @@ msgid "" "big." msgstr "Ваше завантаження готується. Це може зайняти деякий час, якщо файли завеликі." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Неможливо завантажити ваш файл тому, що він тека або файл розміром 0 байт" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Помилка завантаження" - -#: js/files.js:274 -msgid "Close" -msgstr "Закрити" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 файл завантажується" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} файлів завантажується" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "Місця більше немає" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Завантаження перервано." -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "Виконується завантаження файлу. Закриття цієї сторінки приведе до відміни завантаження." -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL не може бути пустим." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Помилка" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Ім'я" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Розмір" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Змінено" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 папка" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} папок" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 файл" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} файлів" diff --git a/l10n/uk/files_encryption.po b/l10n/uk/files_encryption.po index f0341a7e32ca2e9f8297a8213713ec4b2f620706..8e820298fb8e9d33490e43e994cb3677c1dbf663 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 16:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 57f73727ce1266820cfd0534eaba3c9ec776d252..9247439d55604951949310cb07d387b3239a00bc 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Будь ласка, надайте дійсний ключ та пар msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a087b632037262eb6ea1c6b7ceb1b3fb4f17d24e..a6b224557e6ec4f101b1e8e5cff8ec6487d900dd 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/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-11-22 00:01+0100\n" -"PO-Revision-Date: 2012-11-21 13:21+0000\n" -"Last-Translator: skoptev \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "Пароль" msgid "Submit" msgstr "Submit" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Завантажити" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "підконтрольні Вам веб-сервіси" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 54c078642c675601cce732999b0f5a81d1f8dea0..bb48add59dbce9b1d55ef639354bde31cb1abafa 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:41+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Неможливо видалити %s назавжди" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" @@ -32,6 +32,10 @@ msgstr "Неможливо відновити %s" msgid "perform restore operation" msgstr "виконати операцію відновлення" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Помилка" + #: js/trash.js:34 msgid "delete file permanently" msgstr "видалити файл назавжди" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 57d0fd1f10c97020c8b1d9f546844e76b7a676da..95c4cb20648e3455fec0224a251009d1f5089de4 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/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: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 12:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 335a9fabd04dd8337715afa6a33143694eff487e..d6307720768970c1e56ed917626779a226981c4d 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/lib.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# , 2012. -# , 2013. -# пан Володимир , 2013. +# Dmytro Dzubenko , 2012 +# skoptev , 2012 +# VicDeo , 2012 +# volodya327 , 2013 +# volodya327 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -98,10 +98,6 @@ msgstr "Встановіть ім'я адміністратора." msgid "Set an admin password." msgstr "Встановіть пароль адміністратора." -#: setup.php:40 -msgid "Specify a data folder." -msgstr "Вкажіть теку для даних." - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index dd232bdd1ec726562f16e59c0830106cb3908adf..01c6e47b022489ee50a65d57d59e89732d5f775e 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-06 00:07+0100\n" -"PO-Revision-Date: 2013-03-05 12:20+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -96,7 +96,7 @@ msgstr "Оновити до {appversion}" msgid "Disable" msgstr "Вимкнути" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Включити" @@ -104,64 +104,64 @@ msgstr "Включити" msgid "Please wait...." msgstr "Зачекайте, будь ласка..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Помилка" + +#: js/apps.js:90 msgid "Updating...." msgstr "Оновлюється..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Помилка при оновленні програми" -#: js/apps.js:87 -msgid "Error" -msgstr "Помилка" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Оновлено" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Зберігаю..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "видалені" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "відмінити" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "Неможливо видалити користувача" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Групи" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Адміністратор групи" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Видалити" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "додати групу" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "Потрібно задати вірне ім'я користувача" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "Помилка при створенні користувача" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "Потрібно задати вірний пароль" @@ -320,11 +320,15 @@ msgstr "Рівень протоколювання" msgid "More" msgstr "Більше" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "Менше" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Версія" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index 59983e502099f5974ec80f20c12ccb5d97e385bc..0b39465a48a85df89836640b40a1186ade0b6ee3 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-19 00:05+0100\n" -"PO-Revision-Date: 2013-02-18 16:40+0000\n" -"Last-Translator: volodya327 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 8f41c22e3641e8cb5fef09068a8b9dce30f17402..2439188cfcb4685e12af5664dcd78339598996db 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -161,86 +161,88 @@ msgstr "دسمبر" msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "منتخب کریں" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "اوکے" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "منسوخ کریں" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "نہیں" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "منتخب کریں" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "ہاں" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "اوکے" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "نہیں" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "ایرر" @@ -260,7 +262,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" @@ -320,59 +322,59 @@ msgstr "" msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "ختم کریں" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "شئیر کریں" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "" @@ -532,23 +534,23 @@ msgstr "استعمال ہو گا" msgid "Database user" msgstr "ڈیٹابیس یوزر" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "ڈیٹابیس پاسورڈ" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "ڈیٹابیس کا نام" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "ڈیٹابیس ٹیبل سپیس" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "ڈیٹابیس ہوسٹ" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index f331a7fa8a8aa249a0f1da81a71a6bbd866a192b..acb0e8f71a5975a9c292f3ab5a94297225c2d95b 100644 --- a/l10n/ur_PK/files.po +++ b/l10n/ur_PK/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: 2013-03-04 00:06+0100\n" -"PO-Revision-Date: 2013-03-03 23:06+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -70,11 +70,11 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" -#: appinfo/app.php:10 +#: appinfo/app.php:12 msgid "Files" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:127 templates/index.php:92 templates/index.php:93 +#: js/fileactions.js:127 templates/index.php:94 templates/index.php:95 msgid "Delete" msgstr "" @@ -90,39 +90,46 @@ msgstr "" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:292 js/files.js:408 -#: js/files.js:439 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -145,74 +152,66 @@ msgstr "" msgid "Your storage is almost full ({usedSpacePercent}%)" msgstr "" -#: js/files.js:225 +#: js/files.js:226 msgid "" "Your download is being prepared. This might take some time if the files are " "big." msgstr "" -#: js/files.js:262 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:262 -msgid "Upload Error" -msgstr "" - -#: js/files.js:273 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" #: js/files.js:312 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:315 js/files.js:370 js/files.js:385 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:388 js/files.js:423 msgid "Upload cancelled." msgstr "" -#: js/files.js:497 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:570 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:575 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:953 templates/index.php:68 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "ایرر" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "" -#: js/files.js:954 templates/index.php:79 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:974 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:976 +#: js/files.js:895 msgid "{count} folders" msgstr "" -#: js/files.js:984 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:986 +#: js/files.js:905 msgid "{count} files" msgstr "" @@ -268,45 +267,45 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:40 +#: templates/index.php:42 msgid "Deleted files" msgstr "" -#: templates/index.php:46 +#: templates/index.php:48 msgid "Cancel upload" msgstr "" -#: templates/index.php:53 +#: templates/index.php:55 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:60 +#: templates/index.php:62 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:74 +#: templates/index.php:76 msgid "Download" msgstr "" -#: templates/index.php:86 templates/index.php:87 +#: templates/index.php:88 templates/index.php:89 msgid "Unshare" msgstr "" -#: templates/index.php:106 +#: templates/index.php:108 msgid "Upload too large" msgstr "" -#: templates/index.php:108 +#: templates/index.php:110 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:113 +#: templates/index.php:115 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:116 +#: templates/index.php:118 msgid "Current scanning" msgstr "" diff --git a/l10n/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index d945e7ba70d2c255e196ae921791fddc6aa3a7a5..b5f46680a0cacb7daa067650e14f6e605a307e77 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-26 00:04+0100\n" -"PO-Revision-Date: 2012-08-12 22:33+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/ur_PK/files_external.po b/l10n/ur_PK/files_external.po index e9bdbedc1196fedbcb0bfee847746cbe6bd7029f..f6e9d577bd0c0d6fc0c3742951df85b59876a29f 100644 --- a/l10n/ur_PK/files_external.po +++ b/l10n/ur_PK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:421 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index bf96aabc4599264666fbc4b39985918d407ed4df..9fdf3a11baa96f7a40092f2a0e99836597659f13 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/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: 2013-02-27 00:08+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "آپ کے اختیار میں ویب سروسیز" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index 89afda771afe20f8c9a9af8703a9d9f1d6c1a341..af2b0dbd1a7e85e4b343871da3bf4195b005bd4d 100644 --- a/l10n/ur_PK/files_trashbin.po +++ b/l10n/ur_PK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,12 +17,12 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "ایرر" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/ur_PK/files_versions.po b/l10n/ur_PK/files_versions.po index f2a9b38da54dc38e2301def533d722b59ef80b91..7d34dde4393849b02b8c9133518ac79115bfed00 100644 --- a/l10n/ur_PK/files_versions.po +++ b/l10n/ur_PK/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: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -40,11 +40,11 @@ msgstr "" msgid "File %s could not be reverted to version %s" msgstr "" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 5c1fa351e9b173304f9e7961099d411a3f600979..16489f21ccc53ee1a98583774f54b05de67a4061 100644 --- a/l10n/ur_PK/lib.po +++ b/l10n/ur_PK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/ur_PK/settings.po b/l10n/ur_PK/settings.po index 69006ade4028e22dfbdbb31d2fb5c4a6a7d9b7a3..39b956ddc5aa63dd8dde6abbdce7f2cda4fdeded 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/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: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "ایرر" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -86,248 +86,248 @@ msgstr "" msgid "Server configuration" msgstr "" -#: templates/settings.php:18 +#: templates/settings.php:31 msgid "Add Server Configuration" msgstr "" -#: templates/settings.php:23 +#: templates/settings.php:36 msgid "Host" msgstr "" -#: templates/settings.php:25 +#: templates/settings.php:38 msgid "" "You can omit the protocol, except you require SSL. Then start with ldaps://" msgstr "" -#: templates/settings.php:26 +#: templates/settings.php:39 msgid "Base DN" msgstr "" -#: templates/settings.php:27 +#: templates/settings.php:40 msgid "One Base DN per line" msgstr "" -#: templates/settings.php:28 +#: templates/settings.php:41 msgid "You can specify Base DN for users and groups in the Advanced tab" msgstr "" -#: templates/settings.php:30 +#: templates/settings.php:43 msgid "User DN" msgstr "" -#: templates/settings.php:32 +#: templates/settings.php:45 msgid "" "The DN of the client user with which the bind shall be done, e.g. " "uid=agent,dc=example,dc=com. For anonymous access, leave DN and Password " "empty." msgstr "" -#: templates/settings.php:33 +#: templates/settings.php:46 msgid "Password" msgstr "پاسورڈ" -#: templates/settings.php:36 +#: templates/settings.php:49 msgid "For anonymous access, leave DN and Password empty." msgstr "" -#: templates/settings.php:37 +#: templates/settings.php:50 msgid "User Login Filter" msgstr "" -#: templates/settings.php:40 +#: templates/settings.php:53 #, php-format msgid "" "Defines the filter to apply, when login is attempted. %%uid replaces the " "username in the login action." msgstr "" -#: templates/settings.php:41 +#: templates/settings.php:54 #, php-format msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" msgstr "" -#: templates/settings.php:42 +#: templates/settings.php:55 msgid "User List Filter" msgstr "" -#: templates/settings.php:45 +#: templates/settings.php:58 msgid "Defines the filter to apply, when retrieving users." msgstr "" -#: templates/settings.php:46 +#: templates/settings.php:59 msgid "without any placeholder, e.g. \"objectClass=person\"." msgstr "" -#: templates/settings.php:47 +#: templates/settings.php:60 msgid "Group Filter" msgstr "" -#: templates/settings.php:50 +#: templates/settings.php:63 msgid "Defines the filter to apply, when retrieving groups." msgstr "" -#: templates/settings.php:51 +#: templates/settings.php:64 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." msgstr "" -#: templates/settings.php:55 +#: templates/settings.php:68 msgid "Connection Settings" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "Configuration Active" msgstr "" -#: templates/settings.php:57 +#: templates/settings.php:70 msgid "When unchecked, this configuration will be skipped." msgstr "" -#: templates/settings.php:58 +#: templates/settings.php:71 msgid "Port" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "Backup (Replica) Host" msgstr "" -#: templates/settings.php:59 +#: templates/settings.php:72 msgid "" "Give an optional backup host. It must be a replica of the main LDAP/AD " "server." msgstr "" -#: templates/settings.php:60 +#: templates/settings.php:73 msgid "Backup (Replica) Port" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "Disable Main Server" msgstr "" -#: templates/settings.php:61 +#: templates/settings.php:74 msgid "When switched on, ownCloud will only connect to the replica server." msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Use TLS" msgstr "" -#: templates/settings.php:62 +#: templates/settings.php:75 msgid "Do not use it additionally for LDAPS connections, it will fail." msgstr "" -#: templates/settings.php:63 +#: templates/settings.php:76 msgid "Case insensitve LDAP server (Windows)" msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Turn off SSL certificate validation." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your ownCloud server." msgstr "" -#: templates/settings.php:64 +#: templates/settings.php:77 msgid "Not recommended, use for testing only." msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "Cache Time-To-Live" msgstr "" -#: templates/settings.php:65 +#: templates/settings.php:78 msgid "in seconds. A change empties the cache." msgstr "" -#: templates/settings.php:67 +#: templates/settings.php:80 msgid "Directory Settings" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "User Display Name Field" msgstr "" -#: templates/settings.php:69 +#: templates/settings.php:82 msgid "The LDAP attribute to use to generate the user`s ownCloud name." msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "Base User Tree" msgstr "" -#: templates/settings.php:70 +#: templates/settings.php:83 msgid "One User Base DN per line" msgstr "" -#: templates/settings.php:71 +#: templates/settings.php:84 msgid "User Search Attributes" msgstr "" -#: templates/settings.php:71 templates/settings.php:74 +#: templates/settings.php:84 templates/settings.php:87 msgid "Optional; one attribute per line" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "Group Display Name Field" msgstr "" -#: templates/settings.php:72 +#: templates/settings.php:85 msgid "The LDAP attribute to use to generate the groups`s ownCloud name." msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "Base Group Tree" msgstr "" -#: templates/settings.php:73 +#: templates/settings.php:86 msgid "One Group Base DN per line" msgstr "" -#: templates/settings.php:74 +#: templates/settings.php:87 msgid "Group Search Attributes" msgstr "" -#: templates/settings.php:75 +#: templates/settings.php:88 msgid "Group-Member association" msgstr "" -#: templates/settings.php:77 +#: templates/settings.php:90 msgid "Special Attributes" msgstr "" -#: templates/settings.php:79 +#: templates/settings.php:92 msgid "Quota Field" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "Quota Default" msgstr "" -#: templates/settings.php:80 +#: templates/settings.php:93 msgid "in bytes" msgstr "" -#: templates/settings.php:81 +#: templates/settings.php:94 msgid "Email Field" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "User Home Folder Naming Rule" msgstr "" -#: templates/settings.php:82 +#: templates/settings.php:95 msgid "" "Leave empty for user name (default). Otherwise, specify an LDAP/AD " "attribute." msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Test Configuration" msgstr "" -#: templates/settings.php:86 +#: templates/settings.php:99 msgid "Help" msgstr "مدد" diff --git a/l10n/ur_PK/user_webdavauth.po b/l10n/ur_PK/user_webdavauth.po index 31e16092c8873380144f103e83ca3d8388cc373c..874b058a6447778f4ae6d0fd6d9dcdcf79374efa 100644 --- a/l10n/ur_PK/user_webdavauth.po +++ b/l10n/ur_PK/user_webdavauth.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-26 00:04+0100\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 07503e301272e245e6799c7614e491d5027d07e4..1accb85dd19716f0e63bedfe4b9cd6d1aec02097 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -166,86 +166,88 @@ msgstr "Tháng 12" msgid "Settings" msgstr "Cài đặt" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 phút trước" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} phút trước" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 giờ trước" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} giờ trước" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "hôm nay" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} ngày trước" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "tháng trước" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} tháng trước" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "tháng trước" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "năm trước" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "năm trước" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "Chọn" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "Đồng ý" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "Hủy" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "Không" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "Chọn" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Có" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Đồng ý" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "Không" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "Loại đối tượng không được chỉ định." -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "Lỗi" @@ -265,7 +267,7 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" @@ -325,59 +327,59 @@ msgstr "Chia sẻ thông qua email" msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "Gỡ bỏ chia sẻ" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "tạo" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "cập nhật" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "xóa" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "chia sẻ" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Email đã được gửi" @@ -537,23 +539,23 @@ msgstr "được sử dụng" msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "Database host" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "Cài đặt hoàn tất" diff --git a/l10n/vi/files.po b/l10n/vi/files.po index a36c76d2e8efa2fb61ae2a680ba8d6f4771bf7a1..79bf00204ab3767fdf92f27fb2d0369a6068ff99 100644 --- a/l10n/vi/files.po +++ b/l10n/vi/files.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -75,7 +75,7 @@ msgstr "Không thể ghi " msgid "Not enough storage available" msgstr "Không đủ không gian lưu trữ" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "Thư mục không hợp lệ" @@ -95,39 +95,46 @@ msgstr "Xóa" msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Chờ" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} đã tồn tại" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "thay thế" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "tên gợi ý" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "hủy" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "đã thay thế {new_name} bằng {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "lùi lại" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "thực hiện việc xóa" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 tệp tin đang được tải lên" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' là một tên file không hợp lệ" @@ -156,68 +163,60 @@ msgid "" "big." msgstr "Your download is being prepared. This might take some time if the files are big." -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "Không thể tải lên tập tin này do nó là một thư mục hoặc kích thước tập tin bằng 0 byte" -#: js/files.js:263 -msgid "Upload Error" -msgstr "Tải lên lỗi" - -#: js/files.js:274 -msgid "Close" -msgstr "Đóng" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 tệp tin đang được tải lên" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} tập tin đang tải lên" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "Hủy tải lên" -#: js/files.js:498 +#: js/files.js:408 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:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL không được để trống." -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "Lỗi" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "Tên" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 thư mục" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} thư mục" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 tập tin" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} tập tin" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index af199ade990ade7f5cff1fc86c3df75d73c53743..76448eaa0848e9b5b01fab78811393015edae4e9 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/vi/files_external.po b/l10n/vi/files_external.po index eeac41410f746c6d08935f160eba0a38f96ec63e..1d8f070f127da620cdd0f476c6383ef8189f1085 100644 --- a/l10n/vi/files_external.po +++ b/l10n/vi/files_external.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "Xin vui lòng cung cấp một ứng dụng Dropbox hợp lệ và mã b msgid "Error configuring Google Drive storage" msgstr "Lỗi cấu hình lưu trữ Google Drive" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Cảnh báo: \"smbclient\" chưa được cài đặt. Mount CIFS/SMB shares là không thể thực hiện được. Hãy hỏi người quản trị hệ thống để cài đặt nó." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 792d5fe671bf98c556ffa6daec0a230de5975eb7..baddc87930234924cc1e07f05d8a6f6ad2df08d7 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/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-11-21 00:01+0100\n" -"PO-Revision-Date: 2012-11-20 04:39+0000\n" -"Last-Translator: Sơn Nguyễn \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -27,24 +27,24 @@ msgstr "Mật khẩu" msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "Tải về" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "Không có xem trước cho" -#: templates/public.php:35 +#: templates/public.php:50 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_trashbin.po b/l10n/vi/files_trashbin.po index 01e4eb471c22ee1a915086a86c29116e75156308..83efb8ffbaf7d017b5b7f8b63689119b28f76e71 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/files_trashbin.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-09 00:05+0100\n" -"PO-Revision-Date: 2013-03-07 23:40+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "Không thể óa %s vĩnh viễn" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" @@ -32,6 +32,10 @@ msgstr "Không thể khôi phục %s" msgid "perform restore operation" msgstr "thực hiện phục hồi" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "Lỗi" + #: js/trash.js:34 msgid "delete file permanently" msgstr "xóa file vĩnh viễn" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index df14039e1148212bab582cd8b68a65a2ac0f59fe..207ecde6dc1a7f2f5d25d08fecfe388b1d96cb3e 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -43,11 +43,11 @@ msgstr "Thất bại" msgid "File %s could not be reverted to version %s" msgstr "File %s không thể khôi phục về phiên bản %s" -#: history.php:68 +#: history.php:69 msgid "No old versions available" msgstr "Không có phiên bản cũ nào" -#: history.php:73 +#: history.php:74 msgid "No path specified" msgstr "Không chỉ ra đường dẫn rõ ràng" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 7d13e51f4441678e797e79891a0d14f230ea3747..fc813abbb50d5d7936119302f5ec82815bc5cc15 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# , 2012. -# sao sang , 2013. -# Sơn Nguyễn , 2012. +# mattheu_9x , 2012 +# mattheu_9x , 2012 +# saosangm , 2013 +# Sơn Nguyễn , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -97,10 +97,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index c0451608cf16628df89a5831569874c85849a8e5..649183dcf96bde18584655e617483f96cae3bdfe 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -99,7 +99,7 @@ msgstr "Cập nhật lên {appversion}" msgid "Disable" msgstr "Tắt" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "Bật" @@ -107,64 +107,64 @@ msgstr "Bật" msgid "Please wait...." msgstr "Xin hãy đợi..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "Lỗi" + +#: js/apps.js:90 msgid "Updating...." msgstr "Đang cập nhật..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "Lỗi khi cập nhật ứng dụng" -#: js/apps.js:87 -msgid "Error" -msgstr "Lỗi" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "Đã cập nhật" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "Đang tiến hành lưu ..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "đã xóa" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "lùi lại" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "Nhóm" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "Nhóm quản trị" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "Xóa" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -323,11 +323,15 @@ msgstr "" msgid "More" msgstr "hơn" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "ít" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index 57c796e00db20b026f43e25794eaf661b5c80f1c..9f0e00a50a2f519fcee2746d56f6a8e4d7c0667b 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 18:30+0000\n" -"Last-Translator: saosangm \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index e7faf90b0ade6db2204aaaf2365d3fdcc1117b2d..b40e22884401de65b5517ee255fb096a2d2a9f92 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# HO Gin Wang , 2013. # marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -22,30 +23,30 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "User %s shared a file with you" -msgstr "" +msgstr "用户 %s 与您分享了一个文件" #: ajax/share.php:99 #, php-format msgid "User %s shared a folder with you" -msgstr "" +msgstr "用户 %s 与您分享了一个文件夹" #: ajax/share.php:101 #, php-format msgid "" "User %s shared the file \"%s\" with you. It is available for download here: " "%s" -msgstr "" +msgstr "用户 %s 与您分享了文件“%s”。点击下载:%s" #: ajax/share.php:104 #, php-format msgid "" "User %s shared the folder \"%s\" with you. It is available for download " "here: %s" -msgstr "" +msgstr "用户 %s 与您分享了文件夹“%s”。点击下载:%s" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "" +msgstr "未选择分类类型。" #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -54,13 +55,13 @@ msgstr "没有分类添加了?" #: ajax/vcategories/add.php:37 #, php-format msgid "This category already exists: %s" -msgstr "" +msgstr "此分类已存在:%s" #: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "" +msgstr "未选择对象类型。" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 @@ -162,106 +163,108 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "秒前" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分钟前" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" -msgstr "" +msgstr "1小时前" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" -msgstr "" +msgstr "{hours}小时前" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "上个月" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" -msgstr "" +msgstr "{months}月前" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "选择" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好的" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "否" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "选择" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "好的" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "" +msgstr "未指定对象类型。" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "错误" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "" +msgstr "未指定应用名称。" #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "" +msgstr "未安装所需要的文件 {file} !" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" -msgstr "" +msgstr "已分享" #: js/share.js:90 msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "分享出错" @@ -299,11 +302,11 @@ msgstr "密码" #: js/share.js:173 msgid "Email link to person" -msgstr "" +msgstr "面向个人的电子邮件链接" #: js/share.js:174 msgid "Send" -msgstr "" +msgstr "发送" #: js/share.js:178 msgid "Set expiration date" @@ -321,72 +324,72 @@ msgstr "通过电子邮件分享:" msgid "No people found" msgstr "查无此人" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "不允许重复分享" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "已经与 {user} 在 {item} 中分享" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "取消分享" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "可编辑" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "访问控制" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "创建" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "更新" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "删除" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "分享" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "密码保护" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." -msgstr "" +msgstr "发送中……" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" -msgstr "" +msgstr "电子邮件已发送" #: js/update.js:14 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "" +msgstr "升级失败。请向ownCloud社区报告此问题。" #: js/update.js:18 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" +msgstr "升级成功。现在为您跳转到ownCloud。" #: lostpassword/controller.php:48 msgid "ownCloud password reset" @@ -480,7 +483,7 @@ msgstr "" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" +msgstr "请升级您的PHP版本以稳定运行ownCloud。" #: templates/installation.php:32 msgid "" @@ -498,14 +501,14 @@ msgstr "没有安全随机码生成器,黑客可以预测密码重置令牌并 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "" +msgstr "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。" #: templates/installation.php:40 msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "要获得大概如何配置您的服务器的相关信息,参见说明文档。" #: templates/installation.php:44 msgid "Create an admin account" @@ -533,23 +536,23 @@ msgstr "将会使用" msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "完成安装" @@ -589,7 +592,7 @@ msgstr "登陆" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "备选登录" #: templates/part.pagenavi.php:3 msgid "prev" @@ -602,4 +605,4 @@ msgstr "前进" #: templates/update.php:3 #, php-format msgid "Updating ownCloud to version %s, this may take a while." -msgstr "" +msgstr "ownCloud正在升级至 %s 版,这可能需要一点时间。" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index eb2f7a20a6a8ab16be5a013c834be18f5aaf5293..e08b45e55c1a9e7477d0c2df171345f7667cd0f2 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -72,7 +72,7 @@ msgstr "写磁盘失败" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -92,39 +92,46 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "Pending" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "替换" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "推荐名称" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "取消" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "已用 {old_name} 替换 {new_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "撤销" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 个文件正在上传" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -153,68 +160,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "不能上传你指定的文件,可能因为它是个文件夹或者大小为0" -#: js/files.js:263 -msgid "Upload Error" -msgstr "上传错误" - -#: js/files.js:274 -msgid "Close" -msgstr "关闭" - -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 个文件正在上传" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} 个文件正在上传" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "" -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "上传取消了" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传。关闭页面会取消上传。" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "网址不能为空。" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "出错" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "名字" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "大小" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "修改日期" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 个文件夹" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 个文件" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index 262bed13b5928d8f3139e8d10f84cf8bf4568cd2..878e5e26646323990df07471be571125d653d0f0 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-10 00:08+0100\n" -"PO-Revision-Date: 2013-02-09 23:09+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/zh_CN.GB2312/files_external.po b/l10n/zh_CN.GB2312/files_external.po index 6d0f0462422511d8ae8d3aa7eeb69ad695713bc1..d3602f8d94dc0d97996233c97a97a1c7c5b3a382 100644 --- a/l10n/zh_CN.GB2312/files_external.po +++ b/l10n/zh_CN.GB2312/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# HO Gin Wang , 2013. # marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -38,18 +39,18 @@ msgstr "请提供一个有效的 Dropbox app key 和 secret。" msgid "Error configuring Google Drive storage" msgstr "配置 Google Drive 存储失败" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "注意:“SMB客户端”未安装。CIFS/SMB分享不可用。请向您的系统管理员请求安装该客户端。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " "install it." -msgstr "" +msgstr "注意:PHP的FTP支持尚未启用或未安装。FTP分享不可用。请向您的系统管理员请求安装。" #: templates/settings.php:3 msgid "External Storage" @@ -61,7 +62,7 @@ msgstr "文件夹名" #: templates/settings.php:10 msgid "External storage" -msgstr "" +msgstr "外部存储" #: templates/settings.php:11 msgid "Configuration" @@ -77,7 +78,7 @@ msgstr "可应用" #: templates/settings.php:33 msgid "Add storage" -msgstr "" +msgstr "扩容" #: templates/settings.php:90 msgid "None set" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index a25727470d6e4b3cd042abdd622ff9ee9de36af8..08809924dfac32bb93666fbee9826e831a1b5457 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/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-10-12 02:03+0200\n" -"PO-Revision-Date: 2012-10-11 23:45+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下载" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "没有预览可用于" -#: templates/public.php:35 +#: templates/public.php:50 msgid "web services under your control" msgstr "您控制的网络服务" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index c433a8e19b7cce7f69924a8bf0b3acf9d99a7ead..1706c782c5dcd74767b9de8545efd9bdec57527f 100644 --- a/l10n/zh_CN.GB2312/files_trashbin.po +++ b/l10n/zh_CN.GB2312/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-08 00:25+0100\n" -"PO-Revision-Date: 2013-03-07 23:25+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -17,12 +17,12 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "出错" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 01b05ceb323146f356bd44e701798f747cb120ea..346dfc9063a3d377bf6fdc1262ca49ed93800a70 100644 --- a/l10n/zh_CN.GB2312/files_versions.po +++ b/l10n/zh_CN.GB2312/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# HO Gin Wang , 2013. # marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-28 00:04+0100\n" -"PO-Revision-Date: 2013-02-27 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -21,38 +22,38 @@ msgstr "" #: ajax/rollbackVersion.php:15 #, php-format msgid "Could not revert: %s" -msgstr "" +msgstr "无法恢复:%s" #: history.php:40 msgid "success" -msgstr "" +msgstr "成功" #: history.php:42 #, php-format msgid "File %s was reverted to version %s" -msgstr "" +msgstr "文件 %s 已被恢复为 %s 的版本" #: history.php:49 msgid "failure" -msgstr "" +msgstr "失败" #: history.php:51 #, php-format msgid "File %s could not be reverted to version %s" -msgstr "" +msgstr "文件 %s 无法恢复为 %s 的版本" -#: history.php:68 +#: history.php:69 msgid "No old versions available" -msgstr "" +msgstr "没有可用的旧版本" -#: history.php:73 +#: history.php:74 msgid "No path specified" -msgstr "" +msgstr "未指定路径" #: js/versions.js:6 msgid "Versions" -msgstr "" +msgstr "版本" #: templates/history.php:20 msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +msgstr "请点击“恢复”按钮把文件恢复到早前的版本" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 12bfd8924933ccf0309faae93d0050912d567118..b8451f60b6fa0b835bbdc118378f3c23c386b991 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/lib.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# marguerite su , 2012. +# marguerite su , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -94,10 +94,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." @@ -181,12 +177,12 @@ msgstr "" msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" #: setup.php:854 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "请双击安装向导。" #: template.php:113 msgid "seconds ago" @@ -203,7 +199,7 @@ msgstr "%d 分钟前" #: template.php:116 msgid "1 hour ago" -msgstr "" +msgstr "1小时前" #: template.php:117 #, php-format diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index 01b153143fd6e23790f9c21c234ac67020d644cf..a259a909f5c682fe34a10f8bad3496ff106fba02 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,13 +4,14 @@ # # Translators: # , 2012. +# HO Gin Wang , 2013. # marguerite su , 2012. msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-02-27 14:35+0100\n" -"PO-Revision-Date: 2013-02-27 13:35+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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,7 +31,7 @@ msgstr "认证错误" #: ajax/changedisplayname.php:32 msgid "Unable to change display name" -msgstr "" +msgstr "无法更改显示名称" #: ajax/creategroup.php:10 msgid "Group already exists" @@ -70,7 +71,7 @@ msgstr "非法请求" #: ajax/togglegroups.php:12 msgid "Admins can't remove themself from the admin group" -msgstr "" +msgstr "管理员无法将自己从管理组中移除" #: ajax/togglegroups.php:30 #, php-format @@ -84,84 +85,84 @@ msgstr "未能将用户从群组 %s 移除" #: ajax/updateapp.php:14 msgid "Couldn't update app." -msgstr "" +msgstr "应用无法升级。" #: js/apps.js:30 msgid "Update to {appversion}" -msgstr "" +msgstr "升级至{appversion}" #: js/apps.js:36 js/apps.js:76 msgid "Disable" msgstr "禁用" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "启用" #: js/apps.js:55 msgid "Please wait...." -msgstr "" - -#: js/apps.js:84 -msgid "Updating...." -msgstr "" +msgstr "请稍候……" -#: js/apps.js:87 -msgid "Error while updating app" -msgstr "" - -#: js/apps.js:87 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 msgid "Error" msgstr "出错" #: js/apps.js:90 +msgid "Updating...." +msgstr "升级中……" + +#: js/apps.js:93 +msgid "Error while updating app" +msgstr "应用升级时出现错误" + +#: js/apps.js:96 msgid "Updated" -msgstr "" +msgstr "已升级" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "保存中..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "删除" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "撤销" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" -msgstr "" +msgstr "无法移除用户" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "组" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "群组管理员" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "删除" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" -msgstr "" +msgstr "添加群组" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" -msgstr "" +msgstr "请填写有效用户名" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" -msgstr "" +msgstr "新增用户时出现错误" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" -msgstr "" +msgstr "请填写有效密码" #: personal.php:29 personal.php:30 msgid "__language_name__" @@ -182,18 +183,18 @@ msgstr "您的数据文件夹和您的文件或许能够从互联网访问。own #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "配置注意" #: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "" +msgstr "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "请双击安装向导。" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -207,7 +208,7 @@ msgstr "" #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "区域设置未运作" #: templates/admin.php:63 #, php-format @@ -219,7 +220,7 @@ msgstr "" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "互联网连接未运作" #: templates/admin.php:78 msgid "" @@ -233,7 +234,7 @@ msgstr "" #: templates/admin.php:92 msgid "Cron" -msgstr "" +msgstr "Cron" #: templates/admin.php:101 msgid "Execute one task with each page loaded" @@ -257,48 +258,48 @@ msgstr "" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "开启分享API" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允许应用使用分享API" #: templates/admin.php:142 msgid "Allow links" -msgstr "" +msgstr "允许链接" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允许用户通过链接共享内容" #: templates/admin.php:150 msgid "Allow resharing" -msgstr "" +msgstr "允许转帖" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允许用户再次共享已共享的内容" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允许用户向任何人分享" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "只允许用户向所在群组中的其他用户分享" #: templates/admin.php:168 msgid "Security" -msgstr "" +msgstr "安全" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "强制HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "强制客户端通过加密连接与ownCloud连接" #: templates/admin.php:185 msgid "" @@ -318,11 +319,15 @@ msgstr "" msgid "More" msgstr "更多" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "更少" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" -msgstr "" +msgstr "版本" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the %s of the available %s" -msgstr "" +msgstr "您已使用%s/%s" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "获取应用并同步您的文件" #: templates/personal.php:26 msgid "Show First Run Wizard again" -msgstr "" +msgstr "再次显示首次运行向导" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" @@ -419,19 +424,19 @@ msgstr "改变密码" #: templates/personal.php:56 templates/users.php:78 msgid "Display Name" -msgstr "" +msgstr "显示名称" #: templates/personal.php:57 msgid "Your display name was changed" -msgstr "" +msgstr "您的显示名称已修改" #: templates/personal.php:58 msgid "Unable to change your display name" -msgstr "" +msgstr "无法修改您的显示名称" #: templates/personal.php:61 msgid "Change display name" -msgstr "" +msgstr "更改显示名称" #: templates/personal.php:70 msgid "Email" @@ -455,15 +460,15 @@ msgstr "帮助翻译" #: templates/personal.php:91 msgid "WebDAV" -msgstr "" +msgstr "WebDAV" #: templates/personal.php:93 msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" +msgstr "使用此地址来在您的文件管理器中连接您的ownCloud" #: templates/users.php:21 templates/users.php:77 msgid "Login Name" -msgstr "" +msgstr "登录名" #: templates/users.php:32 msgid "Create" @@ -471,11 +476,11 @@ msgstr "新建" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "默认容量" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" -msgstr "" +msgstr "无限制" #: templates/users.php:59 templates/users.php:154 msgid "Other" @@ -483,16 +488,16 @@ msgstr "其他的" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "容量" #: templates/users.php:95 msgid "change display name" -msgstr "" +msgstr "更改显示名称" #: templates/users.php:99 msgid "set new password" -msgstr "" +msgstr "设置新的密码" #: templates/users.php:134 msgid "Default" -msgstr "" +msgstr "默认" diff --git a/l10n/zh_CN.GB2312/user_ldap.po b/l10n/zh_CN.GB2312/user_ldap.po index e3448eda1cc64e870d23334b8bc9c1c0c9254241..2de59e1c075a2d7f71e75e8aea2e2958b8fd9e94 100644 --- a/l10n/zh_CN.GB2312/user_ldap.po +++ b/l10n/zh_CN.GB2312/user_ldap.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index e9984fbe007c063b9d72d5bb88d563326fe24caa..672fbad82e5b23ccc17396300209cced93b46172 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index dfb7f18b06413c44855150647b093267bf77709a..8b0bba0a795745f6106082e287933b23824ae1d6 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -167,86 +167,88 @@ msgstr "十二月" msgid "Settings" msgstr "设置" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "秒前" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "一分钟前" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分钟前" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1小时前" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 小时前" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "上月" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 月前" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "月前" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "选择(&C)..." +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "否" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "选择(&C)..." -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "好" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "未指定对象类型。" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "错误" @@ -266,7 +268,7 @@ msgstr "已共享" msgid "Share" msgstr "共享" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "共享时出错" @@ -326,59 +328,59 @@ msgstr "通过Email共享" msgid "No people found" msgstr "未找到此人" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "在{item} 与 {user}共享。" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "取消共享" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "可以修改" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "访问控制" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "创建" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "更新" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "删除" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "共享" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "邮件已发送" @@ -538,23 +540,23 @@ msgstr "将被使用" msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "安装完成" @@ -586,7 +588,7 @@ msgstr "忘记密码?" #: templates/login.php:41 msgid "remember" -msgstr "记住" +msgstr "" #: templates/login.php:43 msgid "Log in" diff --git a/l10n/zh_CN/files.po b/l10n/zh_CN/files.po index 60d78dcb3497a2a47832dc941c93f0526213858d..f16dc8ac1a4ce86ab7a242c732fb132b4e819e63 100644 --- a/l10n/zh_CN/files.po +++ b/l10n/zh_CN/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Xuetian Weng \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -77,7 +77,7 @@ msgstr "写入磁盘失败" msgid "Not enough storage available" msgstr "没有足够的存储空间" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "无效文件夹。" @@ -97,39 +97,46 @@ msgstr "删除" msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "操作等待中" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} 已存在" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "替换" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "建议名称" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "取消" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "已将 {old_name}替换成 {new_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "撤销" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "进行删除操作" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1个文件上传中" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' 是一个无效的文件名。" @@ -158,68 +165,60 @@ msgid "" "big." msgstr "下载正在准备中。如果文件较大可能会花费一些时间。" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "无法上传文件,因为它是一个目录或者大小为 0 字节" -#: js/files.js:263 -msgid "Upload Error" -msgstr "上传错误" - -#: js/files.js:274 -msgid "Close" -msgstr "关闭" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "没有足够可用空间" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1个文件上传中" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} 个文件上传中" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "上传已取消" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "文件正在上传中。现在离开此页会导致上传动作被取消。" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "URL不能为空" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "错误" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "名称" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "大小" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "修改日期" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1个文件夹" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} 个文件夹" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 个文件" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} 个文件" diff --git a/l10n/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 1807d6a5f3993201cc747f91ecca471c790eccd7..0b01ef90576d890a762a463abaedc3c9b9a278f7 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 08:40+0000\n" -"Last-Translator: ccb \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/zh_CN/files_external.po b/l10n/zh_CN/files_external.po index 148b9bfc8e41869b0a3d7bebf70c358a4c582684..71015f5413d9c4b58bb0126735a140e88f3d9212 100644 --- a/l10n/zh_CN/files_external.po +++ b/l10n/zh_CN/files_external.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -40,13 +40,13 @@ msgstr "请提供有效的Dropbox应用key和secret" msgid "Error configuring Google Drive storage" msgstr "配置Google Drive存储时出错" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "警告:“smbclient” 尚未安装。CIFS/SMB 分享挂载无法实现。请咨询系统管理员进行安装。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 149353d11006059e2ec890adff4b9608b6ca1fff..f77a967602e7e497c371e96c5a09c7153dbfb8ea 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/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-28 02:02+0200\n" -"PO-Revision-Date: 2012-09-27 14:41+0000\n" -"Last-Translator: waterone \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -26,24 +26,24 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:9 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:11 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:14 templates/public.php:30 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下载" -#: templates/public.php:29 +#: templates/public.php:40 msgid "No preview available for" msgstr "没有预览" -#: templates/public.php:37 +#: templates/public.php:50 msgid "web services under your control" msgstr "您控制的web服务" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index 0b6373114e792c694a7abb49e5ef20b63aa25bda..51216ed592ac40ba1482744b83789c5b03a66607 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/files_trashbin.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 08:50+0000\n" -"Last-Translator: ccb \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -18,12 +18,12 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/delete.php:40 +#: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" msgstr "无法彻底删除文件%s" -#: ajax/undelete.php:41 +#: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" msgstr "无法恢复%s" @@ -32,6 +32,10 @@ msgstr "无法恢复%s" msgid "perform restore operation" msgstr "执行恢复操作" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "错误" + #: js/trash.js:34 msgid "delete file permanently" msgstr "彻底删除文件" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index ada0de78abe97259dca52d068e8f097c0f43975e..d617fbb9d4d8f892c57bf7fd422922bf9c0beddf 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/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: 2013-03-02 00:03+0100\n" -"PO-Revision-Date: 2013-03-01 09:00+0000\n" -"Last-Translator: bzdk \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index a74f39f19bf34376bc4869db1219a7655531d574..ed930d2280844af885a909faea2c730d00ec3a9a 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# marguerite su , 2013. -# , 2012. +# hanfeng , 2012 +# marguerite su , 2013 +# leonfeng , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: marguerite su \n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+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" @@ -96,10 +96,6 @@ msgstr "请设置一个管理员用户名。" msgid "Set an admin password." msgstr "请设置一个管理员密码。" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "请指定一个数据目录。" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index 2fd9d8ee34cee7d48f861052a451ec312b52866a..b00faa27fa5a15aef60703a904a73b2481fc5bc0 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/settings.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 18:12+0000\n" -"Last-Translator: ccb \n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+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" @@ -100,7 +100,7 @@ msgstr "更新至 {appversion}" msgid "Disable" msgstr "禁用" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "启用" @@ -108,64 +108,64 @@ msgstr "启用" msgid "Please wait...." msgstr "请稍等...." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "错误" + +#: js/apps.js:90 msgid "Updating...." msgstr "正在更新...." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "更新 app 时出错" -#: js/apps.js:87 -msgid "Error" -msgstr "错误" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "已更新" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "正在保存" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "已经删除" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "撤销" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "无法移除用户" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "组" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "组管理员" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "删除" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "添加组" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "必须提供合法的用户名" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "创建用户出错" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "必须提供合法的密码" @@ -324,11 +324,15 @@ msgstr "日志级别" msgid "More" msgstr "更多" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "更少" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "版本" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index a642c9b21d8e34fd1c856497463abaee7651d780..7c8b3ea542db15d34f4433bcb1571a5c0a3a7b7a 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-23 00:05+0100\n" -"PO-Revision-Date: 2013-01-21 23:23+0000\n" -"Last-Translator: Xuetian Weng \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" @@ -29,7 +29,7 @@ msgstr "WebDAV 认证" msgid "URL: http://" msgstr "URL:http://" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 71c83754378f3f36e5bf1e26e71c57f28a72c8b0..2d4729abd326a8cdac0e7899b2376cfd8b6e227e 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -162,86 +162,88 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "今日" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "昨日" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "前一月" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "個月之前" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "OK" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" msgstr "Yes" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "OK" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "No" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "錯誤" @@ -261,7 +263,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -321,59 +323,59 @@ msgstr "以電郵分享" msgid "No people found" msgstr "找不到" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "取消分享" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "新增" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "更新" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "刪除" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "分享" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "郵件已傳" @@ -533,23 +535,23 @@ msgstr "將被使用" msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:141 +#: templates/installation.php:143 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:146 +#: templates/installation.php:148 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:156 +#: templates/installation.php:158 msgid "Database tablespace" msgstr "" -#: templates/installation.php:163 +#: templates/installation.php:165 msgid "Database host" msgstr "" -#: templates/installation.php:169 +#: templates/installation.php:171 msgid "Finish setup" msgstr "" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index 6e8c99d9760109e8fe572db89301ce1991c4a594..4bdea350bbf6df4c88781ab8ad3dcf88c4f2cf4c 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/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: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 14:50+0000\n" -"Last-Translator: amanda.shuuemura \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,7 +71,7 @@ msgstr "" msgid "Not enough storage available" msgstr "" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "" @@ -91,39 +91,46 @@ msgstr "刪除" msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "" @@ -152,68 +159,60 @@ msgid "" "big." msgstr "" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "" -#: js/files.js:263 -msgid "Upload Error" -msgstr "" - -#: js/files.js:274 -msgid "Close" +#: js/files.js:272 +msgid "Not enough space available" msgstr "" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." msgstr "" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." msgstr "" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "錯誤" + +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "名稱" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{}文件夾" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "" diff --git a/l10n/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index c1002a17a4fd1b4da37274e930e657ddcb510c38..e74b971e803c593b3c61d66227b73ac74ca088de 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 09:10+0000\n" -"Last-Translator: dtsang29 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_HK/files_external.po b/l10n/zh_HK/files_external.po index f5a0dad84288b6d77ed9fb2affd504c4798ca680..c58c75be333c630ab618517dc6a0c3e456d1d838 100644 --- a/l10n/zh_HK/files_external.po +++ b/l10n/zh_HK/files_external.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 02:10+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 792810587f790ddc80fca56334c2c5dd917fb01e..323dd803c1f2296a9ed972725a365fdd9f690ca3 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/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: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2012-08-12 22:35+0000\n" -"Last-Translator: FULL NAME \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,14 @@ msgstr "" msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:19 templates/public.php:37 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下載" -#: templates/public.php:34 +#: templates/public.php:40 msgid "No preview available for" msgstr "" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 77e0f2db5c8cb3674090d4b751c5c76ea36e6924..a487e0d631c3dceccdcc01ed4065b4a372746251 100644 --- a/l10n/zh_HK/files_trashbin.po +++ b/l10n/zh_HK/files_trashbin.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 14:50+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -31,6 +31,10 @@ msgstr "" msgid "perform restore operation" msgstr "" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "錯誤" + #: js/trash.js:34 msgid "delete file permanently" msgstr "" diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index 9d6dd7c46ee062f52909563aa466236f28a181ac..ee5d894d765b68ca969c980a15fcb57a797bfd29 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/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: 2013-03-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 09:10+0000\n" -"Last-Translator: dtsang29 \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index 4d490ac35ccd1dade9bfd62ca45b6991784abaa1..20c4b0996711c0f88f1273183a8a71b5f68b6e47 100644 --- a/l10n/zh_HK/lib.po +++ b/l10n/zh_HK/lib.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" +"POT-Creation-Date: 2013-04-18 02:04+0200\n" +"PO-Revision-Date: 2013-04-18 00:05+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -93,10 +93,6 @@ msgstr "" msgid "Set an admin password." msgstr "" -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" - #: setup.php:55 #, php-format msgid "%s enter the database username." diff --git a/l10n/zh_HK/settings.po b/l10n/zh_HK/settings.po index 4420bb1820bbc15f281b41d69a98fef937a9fb13..ed45045694896373b51ea98289ef6ae33c4699ad 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/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: 2013-03-14 00:05+0100\n" -"PO-Revision-Date: 2013-03-13 02:20+0000\n" +"POT-Creation-Date: 2013-04-17 02:21+0200\n" +"PO-Revision-Date: 2013-04-17 00:21+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgstr "" msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "" @@ -100,64 +100,64 @@ msgstr "" msgid "Please wait...." msgstr "" -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "錯誤" + +#: js/apps.js:90 msgid "Updating...." msgstr "" -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "" -#: js/apps.js:87 -msgid "Error" -msgstr "錯誤" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "群組" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "刪除" -#: js/users.js:191 +#: js/users.js:262 msgid "add group" msgstr "" -#: js/users.js:352 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "" -#: js/users.js:353 js/users.js:359 js/users.js:374 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "" -#: js/users.js:358 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "" @@ -316,11 +316,15 @@ msgstr "" msgid "More" msgstr "" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:224 +msgid "Less" +msgstr "" + +#: templates/admin.php:231 templates/personal.php:102 msgid "Version" msgstr "" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:234 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 5a2c43c09ce8b3fa473f00fcfaa506d3dec9dd0c..861fd6ab9874a1bed8e0d019e78b52729ac3ef5e 100644 --- a/l10n/zh_HK/user_webdavauth.po +++ b/l10n/zh_HK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-01-15 00:03+0100\n" -"PO-Revision-Date: 2013-01-14 23:04+0000\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "" msgid "URL: http://" msgstr "" -#: templates/settings.php:6 +#: templates/settings.php:7 msgid "" "ownCloud will send the user credentials to this URL. This plugin checks the " "response and will interpret the HTTP statuscodes 401 and 403 as invalid " diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 1bce7d66785fe65f058daebf5c66bf6ec884a3f6..83022879f37e025933b3e1fe3aa718b4559262ea 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -3,19 +3,20 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# Ming Yi Wu , 2012. -# , 2013. -# Pellaeon Lin , 2013. +# admachen , 2013 +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# Ming Yi Wu , 2012 +# pellaeon , 2013 +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen \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" @@ -166,86 +167,88 @@ msgstr "十二月" msgid "Settings" msgstr "設定" -#: js/js.js:779 +#: js/js.js:718 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:780 +#: js/js.js:719 msgid "1 minute ago" msgstr "1 分鐘前" -#: js/js.js:781 +#: js/js.js:720 msgid "{minutes} minutes ago" msgstr "{minutes} 分鐘前" -#: js/js.js:782 +#: js/js.js:721 msgid "1 hour ago" msgstr "1 個小時前" -#: js/js.js:783 +#: js/js.js:722 msgid "{hours} hours ago" msgstr "{hours} 小時前" -#: js/js.js:784 +#: js/js.js:723 msgid "today" msgstr "今天" -#: js/js.js:785 +#: js/js.js:724 msgid "yesterday" msgstr "昨天" -#: js/js.js:786 +#: js/js.js:725 msgid "{days} days ago" msgstr "{days} 天前" -#: js/js.js:787 +#: js/js.js:726 msgid "last month" msgstr "上個月" -#: js/js.js:788 +#: js/js.js:727 msgid "{months} months ago" msgstr "{months} 個月前" -#: js/js.js:789 +#: js/js.js:728 msgid "months ago" msgstr "幾個月前" -#: js/js.js:790 +#: js/js.js:729 msgid "last year" msgstr "去年" -#: js/js.js:791 +#: js/js.js:730 msgid "years ago" msgstr "幾年前" -#: js/oc-dialogs.js:126 -msgid "Choose" -msgstr "選擇" +#: js/oc-dialogs.js:117 js/oc-dialogs.js:247 +msgid "Ok" +msgstr "好" -#: js/oc-dialogs.js:146 js/oc-dialogs.js:166 +#: js/oc-dialogs.js:121 js/oc-dialogs.js:189 js/oc-dialogs.js:240 msgid "Cancel" msgstr "取消" -#: js/oc-dialogs.js:162 -msgid "No" -msgstr "No" +#: js/oc-dialogs.js:185 +msgid "Choose" +msgstr "選擇" -#: js/oc-dialogs.js:163 +#: js/oc-dialogs.js:215 msgid "Yes" -msgstr "Yes" +msgstr "是" -#: js/oc-dialogs.js:180 -msgid "Ok" -msgstr "Ok" +#: js/oc-dialogs.js:222 +msgid "No" +msgstr "否" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." msgstr "未指定物件類型。" -#: js/oc-vcategories.js:95 js/oc-vcategories.js:125 js/oc-vcategories.js:136 -#: js/oc-vcategories.js:195 js/share.js:136 js/share.js:143 js/share.js:566 -#: js/share.js:578 +#: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 +#: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 +#: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 +#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:577 +#: js/share.js:589 msgid "Error" msgstr "錯誤" @@ -265,7 +268,7 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:606 +#: js/share.js:125 js/share.js:617 msgid "Error while sharing" msgstr "分享時發生錯誤" @@ -319,65 +322,65 @@ msgstr "到期日" #: js/share.js:211 msgid "Share via email:" -msgstr "透過 email 分享:" +msgstr "透過電子郵件分享:" #: js/share.js:213 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:240 +#: js/share.js:251 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:276 +#: js/share.js:287 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:297 +#: js/share.js:308 msgid "Unshare" msgstr "取消共享" -#: js/share.js:309 +#: js/share.js:320 msgid "can edit" msgstr "可編輯" -#: js/share.js:311 +#: js/share.js:322 msgid "access control" msgstr "存取控制" -#: js/share.js:314 +#: js/share.js:325 msgid "create" msgstr "建立" -#: js/share.js:317 +#: js/share.js:328 msgid "update" msgstr "更新" -#: js/share.js:320 +#: js/share.js:331 msgid "delete" msgstr "刪除" -#: js/share.js:323 +#: js/share.js:334 msgid "share" msgstr "分享" -#: js/share.js:357 js/share.js:553 +#: js/share.js:368 js/share.js:564 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:566 +#: js/share.js:577 msgid "Error unsetting expiration date" msgstr "解除過期日設定失敗" -#: js/share.js:578 +#: js/share.js:589 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:593 +#: js/share.js:604 msgid "Sending ..." -msgstr "正在寄出..." +msgstr "正在傳送..." -#: js/share.js:604 +#: js/share.js:615 msgid "Email sent" msgstr "Email 已寄出" @@ -398,7 +401,7 @@ msgstr "ownCloud 密碼重設" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" -msgstr "請循以下聯結重設你的密碼: {link}" +msgstr "請至以下連結重設您的密碼: {link}" #: lostpassword/templates/lostpassword.php:3 msgid "You will receive a link to reset your password via Email." @@ -423,7 +426,7 @@ msgstr "請求重設" #: lostpassword/templates/resetpassword.php:4 msgid "Your password was reset" -msgstr "你的密碼已重設" +msgstr "您的密碼已重設" #: lostpassword/templates/resetpassword.php:5 msgid "To login page" @@ -463,7 +466,7 @@ msgstr "存取被拒" #: templates/404.php:12 msgid "Cloud not found" -msgstr "未發現雲" +msgstr "未發現雲端" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -480,11 +483,11 @@ msgstr "安全性警告" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "您的PHP版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" +msgstr "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" #: templates/installation.php:26 msgid "Please update your PHP installation to use ownCloud securely." -msgstr "請更新您的PHP安裝以更安全地使用ownCloud。" +msgstr "請更新您的 PHP 安裝以更安全地使用 ownCloud 。" #: templates/installation.php:32 msgid "" @@ -523,43 +526,43 @@ msgstr "進階" msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:73 +#: templates/installation.php:74 msgid "Configure the database" msgstr "設定資料庫" -#: templates/installation.php:78 templates/installation.php:90 -#: templates/installation.php:101 templates/installation.php:112 -#: templates/installation.php:124 +#: templates/installation.php:79 templates/installation.php:91 +#: templates/installation.php:102 templates/installation.php:113 +#: templates/installation.php:125 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:136 +#: templates/installation.php:137 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:141 +#: templates/installation.php:144 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:146 +#: templates/installation.php:149 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:156 +#: templates/installation.php:159 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:163 +#: templates/installation.php:166 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:169 +#: templates/installation.php:172 msgid "Finish setup" msgstr "完成設定" #: templates/layout.guest.php:40 msgid "web services under your control" -msgstr "網路服務在您控制之下" +msgstr "由您控制的網路服務" #: templates/layout.user.php:58 msgid "Log out" @@ -577,7 +580,7 @@ msgstr "如果您最近並未更改密碼,您的帳號可能已經遭到入侵 #: templates/login.php:13 msgid "Please change your password to secure your account again." -msgstr "請更改您的密碼以再次取得您的帳戶的控制權。" +msgstr "請更改您的密碼以再次取得您帳戶的控制權。" #: templates/login.php:19 msgid "Lost your password?" diff --git a/l10n/zh_TW/files.po b/l10n/zh_TW/files.po index afbdfdc3f160257ac684760755765ed7f7f270f9..3ef4705fcd4ab2bf03303dcc1fc7b662662d1125 100644 --- a/l10n/zh_TW/files.po +++ b/l10n/zh_TW/files.po @@ -3,20 +3,22 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# Eddy Chang , 2012. -# , 2013. -# Pellaeon Lin , 2013. -# ywang , 2012. +# admachen , 2013 +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# Eddy Chang , 2012 +# pellaeon , 2013 +# orinx , 2013 +# pellaeon , 2013 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:31+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen \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" @@ -63,11 +65,11 @@ msgstr "只有檔案的一部分被上傳" #: ajax/upload.php:31 msgid "No file was uploaded" -msgstr "無已上傳檔案" +msgstr "沒有檔案被上傳" #: ajax/upload.php:32 msgid "Missing a temporary folder" -msgstr "遺失暫存資料夾" +msgstr "找不到暫存資料夾" #: ajax/upload.php:33 msgid "Failed to write to disk" @@ -77,7 +79,7 @@ msgstr "寫入硬碟失敗" msgid "Not enough storage available" msgstr "儲存空間不足" -#: ajax/upload.php:82 +#: ajax/upload.php:83 msgid "Invalid directory." msgstr "無效的資料夾。" @@ -97,39 +99,46 @@ msgstr "刪除" msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/files.js:293 js/files.js:409 -#: js/files.js:440 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:414 msgid "Pending" msgstr "等候中" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "{new_name} already exists" msgstr "{new_name} 已經存在" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "replace" msgstr "取代" -#: js/filelist.js:251 +#: js/filelist.js:252 msgid "suggest name" msgstr "建議檔名" -#: js/filelist.js:251 js/filelist.js:253 +#: js/filelist.js:252 js/filelist.js:254 msgid "cancel" msgstr "取消" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "replaced {new_name} with {old_name}" msgstr "使用 {new_name} 取代 {old_name}" -#: js/filelist.js:298 +#: js/filelist.js:299 msgid "undo" msgstr "復原" -#: js/filelist.js:323 +#: js/filelist.js:324 msgid "perform delete operation" msgstr "進行刪除動作" +#: js/filelist.js:406 +msgid "1 file uploading" +msgstr "1 個檔案正在上傳" + +#: js/filelist.js:409 js/filelist.js:463 +msgid "files uploading" +msgstr "檔案正在上傳中" + #: js/files.js:52 msgid "'.' is an invalid file name." msgstr "'.' 是不合法的檔名。" @@ -158,68 +167,60 @@ msgid "" "big." msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時間。" -#: js/files.js:263 +#: js/files.js:259 msgid "Unable to upload your file as it is a directory or has 0 bytes" msgstr "無法上傳您的檔案因為它可能是一個目錄或檔案大小為0" -#: js/files.js:263 -msgid "Upload Error" -msgstr "上傳發生錯誤" - -#: js/files.js:274 -msgid "Close" -msgstr "關閉" +#: js/files.js:272 +msgid "Not enough space available" +msgstr "沒有足夠的可用空間" -#: js/files.js:313 -msgid "1 file uploading" -msgstr "1 個檔案正在上傳" - -#: js/files.js:316 js/files.js:371 js/files.js:386 -msgid "{count} files uploading" -msgstr "{count} 個檔案正在上傳" - -#: js/files.js:389 js/files.js:424 +#: js/files.js:312 msgid "Upload cancelled." -msgstr "上傳取消" +msgstr "上傳已取消" -#: js/files.js:498 +#: js/files.js:408 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." msgstr "檔案上傳中。離開此頁面將會取消上傳。" -#: js/files.js:571 +#: js/files.js:481 msgid "URL cannot be empty." -msgstr "URL 不能為空白." +msgstr "URL 不能為空白。" -#: js/files.js:576 +#: js/files.js:486 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "無效的資料夾名稱,'Shared' 的使用被 Owncloud 保留" +msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" + +#: js/files.js:515 js/files.js:531 js/files.js:821 js/files.js:859 +msgid "Error" +msgstr "錯誤" -#: js/files.js:954 templates/index.php:70 +#: js/files.js:872 templates/index.php:70 msgid "Name" msgstr "名稱" -#: js/files.js:955 templates/index.php:81 +#: js/files.js:873 templates/index.php:81 msgid "Size" msgstr "大小" -#: js/files.js:956 templates/index.php:83 +#: js/files.js:874 templates/index.php:83 msgid "Modified" msgstr "修改" -#: js/files.js:975 +#: js/files.js:893 msgid "1 folder" msgstr "1 個資料夾" -#: js/files.js:977 +#: js/files.js:895 msgid "{count} folders" msgstr "{count} 個資料夾" -#: js/files.js:985 +#: js/files.js:903 msgid "1 file" msgstr "1 個檔案" -#: js/files.js:987 +#: js/files.js:905 msgid "{count} files" msgstr "{count} 個檔案" @@ -285,11 +286,11 @@ msgstr "取消上傳" #: templates/index.php:55 msgid "You don’t have write permissions here." -msgstr "您在這裏沒有編輯權。" +msgstr "您在這裡沒有編輯權。" #: templates/index.php:62 msgid "Nothing in here. Upload something!" -msgstr "沒有任何東西。請上傳內容!" +msgstr "這裡什麼也沒有,上傳一些東西吧!" #: templates/index.php:76 msgid "Download" @@ -307,7 +308,7 @@ msgstr "上傳過大" msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." -msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。 " +msgstr "您試圖上傳的檔案已超過伺服器的最大檔案大小限制。" #: templates/index.php:115 msgid "Files are being scanned, please wait." @@ -319,4 +320,4 @@ msgstr "目前掃描" #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." -msgstr "正在更新檔案系統快取..." +msgstr "正在升級檔案系統快取..." diff --git a/l10n/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 09a9812a652533c102cb3bdf81a321a85dfce370..23c337b85607eebeeeb190686b459a6eab046548 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-20 00:02+0100\n" -"PO-Revision-Date: 2013-03-19 03:40+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/zh_TW/files_external.po b/l10n/zh_TW/files_external.po index 1374f81902c6249465bb600d2e1e253c7cfebbdd..2381134dcbf49ea01fa4d583649f3fce490fe7c0 100644 --- a/l10n/zh_TW/files_external.po +++ b/l10n/zh_TW/files_external.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:32+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -39,13 +39,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "Warning: The FTP support in PHP is not enabled or installed. Mounting" " of FTP shares is not possible. Please ask your system administrator to " diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index c60cf46d161e377aea9bcadde4f3c316c28bb060..81782aed68b0ee81bbfb73993b76375977f724b2 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/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: 2013-01-25 00:05+0100\n" -"PO-Revision-Date: 2013-01-24 13:15+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" @@ -28,24 +28,24 @@ msgstr "密碼" msgid "Submit" msgstr "送出" -#: templates/public.php:17 +#: templates/public.php:10 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 分享了資料夾 %s 給您" -#: templates/public.php:19 +#: templates/public.php:13 #, php-format msgid "%s shared the file %s with you" msgstr "%s 分享了檔案 %s 給您" -#: templates/public.php:22 templates/public.php:38 +#: templates/public.php:19 templates/public.php:43 msgid "Download" msgstr "下載" -#: templates/public.php:37 +#: templates/public.php:40 msgid "No preview available for" msgstr "無法預覽" -#: templates/public.php:43 +#: templates/public.php:50 msgid "web services under your control" msgstr "在您掌控之下的網路服務" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index f2fdaa304c562c224ef24c6dddd36a34c535d72b..f903767b93b04d9cae01459a732ef55695824c90 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. +# Hydriz , 2013 +# pellaeon , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-23 00:02+0100\n" -"PO-Revision-Date: 2013-03-22 09:40+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:10+0000\n" +"Last-Translator: pellaeon \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" @@ -21,20 +22,24 @@ msgstr "" #: ajax/delete.php:42 #, php-format msgid "Couldn't delete %s permanently" -msgstr "無法永久刪除%s" +msgstr "無法永久刪除 %s" #: ajax/undelete.php:42 #, php-format msgid "Couldn't restore %s" -msgstr "無法復原%s" +msgstr "無法復原 %s" #: js/trash.js:7 js/trash.js:96 msgid "perform restore operation" msgstr "進行復原動作" +#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +msgid "Error" +msgstr "錯誤" + #: js/trash.js:34 msgid "delete file permanently" -msgstr "永久刪除文件" +msgstr "永久刪除檔案" #: js/trash.js:121 msgid "Delete permanently" @@ -66,7 +71,7 @@ msgstr "{count} 個檔案" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" -msgstr "這裏沒東西。您的垃圾桶是空的!" +msgstr "您的垃圾桶是空的!" #: templates/index.php:20 templates/index.php:22 msgid "Restore" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index 21a6ddbdf6e62d2a7c76e68f48656f3efb03e54c..84176bd3b39d86891301ce60760a80ca07a35047 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/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: 2013-03-20 00:02+0100\n" -"PO-Revision-Date: 2013-03-19 03:30+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+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" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index f7fa46649ccd8b88ffbd6e7e8724144367a8482b..09c7e166177772680c05c5b069dce2561f5a895d 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Hydriz Scholz , 2013. -# Pellaeon Lin , 2013. -# , 2012. -# , 2012. -# ywang , 2012. +# Hydriz , 2013 +# pellaeon , 2013 +# sofiasu , 2012 +# ywang , 2012 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-26 11:10+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:00+0000\n" +"Last-Translator: pellaeon \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" @@ -48,11 +48,11 @@ msgstr "管理" #: files.php:209 msgid "ZIP download is turned off." -msgstr "ZIP 下載已關閉" +msgstr "ZIP 下載已關閉。" #: files.php:210 msgid "Files need to be downloaded one by one." -msgstr "檔案需要逐一下載" +msgstr "檔案需要逐一下載。" #: files.php:211 files.php:244 msgid "Back to Files" @@ -60,7 +60,7 @@ msgstr "回到檔案列表" #: files.php:241 msgid "Selected files too large to generate zip file." -msgstr "選擇的檔案太大以致於無法產生壓縮檔" +msgstr "選擇的檔案太大以致於無法產生壓縮檔。" #: helper.php:228 msgid "couldn't be determined" @@ -92,51 +92,47 @@ msgstr "圖片" #: setup.php:34 msgid "Set an admin username." -msgstr "設置一個管理員用戶名。" +msgstr "設定管理員帳號。" #: setup.php:37 msgid "Set an admin password." -msgstr "設置一個管理員密碼。" - -#: setup.php:40 -msgid "Specify a data folder." -msgstr "" +msgstr "設定管理員密碼。" #: setup.php:55 #, php-format msgid "%s enter the database username." -msgstr "" +msgstr "%s 輸入資料庫使用者名稱。" #: setup.php:58 #, php-format msgid "%s enter the database name." -msgstr "" +msgstr "%s 輸入資料庫名稱。" #: setup.php:61 #, php-format msgid "%s you may not use dots in the database name" -msgstr "" +msgstr "%s 資料庫名稱不能包含小數點" #: setup.php:64 #, php-format msgid "%s set the database host." -msgstr "" +msgstr "%s 設定資料庫主機。" #: setup.php:132 setup.php:324 setup.php:369 msgid "PostgreSQL username and/or password not valid" -msgstr "PostgreSQL用戶名和/或密碼無效" +msgstr "PostgreSQL 用戶名和/或密碼無效" #: setup.php:133 setup.php:156 setup.php:233 msgid "You need to enter either an existing account or the administrator." -msgstr "您必須輸入一個現有的賬戶或管理員" +msgstr "您必須輸入一個現有的帳號或管理員帳號。" #: setup.php:155 setup.php:457 setup.php:524 msgid "Oracle username and/or password not valid" -msgstr "Oracle用戶名和/或密碼無效" +msgstr "Oracle 用戶名和/或密碼無效" #: setup.php:232 msgid "MySQL username and/or password not valid" -msgstr "MySQL用戶名和/或密碼無效" +msgstr "MySQL 用戶名和/或密碼無效" #: setup.php:286 setup.php:390 setup.php:399 setup.php:417 setup.php:427 #: setup.php:436 setup.php:465 setup.php:531 setup.php:557 setup.php:564 @@ -144,42 +140,42 @@ msgstr "MySQL用戶名和/或密碼無效" #: setup.php:614 #, php-format msgid "DB Error: \"%s\"" -msgstr "" +msgstr "資料庫錯誤:\"%s\"" #: setup.php:287 setup.php:391 setup.php:400 setup.php:418 setup.php:428 #: setup.php:437 setup.php:466 setup.php:532 setup.php:558 setup.php:565 #: setup.php:576 setup.php:592 setup.php:600 setup.php:609 #, php-format msgid "Offending command was: \"%s\"" -msgstr "" +msgstr "有問題的指令是:\"%s\"" #: setup.php:303 #, php-format msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" +msgstr "MySQL 使用者 '%s'@'localhost' 已經存在。" #: setup.php:304 msgid "Drop this user from MySQL" -msgstr "" +msgstr "在 MySQL 移除這個使用者" #: setup.php:309 #, php-format msgid "MySQL user '%s'@'%%' already exists" -msgstr "" +msgstr "MySQL 使用者 '%s'@'%%' 已經存在" #: setup.php:310 msgid "Drop this user from MySQL." -msgstr "" +msgstr "在 MySQL 移除這個使用者。" #: setup.php:583 setup.php:615 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" +msgstr "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"" #: setup.php:635 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "" +msgstr "MS SQL 使用者和/或密碼無效:%s" #: setup.php:853 msgid "" @@ -255,7 +251,7 @@ msgstr "最新的" #: updater.php:84 msgid "updates check is disabled" -msgstr "檢查更新已停用" +msgstr "更新檢查已停用" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index f4cb423bfa26c4975548225bad143c3d80621750..23cc130ca4f7999e63da84aac944c15f4eb7dd5f 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -3,23 +3,24 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Donahue Chuang , 2012. -# , 2012. -# , 2013. -# Pellaeon Lin , 2013. -# , 2012. -# , 2013. -# , 2012. -# , 2012. -# ywang , 2012. +# Hydriz , 2013 +# Donahue Chuang , 2012 +# dw4dev , 2012 +# pellaeon , 2013 +# orinx , 2013 +# pellaeon , 2013 +# sy6614 , 2012 +# ronnietse , 2013 +# weiyu , 2012 +# Jeff5555 , 2012 +# ywang , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-20 00:02+0100\n" -"PO-Revision-Date: 2013-03-19 04:00+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:00+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" @@ -102,7 +103,7 @@ msgstr "更新至 {appversion}" msgid "Disable" msgstr "停用" -#: js/apps.js:36 js/apps.js:64 +#: js/apps.js:36 js/apps.js:64 js/apps.js:83 msgid "Enable" msgstr "啟用" @@ -110,64 +111,64 @@ msgstr "啟用" msgid "Please wait...." msgstr "請稍候..." -#: js/apps.js:84 +#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +msgid "Error" +msgstr "錯誤" + +#: js/apps.js:90 msgid "Updating...." msgstr "更新中..." -#: js/apps.js:87 +#: js/apps.js:93 msgid "Error while updating app" msgstr "更新應用程式錯誤" -#: js/apps.js:87 -msgid "Error" -msgstr "錯誤" - -#: js/apps.js:90 +#: js/apps.js:96 msgid "Updated" msgstr "已更新" -#: js/personal.js:99 +#: js/personal.js:109 msgid "Saving..." msgstr "儲存中..." -#: js/users.js:30 +#: js/users.js:43 msgid "deleted" msgstr "已刪除" -#: js/users.js:30 +#: js/users.js:43 msgid "undo" msgstr "復原" -#: js/users.js:62 +#: js/users.js:75 msgid "Unable to remove user" msgstr "無法刪除用戶" -#: js/users.js:75 templates/users.php:26 templates/users.php:80 +#: js/users.js:88 templates/users.php:26 templates/users.php:80 #: templates/users.php:105 msgid "Groups" msgstr "群組" -#: js/users.js:78 templates/users.php:82 templates/users.php:119 +#: js/users.js:91 templates/users.php:82 templates/users.php:119 msgid "Group Admin" msgstr "群組 管理員" -#: js/users.js:99 templates/users.php:161 +#: js/users.js:111 templates/users.php:161 msgid "Delete" msgstr "刪除" -#: js/users.js:237 +#: js/users.js:262 msgid "add group" msgstr "新增群組" -#: js/users.js:400 +#: js/users.js:414 msgid "A valid username must be provided" msgstr "一定要提供一個有效的用戶名" -#: js/users.js:401 js/users.js:407 js/users.js:422 +#: js/users.js:415 js/users.js:421 js/users.js:436 msgid "Error creating user" msgstr "創建用戶時出現錯誤" -#: js/users.js:406 +#: js/users.js:420 msgid "A valid password must be provided" msgstr "一定要提供一個有效的密碼" @@ -190,7 +191,7 @@ msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路 #: templates/admin.php:29 msgid "Setup Warning" -msgstr "" +msgstr "設定警告" #: templates/admin.php:32 msgid "" @@ -205,17 +206,17 @@ msgstr "請參考安裝指南。" #: templates/admin.php:44 msgid "Module 'fileinfo' missing" -msgstr "" +msgstr "遺失 'fileinfo' 模組" #: templates/admin.php:47 msgid "" "The PHP module 'fileinfo' is missing. We strongly recommend to enable this " "module to get best results with mime-type detection." -msgstr "" +msgstr "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" #: templates/admin.php:58 msgid "Locale not working" -msgstr "" +msgstr "語系無法運作" #: templates/admin.php:63 #, php-format @@ -223,11 +224,11 @@ msgid "" "This ownCloud server can't set system locale to %s. This means that there " "might be problems with certain characters in file names. We strongly suggest" " to install the required packages on your system to support %s." -msgstr "" +msgstr "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" #: templates/admin.php:75 msgid "Internet connection not working" -msgstr "" +msgstr "去連線" #: templates/admin.php:78 msgid "" @@ -237,7 +238,7 @@ msgid "" "remote and sending of notification emails might also not work. We suggest to" " enable internet connection for this server if you want to have all features" " of ownCloud." -msgstr "" +msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" #: templates/admin.php:92 msgid "Cron" @@ -245,7 +246,7 @@ msgstr "定期執行" #: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "" +msgstr "當頁面載入時,執行" #: templates/admin.php:111 msgid "" @@ -257,19 +258,19 @@ msgstr "" msgid "" "Use systems cron service. Call the cron.php file in the owncloud folder via " "a system cronjob once a minute." -msgstr "" +msgstr "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。" #: templates/admin.php:128 msgid "Sharing" -msgstr "" +msgstr "分享" #: templates/admin.php:134 msgid "Enable Share API" -msgstr "" +msgstr "啟用分享 API" #: templates/admin.php:135 msgid "Allow apps to use the Share API" -msgstr "" +msgstr "允許 apps 使用分享 API" #: templates/admin.php:142 msgid "Allow links" @@ -277,7 +278,7 @@ msgstr "允許連結" #: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "" +msgstr "允許使用者透過公開的連結分享檔案" #: templates/admin.php:150 msgid "Allow resharing" @@ -285,15 +286,15 @@ msgstr "允許轉貼分享" #: templates/admin.php:151 msgid "Allow users to share items shared with them again" -msgstr "" +msgstr "允許使用者分享其他使用者分享給他的檔案" #: templates/admin.php:158 msgid "Allow users to share with anyone" -msgstr "" +msgstr "允許使用者與任何人分享檔案" #: templates/admin.php:161 msgid "Allow users to only share with users in their groups" -msgstr "" +msgstr "僅允許使用者在群組內分享" #: templates/admin.php:168 msgid "Security" @@ -301,18 +302,18 @@ msgstr "安全性" #: templates/admin.php:181 msgid "Enforce HTTPS" -msgstr "" +msgstr "強制啟用 HTTPS" #: templates/admin.php:182 msgid "" "Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" +msgstr "強制指定用戶端使用加密的連線連接到 ownCloud" #: templates/admin.php:185 msgid "" "Please connect to this ownCloud instance via HTTPS to enable or disable the " "SSL enforcement." -msgstr "" +msgstr "請使用 HTTPS 連線到 ownCloud,或是關閉強制使用 SSL 的選項。" #: templates/admin.php:195 msgid "Log" @@ -322,15 +323,19 @@ msgstr "紀錄" msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:223 +#: templates/admin.php:227 msgid "More" msgstr "更多" -#: templates/admin.php:230 templates/personal.php:102 +#: templates/admin.php:228 +msgid "Less" +msgstr "少" + +#: templates/admin.php:235 templates/personal.php:102 msgid "Version" msgstr "版本" -#: templates/admin.php:233 templates/personal.php:105 +#: templates/admin.php:238 templates/personal.php:105 msgid "" "Developed by the ownCloud community, the \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index 1cf834607153a01aa33fcd026405057a0801c301..19c7a6a94c8d610b9b6ef602a27ea614ffe51ab3 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-03-27 00:08+0100\n" -"PO-Revision-Date: 2013-03-23 12:10+0000\n" -"Last-Translator: Hydriz \n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:23+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" diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php index 8f057cfb6e8820c28f75cbf2d5478648db2f5902..aef0eab9bf1507d28207e3d3d797ec26925fb0a8 100644 --- a/lib/MDB2/Driver/sqlite3.php +++ b/lib/MDB2/Driver/sqlite3.php @@ -892,10 +892,10 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common $connection = $this->getConnection(); if (PEAR::isError($connection)) { return $connection; - } + } $statement =$this->connection->prepare($query); if (!$statement) { - return $this->db->raiseError(MDB2_ERROR_NOT_FOUND, null, null, + return $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, 'unable to prepare statement: '.$query); } diff --git a/lib/base.php b/lib/base.php index 76ad0654ed091c6d812b30379868579f0309ece4..7b0967df9f9ac28f762e4fc70f8ce610c9057491 100644 --- a/lib/base.php +++ b/lib/base.php @@ -278,7 +278,7 @@ class OC { OC_Config::setValue('maintenance', true); OC_Log::write('core', 'starting upgrade from ' . $installedVersion . ' to ' . $currentVersion, - OC_Log::DEBUG); + OC_Log::WARN); $minimizerCSS = new OC_Minimizer_CSS(); $minimizerCSS->clearCache(); $minimizerJS = new OC_Minimizer_JS(); @@ -323,6 +323,10 @@ class OC { // prevents javascript from accessing php session cookies ini_set('session.cookie_httponly', '1;'); + // set the cookie path to the ownCloud directory + $cookie_path = OC::$WEBROOT ?: '/'; + ini_set('session.cookie_path', $cookie_path); + // set the session name to the instance id - which is unique session_name(OC_Util::getInstanceId()); @@ -354,7 +358,7 @@ class OC { // session timeout if (isset($_SESSION['LAST_ACTIVITY']) && (time() - $_SESSION['LAST_ACTIVITY'] > 60*60*24)) { if (isset($_COOKIE[session_name()])) { - setcookie(session_name(), '', time() - 42000, '/'); + setcookie(session_name(), '', time() - 42000, $cookie_path); } session_unset(); session_destroy(); diff --git a/lib/config.php b/lib/config.php index c94eb278159164230a7d9e8ea29cca957a5d9627..9b87d4ce4e52988eca8886d915e8856218f7e9f7 100644 --- a/lib/config.php +++ b/lib/config.php @@ -130,14 +130,24 @@ class OC_Config{ return true; } - if( !file_exists( OC::$SERVERROOT."/config/config.php" )) { - return false; - } + // read all file in config dir ending by config.php + $config_files = glob( OC::$SERVERROOT."/config/*.config.php"); + + //Filter only regular files + $config_files = array_filter($config_files, 'is_file'); + + //Sort array naturally : + natsort($config_files); + + // Add default config + array_unshift($config_files,OC::$SERVERROOT."/config/config.php"); - // Include the file, save the data from $CONFIG - include OC::$SERVERROOT."/config/config.php"; - if( isset( $CONFIG ) && is_array( $CONFIG )) { - self::$cache = $CONFIG; + //Include file and merge config + foreach($config_files as $file){ + include $file; + if( isset( $CONFIG ) && is_array( $CONFIG )) { + self::$cache = array_merge(self::$cache, $CONFIG); + } } // We cached everything diff --git a/lib/db.php b/lib/db.php index 5a91421f7ab74e0e7c62f7125c57dfcaf97d1309..8f6f50bda6e3c51738586b55e4f6512d48a164c2 100644 --- a/lib/db.php +++ b/lib/db.php @@ -367,7 +367,9 @@ class OC_DB { // Optimize the query $query = self::processQuery( $query ); - + if(OC_Config::getValue( "log_query", false)) { + OC_Log::write('core', 'DB prepare : '.$query, OC_Log::DEBUG); + } self::connect(); // return the result if(self::$backend==self::BACKEND_MDB2) { @@ -952,6 +954,10 @@ class PDOStatementWrapper{ * make execute return the result instead of a bool */ public function execute($input=array()) { + if(OC_Config::getValue( "log_query", false)) { + $params_str = str_replace("\n"," ",var_export($input,true)); + OC_Log::write('core', 'DB execute with arguments : '.$params_str, OC_Log::DEBUG); + } $this->lastArguments = $input; if (count($input) > 0) { @@ -1071,7 +1077,7 @@ class PDOStatementWrapper{ public function numRows() { $regex = '/^SELECT\s+(?:ALL\s+|DISTINCT\s+)?(?:.*?)\s+FROM\s+(.*)$/i'; if (preg_match($regex, $this->statement->queryString, $output) > 0) { - $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}", PDO::FETCH_NUM); + $query = OC_DB::prepare("SELECT COUNT(*) FROM {$output[1]}"); return $query->execute($this->lastArguments)->fetchColumn(); }else{ return $this->statement->rowCount(); diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 91bcb73a55dd089e59a48c6acf69142e4f9b7e50..71b70abe3fec5f586cf3f191e3fc8bc6b7d97c39 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -343,9 +343,9 @@ class Cache { $query->execute(array($targetPath, md5($targetPath), $child['fileid'])); } - $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ?, `parent` =?' + $query = \OC_DB::prepare('UPDATE `*PREFIX*filecache` SET `path` = ?, `path_hash` = ?, `name` = ?, `parent` =?' . ' WHERE `fileid` = ?'); - $query->execute(array($target, md5($target), $newParentId, $sourceId)); + $query->execute(array($target, md5($target), basename($target), $newParentId, $sourceId)); } /** diff --git a/lib/files/cache/legacy.php b/lib/files/cache/legacy.php index f114cf0c837e85580de7f8a623112b858528de1c..b8e2548639baf4171327009f26eaa8238f839f1e 100644 --- a/lib/files/cache/legacy.php +++ b/lib/files/cache/legacy.php @@ -80,7 +80,7 @@ class Legacy { } $result = $query->execute(array($path)); $data = $result->fetchRow(); - $data['etag'] = $this->getEtag($data['path']); + $data['etag'] = $this->getEtag($data['path'], $data['user']); return $data; } @@ -90,14 +90,26 @@ class Legacy { * @param type $path * @return string */ - function getEtag($path) { + function getEtag($path, $user = null) { static $query = null; - list(, $user, , $relativePath) = explode('/', $path, 4); - if (is_null($relativePath)) { + + $pathDetails = explode('/', $path, 4); + if((!$user) && !isset($pathDetails[1])) { + //no user!? Too odd, return empty string. + return ''; + } else if(!$user) { + //guess user from path, if no user passed. + $user = $pathDetails[1]; + } + + if(!isset($pathDetails[3]) || is_null($pathDetails[3])) { $relativePath = ''; + } else { + $relativePath = $pathDetails[3]; } + if(is_null($query)){ - $query = \OC_DB::prepare('SELECT `propertyvalue` FROM `*PREFIX*properties` WHERE `userid` = ? AND propertypath = ? AND propertyname = "{DAV:}getetag"'); + $query = \OC_DB::prepare('SELECT `propertyvalue` FROM `*PREFIX*properties` WHERE `userid` = ? AND `propertypath` = ? AND `propertyname` = \'{DAV:}getetag\''); } $result = $query->execute(array($user, '/' . $relativePath)); if ($row = $result->fetchRow()) { @@ -118,7 +130,7 @@ class Legacy { $result = $query->execute(array($id)); $data = $result->fetchAll(); foreach ($data as $i => $item) { - $data[$i]['etag'] = $this->getEtag($item['path']); + $data[$i]['etag'] = $this->getEtag($item['path'], $item['user']); } return $data; } diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index 661ece5b120e37aaf5c3001e69a39e02e16e3667..f019d4fc608b34588ffbd9d4c5b093a9b5d3f70d 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -62,32 +62,35 @@ class Scanner { * @return array with metadata of the scanned file */ public function scanFile($file, $checkExisting = false) { - \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_file', array('path' => $file, 'storage' => $this->storageId)); - $data = $this->getData($file); - if ($data) { - if ($file) { - $parent = dirname($file); - if ($parent === '.') { - $parent = ''; - } - if (!$this->cache->inCache($parent)) { - $this->scanFile($parent); + if (!self::isIgnoredFile($file)) { + \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_file', array('path' => $file, 'storage' => $this->storageId)); + $data = $this->getData($file); + if ($data) { + if ($file) { + $parent = dirname($file); + if ($parent === '.') { + $parent = ''; + } + if (!$this->cache->inCache($parent)) { + $this->scanFile($parent); + } } - } - if($cacheData = $this->cache->get($file)) { - if ($data['mtime'] === $cacheData['mtime'] && - $data['size'] === $cacheData['size']) { - $data['etag'] = $cacheData['etag']; + if($cacheData = $this->cache->get($file)) { + if ($data['mtime'] === $cacheData['mtime'] && + $data['size'] === $cacheData['size']) { + $data['etag'] = $cacheData['etag']; + } } - } - if ($checkExisting and $cacheData) { - if ($data['size'] === -1) { - $data['size'] = $cacheData['size']; + if ($checkExisting and $cacheData) { + if ($data['size'] === -1) { + $data['size'] = $cacheData['size']; + } } + $this->cache->put($file, $data); } - $this->cache->put($file, $data); + return $data; } - return $data; + return null; } /** @@ -109,8 +112,8 @@ class Scanner { if ($this->storage->is_dir($path) && ($dh = $this->storage->opendir($path))) { \OC_DB::beginTransaction(); while ($file = readdir($dh)) { - if (!$this->isIgnoredFile($file)) { - $child = ($path) ? $path . '/' . $file : $file; + $child = ($path) ? $path . '/' . $file : $file; + if (!$this->isIgnoredDir($file)) { $data = $this->scanFile($child, $recursive === self::SCAN_SHALLOW); if ($data) { if ($data['size'] === -1) { @@ -144,6 +147,18 @@ class Scanner { return $size; } + /** + * @brief check if the directory should be ignored when scanning + * NOTE: the special directories . and .. would cause never ending recursion + * @param String $dir + * @return boolean + */ + private function isIgnoredDir($dir) { + if ($dir === '.' || $dir === '..') { + return true; + } + return false; + } /** * @brief check if the file should be ignored when scanning * NOTE: files with a '.part' extension are ignored as well! @@ -151,9 +166,8 @@ class Scanner { * @param String $file * @return boolean */ - private function isIgnoredFile($file) { - if ($file === '.' || $file === '..' - || pathinfo($file, PATHINFO_EXTENSION) === 'part' + public static function isIgnoredFile($file) { + if (pathinfo($file, PATHINFO_EXTENSION) === 'part' || \OC\Files\Filesystem::isFileBlacklisted($file) ) { return true; diff --git a/lib/files/cache/upgrade.php b/lib/files/cache/upgrade.php index 797f4e6ba8c5bc84ee1b552e5611f80fc317200d..ca044ba81dedef005ac0392862e0e85617c9a04e 100644 --- a/lib/files/cache/upgrade.php +++ b/lib/files/cache/upgrade.php @@ -127,6 +127,10 @@ class Upgrade { * @return array */ function getNewData($data) { + //Make sure there is a path, otherwise we can do nothing. + if(!isset($data['path'])) { + return false; + } $newData = $data; /** * @var \OC\Files\Storage\Storage $storage diff --git a/lib/files/filesystem.php b/lib/files/filesystem.php index 1580dfaf63718152f377a1ffbde03913b711ba75..c0e9d215fb5ddc8d8c73f49665d6257f6de81db7 100644 --- a/lib/files/filesystem.php +++ b/lib/files/filesystem.php @@ -23,6 +23,7 @@ * post_rename(oldpath,newpath) * copy(oldpath,newpath, &run) (if the newpath doesn't exists yes, copy, create and write will be emitted in that order) * post_rename(oldpath,newpath) + * post_initMountPoints(user, user_dir) * * the &run parameter can be set to false to prevent the operation from occurring */ @@ -280,6 +281,9 @@ class Filesystem { } } } + + // Chance to mount for other storages + \OC_Hook::emit('OC_Filesystem', 'post_initMountPoints', array('user' => $user, 'user_dir' => $root)); } /** @@ -621,10 +625,11 @@ class Filesystem { * get the content of a directory * * @param string $directory path under datadirectory + * @param string $mimetype_filter limit returned content to this mimetype or mimepart * @return array */ - public static function getDirectoryContent($directory) { - return self::$defaultInstance->getDirectoryContent($directory); + public static function getDirectoryContent($directory, $mimetype_filter = '') { + return self::$defaultInstance->getDirectoryContent($directory, $mimetype_filter); } /** @@ -660,9 +665,4 @@ class Filesystem { } } -\OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook'); -\OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook'); -\OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook'); -\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); - \OC_Util::setupFS(); diff --git a/lib/files/storage/common.php b/lib/files/storage/common.php index 8aa227ec0b72deb06bdd553b04d46e1a0c6fc565..38fe5e546f6be008daa43ad64a6cfc870afb8aa7 100644 --- a/lib/files/storage/common.php +++ b/lib/files/storage/common.php @@ -21,6 +21,10 @@ namespace OC\Files\Storage; */ abstract class Common implements \OC\Files\Storage\Storage { + private $cache; + private $scanner; + private $permissioncache; + private $watcher; public function __construct($parameters) { } @@ -269,19 +273,31 @@ abstract class Common implements \OC\Files\Storage\Storage { } public function getCache($path = '') { - return new \OC\Files\Cache\Cache($this); + if (!isset($this->cache)) { + $this->cache = new \OC\Files\Cache\Cache($this); + } + return $this->cache; } public function getScanner($path = '') { - return new \OC\Files\Cache\Scanner($this); + if (!isset($this->scanner)) { + $this->scanner = new \OC\Files\Cache\Scanner($this); + } + return $this->scanner; } public function getPermissionsCache($path = '') { - return new \OC\Files\Cache\Permissions($this); + if (!isset($this->permissioncache)) { + $this->permissioncache = new \OC\Files\Cache\Permissions($this); + } + return $this->permissioncache; } public function getWatcher($path = '') { - return new \OC\Files\Cache\Watcher($this); + if (!isset($this->watcher)) { + $this->watcher = new \OC\Files\Cache\Watcher($this); + } + return $this->watcher; } /** diff --git a/lib/files/storage/local.php b/lib/files/storage/local.php index 7b637a97059b82c91fda6070cca3b2a24c911b57..81e32587fca4be27be62cd761538031f64a97dcc 100644 --- a/lib/files/storage/local.php +++ b/lib/files/storage/local.php @@ -95,6 +95,9 @@ class Local extends \OC\Files\Storage\Common{ // sets the modification time of the file to the given value. // If mtime is nil the current time is set. // note that the access time of the file always changes to the current time. + if($this->file_exists($path) and !$this->isUpdatable($path)) { + return false; + } if(!is_null($mtime)) { $result=touch( $this->datadir.$path, $mtime ); }else{ diff --git a/lib/files/view.php b/lib/files/view.php index 19f33ad64a2f3102700146aa2ac3e5866aa10061..f607bb59aac28b5ba3b29df1a38ddecdce466da4 100644 --- a/lib/files/view.php +++ b/lib/files/view.php @@ -267,7 +267,7 @@ class View { $path = $this->getRelativePath($absolutePath); $exists = $this->file_exists($path); $run = true; - if ($this->fakeRoot == Filesystem::getRoot()) { + if ($this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -295,7 +295,7 @@ class View { list ($count, $result) = \OC_Helper::streamCopy($data, $target); fclose($target); fclose($data); - if ($this->fakeRoot == Filesystem::getRoot()) { + if ($this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { if (!$exists) { \OC_Hook::emit( Filesystem::CLASSNAME, @@ -627,7 +627,7 @@ class View { private function runHooks($hooks, $path, $post = false) { $prefix = ($post) ? 'post_' : ''; $run = true; - if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot()) { + if (Filesystem::$loaded and $this->fakeRoot == Filesystem::getRoot() && ! Cache\Scanner::isIgnoredFile($path) ) { foreach ($hooks as $hook) { if ($hook != 'read') { \OC_Hook::emit( @@ -731,6 +731,7 @@ class View { * get the content of a directory * * @param string $directory path under datadirectory + * @param string $mimetype_filter limit returned content to this mimetype or mimepart * @return array */ public function getDirectoryContent($directory, $mimetype_filter = '') { diff --git a/lib/l10n.php b/lib/l10n.php index 1e07a9b9557c1063dbeb229c450998ee3869c419..315e326b29232df4d255ec4698db186d8293f00a 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -298,10 +298,16 @@ class OC_L10N{ $temp = explode(';', $i); $temp[0] = str_replace('-', '_', $temp[0]); if( ($key = array_search($temp[0], $available)) !== false) { + if (is_null($app)) { + self::$language = $available[$key]; + } return $available[$key]; } foreach($available as $l) { if ( $temp[0] == substr($l, 0, 2) ) { + if (is_null($app)) { + self::$language = $l; + } return $l; } } diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 8b7324f3ff446c7068d4cb774fe57a4c669b3f19..ae8233f80da000f3198f61ee099e0990e8f993e3 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -18,7 +18,6 @@ "Images" => "صور", "Set an admin username." => "اعداد اسم مستخدم للمدير", "Set an admin password." => "اعداد كلمة مرور للمدير", -"Specify a data folder." => "تحديد مجلد ", "%s enter the database username." => "%s ادخل اسم المستخدم الخاص بقاعدة البيانات.", "%s enter the database name." => "%s ادخل اسم فاعدة البيانات", "%s you may not use dots in the database name" => "%s لا يسمح لك باستخدام نقطه (.) في اسم قاعدة البيانات", diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index d32e2aadfc5361de44cd1320856290b1cd243f28..2d4775a89f3ad328fc8b171728cb99703569195c 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -18,7 +18,6 @@ "Images" => "Снимки", "Set an admin username." => "Въведете потребителско име за администратор.", "Set an admin password." => "Въведете парола за администратор.", -"Specify a data folder." => "Укажете папка за данни", "%s enter the database username." => "%s въведете потребителско име за базата с данни.", "%s enter the database name." => "%s въведете име на базата с данни.", "%s you may not use dots in the database name" => "%s, не можете да ползвате точки в името на базата от данни", diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index 108bb5c09be8d33e807f89b2f5b936c43c140d5d..16dc74f40c45268548adbb59f976108bd26f1038 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -18,7 +18,6 @@ "Images" => "Imatges", "Set an admin username." => "Establiu un nom d'usuari per l'administrador.", "Set an admin password." => "Establiu una contrasenya per l'administrador.", -"Specify a data folder." => "Especifiqueu una carpeta de dades.", "%s enter the database username." => "%s escriviu el nom d'usuari de la base de dades.", "%s enter the database name." => "%s escriviu el nom de la base de dades.", "%s you may not use dots in the database name" => "%s no podeu usar punts en el nom de la base de dades", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index d9ec3d82cf74c1b2ff358f0b44d2161649ef147c..79161c74e8ea27a1edc897f20536f5850838028b 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -18,7 +18,6 @@ "Images" => "Obrázky", "Set an admin username." => "Zadejte uživatelské jméno správce.", "Set an admin password." => "Zadejte heslo správce.", -"Specify a data folder." => "Určete složku dat.", "%s enter the database username." => "Zadejte uživatelské jméno %s databáze.", "%s enter the database name." => "Zadejte název databáze pro %s databáze.", "%s you may not use dots in the database name" => "V názvu databáze %s nesmíte používat tečky.", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..6cf88c15ccc0178d485f0172bde9f56046e6a61d --- /dev/null +++ b/lib/l10n/cy_GB.php @@ -0,0 +1,55 @@ + "Cymorth", +"Personal" => "Personol", +"Settings" => "Gosodiadau", +"Users" => "Defnyddwyr", +"Apps" => "Pecynnau", +"Admin" => "Gweinyddu", +"ZIP download is turned off." => "Mae llwytho ZIP wedi ei ddiffodd.", +"Files need to be downloaded one by one." => "Mae angen llwytho ffeiliau i lawr fesul un.", +"Back to Files" => "Nôl i Ffeiliau", +"Selected files too large to generate zip file." => "Mae'r ffeiliau ddewiswyd yn rhy fawr i gynhyrchu ffeil zip.", +"couldn't be determined" => "methwyd pennu", +"Application is not enabled" => "Nid yw'r pecyn wedi'i alluogi", +"Authentication error" => "Gwall dilysu", +"Token expired. Please reload page." => "Tocyn wedi dod i ben. Ail-lwythwch y dudalen.", +"Files" => "Ffeiliau", +"Text" => "Testun", +"Images" => "Delweddau", +"Set an admin username." => "Creu enw defnyddiwr i'r gweinyddwr.", +"Set an admin password." => "Gosod cyfrinair y gweinyddwr.", +"%s enter the database username." => "%s rhowch enw defnyddiwr y gronfa ddata.", +"%s enter the database name." => "%s rhowch enw'r gronfa ddata.", +"%s you may not use dots in the database name" => "%s does dim hawl defnyddio dot yn enw'r gronfa ddata", +"%s set the database host." => "%s gosod gwesteiwr y gronfa ddata.", +"PostgreSQL username and/or password not valid" => "Enw a/neu gyfrinair PostgreSQL annilys", +"You need to enter either an existing account or the administrator." => "Rhaid i chi naill ai gyflwyno cyfrif presennol neu'r gweinyddwr.", +"Oracle username and/or password not valid" => "Enw a/neu gyfrinair Oracle annilys", +"MySQL username and/or password not valid" => "Enw a/neu gyfrinair MySQL annilys", +"DB Error: \"%s\"" => "Gwall DB: \"%s\"", +"Offending command was: \"%s\"" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Defnyddiwr MySQL '%s'@'localhost' yn bodoli eisoes.", +"Drop this user from MySQL" => "Gollwng y defnyddiwr hwn o MySQL", +"MySQL user '%s'@'%%' already exists" => "Defnyddiwr MySQL '%s'@'%%' eisoes yn bodoli", +"Drop this user from MySQL." => "Gollwng y defnyddiwr hwn o MySQL.", +"Offending command was: \"%s\", name: %s, password: %s" => "Y gorchymyn wnaeth beri tramgwydd oedd: \"%s\", enw: %s, cyfrinair: %s", +"MS SQL username and/or password not valid: %s" => "Enw a/neu gyfrinair MS SQL annilys: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", +"Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", +"seconds ago" => "eiliad yn ôl", +"1 minute ago" => "1 munud yn ôl", +"%d minutes ago" => "%d munud yn ôl", +"1 hour ago" => "1 awr yn ôl", +"%d hours ago" => "%d awr yn ôl", +"today" => "heddiw", +"yesterday" => "ddoe", +"%d days ago" => "%d diwrnod yn ôl", +"last month" => "mis diwethaf", +"%d months ago" => "%d mis yn ôl", +"last year" => "y llynedd", +"years ago" => "blwyddyn yn ôl", +"%s is available. Get more information" => "%s ar gael. Mwy o wybodaeth", +"up to date" => "cyfredol", +"updates check is disabled" => "gwirio am ddiweddariadau wedi'i analluogi", +"Could not find category \"%s\"" => "Methu canfod categori \"%s\"" +); diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 38ccbbe8e2164513f8e94516a256013f8943cd40..4850d0be19ad655bacd382ff2b1a80eb203c3657 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -18,7 +18,6 @@ "Images" => "Billeder", "Set an admin username." => "Angiv et admin brugernavn.", "Set an admin password." => "Angiv et admin kodeord.", -"Specify a data folder." => "Specificer en data mappe.", "%s enter the database username." => "%s indtast database brugernavnet.", "%s enter the database name." => "%s indtast database navnet.", "%s you may not use dots in the database name" => "%s du må ikke bruge punktummer i databasenavnet.", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 3c2069d46371f804c458362cb6c9b3f5995d0bf1..7a680574bfae73f6404522164f70f2b6c8e96ca9 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -18,7 +18,6 @@ "Images" => "Bilder", "Set an admin username." => "Setze Administrator Benutzername.", "Set an admin password." => "Setze Administrator Passwort", -"Specify a data folder." => "Datei-Verzeichnis angeben.", "%s enter the database username." => "%s gib den Datenbank-Benutzernamen an.", "%s enter the database name." => "%s gib den Datenbank-Namen an.", "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", @@ -36,7 +35,7 @@ "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Password ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfe die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfe die Installationsanleitungen.", "seconds ago" => "Gerade eben", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 9978cdf8b317b5820bb2e9ee78324d0f566117c0..eb002c97be28ce5c81853c863178a49e2c189d3c 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -18,7 +18,6 @@ "Images" => "Bilder", "Set an admin username." => "Setze Administrator Benutzername.", "Set an admin password." => "Setze Administrator Passwort", -"Specify a data folder." => "Datei-Verzeichnis angeben", "%s enter the database username." => "%s geben Sie den Datenbank-Benutzernamen an.", "%s enter the database name." => "%s geben Sie den Datenbank-Namen an.", "%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", @@ -36,7 +35,7 @@ "Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", "MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "seconds ago" => "Gerade eben", "1 minute ago" => "Vor einer Minute", "%d minutes ago" => "Vor %d Minuten", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index c17a33dfee1439060ebab42ee5e05cf2641499f1..63f5d8eb836b9367a674a77a7278782cdb55095a 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -18,19 +18,22 @@ "Images" => "Εικόνες", "Set an admin username." => "Εισάγετε όνομα χρήστη διαχειριστή.", "Set an admin password." => "Εισάγετε συνθηματικό διαχειριστή.", -"Specify a data folder." => "Καθορίστε τον φάκελο δεδομένων.", "%s enter the database username." => "%s εισάγετε το όνομα χρήστη της βάσης δεδομένων.", "%s enter the database name." => "%s εισάγετε το όνομα της βάσης δεδομένων.", "%s you may not use dots in the database name" => "%s μάλλον δεν χρησιμοποιείτε τελείες στο όνομα της βάσης δεδομένων", +"%s set the database host." => "%s ρυθμίση του κεντρικόυ υπολογιστή βάσης δεδομένων. ", "PostgreSQL username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της PostgreSQL", "You need to enter either an existing account or the administrator." => "Χρειάζεται να εισάγετε είτε έναν υπάρχον λογαριασμό ή του διαχειριστή.", "Oracle username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της Oracle", "MySQL username and/or password not valid" => "Μη έγκυρος χρήστης και/ή συνθηματικό της MySQL", "DB Error: \"%s\"" => "Σφάλμα Βάσης Δεδομένων: \"%s\"", +"Offending command was: \"%s\"" => "Η εντολη παραβατικοτητας ηταν: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "Υπάρχει ήδη ο χρήστης '%s'@'localhost' της MySQL.", "Drop this user from MySQL" => "Απόρριψη αυτού του χρήστη από την MySQL", "MySQL user '%s'@'%%' already exists" => "Ο χρήστης '%s'@'%%' της MySQL υπάρχει ήδη", "Drop this user from MySQL." => "Απόρριψη αυτού του χρήστη από την MySQL", +"Offending command was: \"%s\", name: %s, password: %s" => "Η εντολη παραβατικοτητας ηταν: \"%s\", ονομα: %s, κωδικος: %s", +"MS SQL username and/or password not valid: %s" => "Το όνομα χρήστη και/ή ο κωδικός της MS SQL δεν είναι έγκυρα: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "seconds ago" => "δευτερόλεπτα πριν", diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 37b15a375c48beda29af741b775d307154a5ffce..5b868e2d4518bf5daf3ef96916dbcfc5ffe30a91 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -18,7 +18,6 @@ "Images" => "Imágenes", "Set an admin username." => "Configurar un nombre de usuario del administrador", "Set an admin password." => "Configurar la contraseña del administrador.", -"Specify a data folder." => "Especificar la carpeta de datos.", "%s enter the database username." => "%s ingresar el usuario de la base de datos.", "%s enter the database name." => "%s ingresar el nombre de la base de datos", "%s you may not use dots in the database name" => "%s no se puede utilizar puntos en el nombre de la base de datos", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index ff3d47285fc8e60013ee3648d1b752070fdee2ae..fc25cd6b1d84d28fb519db1d5711a75626e4b87a 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -18,7 +18,6 @@ "Images" => "Imágenes", "Set an admin username." => "Configurar un nombre de administrador", "Set an admin password." => "Configurar una palabra clave de administrador", -"Specify a data folder." => "Especificar un directorio de datos", "%s enter the database username." => "%s Entre el Usuario de la Base de Datos", "%s enter the database name." => "%s Entre el Nombre de la Base de Datos", "%s you may not use dots in the database name" => "%s no puede usar puntos en el nombre de la Base de Datos", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index cdcf762d9a66dd2bdc8421cac438fb487e129f82..25909e1555e0e5ee4952729eeafb7c6ddf843c74 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -9,6 +9,7 @@ "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", "Selected files too large to generate zip file." => "Valitud failid on ZIP-faili loomiseks liiga suured.", +"couldn't be determined" => "Ei suuda tuvastada", "Application is not enabled" => "Rakendus pole sisse lülitatud", "Authentication error" => "Autentimise viga", "Token expired. Please reload page." => "Kontrollkood aegus. Paelun lae leht uuesti.", @@ -17,10 +18,24 @@ "Images" => "Pildid", "Set an admin username." => "Määra admin kasutajanimi.", "Set an admin password." => "Määra admini parool.", -"Specify a data folder." => "Määra andmete kaust.", +"%s enter the database username." => "%s sisesta andmebaasi kasutajatunnus", +"%s enter the database name." => "%s sisesta andmebaasi nimi.", +"%s you may not use dots in the database name" => "%s punktide kasutamine andmebaasi nimes pole lubatud", +"%s set the database host." => "%s määra andmebaasi server.", +"PostgreSQL username and/or password not valid" => "PostgreSQL kasutajatunnus ja/või parool pole õiged", +"You need to enter either an existing account or the administrator." => "Sisesta kas juba olemasolev konto või administrator.", +"Oracle username and/or password not valid" => "Oracle kasutajatunnus ja/või parool pole õiged", +"MySQL username and/or password not valid" => "MySQL kasutajatunnus ja/või parool pole õiged", "DB Error: \"%s\"" => "Andmebaasi viga: \"%s\"", +"Offending command was: \"%s\"" => "Tõrkuv käsk oli: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL kasutaja '%s'@'localhost' on juba olemas.", "Drop this user from MySQL" => "Kustuta see kasutaja MySQL-ist", +"MySQL user '%s'@'%%' already exists" => "MySQL kasutaja '%s'@'%%' on juba olemas", "Drop this user from MySQL." => "Kustuta see kasutaja MySQL-ist.", +"Offending command was: \"%s\", name: %s, password: %s" => "Tõrkuv käsk oli: \"%s\", nimi: %s, parool: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL kasutajatunnus ja/või parool pole õiged: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", +"Please double check the installation guides." => "Palun tutvu veelkord paigalduse juhenditega.", "seconds ago" => "sekundit tagasi", "1 minute ago" => "1 minut tagasi", "%d minutes ago" => "%d minutit tagasi", @@ -35,5 +50,6 @@ "years ago" => "aastat tagasi", "%s is available. Get more information" => "%s on saadaval. Vaata lisainfot", "up to date" => "ajakohane", -"updates check is disabled" => "uuenduste kontrollimine on välja lülitatud" +"updates check is disabled" => "uuenduste kontrollimine on välja lülitatud", +"Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"" ); diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 36eb397e4256d052c711b45589373b796bf4df7a..fde65572d8a498b4acf16c8af0daa1a1615e584c 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -18,7 +18,6 @@ "Images" => "Irudiak", "Set an admin username." => "Ezarri administraziorako erabiltzaile izena.", "Set an admin password." => "Ezarri administraziorako pasahitza.", -"Specify a data folder." => "Zehaztu data karpeta.", "%s enter the database username." => "%s sartu datu basearen erabiltzaile izena.", "%s enter the database name." => "%s sartu datu basearen izena.", "%s you may not use dots in the database name" => "%s ezin duzu punturik erabili datu basearen izenean.", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 282a8a56cdc1839901da15e584df065e6998a253..b0d423421df2ae20e890481f99e199a2ab80abf6 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -14,7 +14,8 @@ "Files" => "پرونده‌ها", "Text" => "متن", "Images" => "تصاویر", -"Specify a data folder." => "پوشه ای برای داده ها مشخص کنید.", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", +"Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "seconds ago" => "ثانیه‌ها پیش", "1 minute ago" => "1 دقیقه پیش", "%d minutes ago" => "%d دقیقه پیش", diff --git a/lib/l10n/fi.php b/lib/l10n/fi.php new file mode 100644 index 0000000000000000000000000000000000000000..daaddb25e48f83ccb62f74982992765348296cae --- /dev/null +++ b/lib/l10n/fi.php @@ -0,0 +1,3 @@ + "asetukset" +); diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 89a584d389d137d4b96ba18992d28e0780661054..201cae19536bfef7ceaa29cfb7617f4262cafafb 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -18,7 +18,6 @@ "Images" => "Kuvat", "Set an admin username." => "Aseta ylläpitäjän käyttäjätunnus.", "Set an admin password." => "Aseta ylläpitäjän salasana.", -"Specify a data folder." => "Määritä datakansio.", "%s enter the database username." => "%s anna tietokannan käyttäjätunnus.", "%s enter the database name." => "%s anna tietokannan nimi.", "%s you may not use dots in the database name" => "%s et voi käyttää pisteitä tietokannan nimessä", @@ -27,7 +26,9 @@ "MySQL username and/or password not valid" => "MySQL:n käyttäjätunnus ja/tai salasana on väärin", "DB Error: \"%s\"" => "Tietokantavirhe: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "MySQL-käyttäjä '%s'@'localhost' on jo olemassa.", +"Drop this user from MySQL" => "Pudota tämä käyttäjä MySQL:stä", "MySQL user '%s'@'%%' already exists" => "MySQL-käyttäjä '%s'@'%%' on jo olemassa", +"Drop this user from MySQL." => "Pudota tämä käyttäjä MySQL:stä.", "MS SQL username and/or password not valid: %s" => "MS SQL -käyttäjätunnus ja/tai -salasana on väärin: %s", "Please double check the installation guides." => "Lue tarkasti asennusohjeet.", "seconds ago" => "sekuntia sitten", diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 9448502df6a6a15488ebbd7846b410b9d5b387a5..ffc294504613efd5f4cd76a29e98548a19796201 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -18,7 +18,6 @@ "Images" => "Images", "Set an admin username." => "Spécifiez un nom d'utilisateur pour l'administrateur.", "Set an admin password." => "Spécifiez un mot de passe administrateur.", -"Specify a data folder." => "Spécifiez un répertoire pour les données.", "%s enter the database username." => "%s entrez le nom d'utilisateur de la base de données.", "%s enter the database name." => "%s entrez le nom de la base de données.", "%s you may not use dots in the database name" => "%s vous nez pouvez pas utiliser de points dans le nom de la base de données", diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index a11724fef43a084c097c009fe2fd6221b46e35e7..d38bf8329d19dace51e5c0b067b035c79355b859 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -18,7 +18,6 @@ "Images" => "Imaxes", "Set an admin username." => "Estabeleza un nome de usuario administrador", "Set an admin password." => "Estabeleza un contrasinal de administrador", -"Specify a data folder." => "Especifique un cartafol de datos.", "%s enter the database username." => "%s introduza o nome de usuario da base de datos", "%s enter the database name." => "%s introduza o nome da base de datos", "%s you may not use dots in the database name" => "%s non se poden empregar puntos na base de datos", diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 537066c6feacab09a5954d33e68ce39f73f0f0ab..4621c5074b8bc909c688dbeb92e6dc3fb726860f 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -18,7 +18,6 @@ "Images" => "Képek", "Set an admin username." => "Állítson be egy felhasználói nevet az adminisztrációhoz.", "Set an admin password." => "Állítson be egy jelszót az adminisztrációhoz.", -"Specify a data folder." => "Adja meg az adatokat tartalmazó könyvtár nevét.", "%s enter the database username." => "%s adja meg az adatbázist elérő felhasználó login nevét.", "%s enter the database name." => "%s adja meg az adatbázis nevét.", "%s you may not use dots in the database name" => "%s az adatbázis neve nem tartalmazhat pontot", diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 8f0e38123b6a38cc4f286add5caf56a51a10d4af..7eb26c5eb863d9ff4129446ff59885eab51af2e8 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -1,34 +1,55 @@ "bantu", -"Personal" => "perseorangan", -"Settings" => "pengaturan", -"Users" => "pengguna", -"Apps" => "aplikasi", -"Admin" => "admin", -"ZIP download is turned off." => "download ZIP sedang dimatikan", -"Files need to be downloaded one by one." => "file harus di unduh satu persatu", -"Back to Files" => "kembali ke daftar file", -"Selected files too large to generate zip file." => "file yang dipilih terlalu besar untuk membuat file zip", -"Application is not enabled" => "aplikasi tidak diaktifkan", -"Authentication error" => "autentikasi bermasalah", -"Token expired. Please reload page." => "token kadaluarsa.mohon perbaharui laman.", +"Help" => "Bantuan", +"Personal" => "Pribadi", +"Settings" => "Setelan", +"Users" => "Pengguna", +"Apps" => "Aplikasi", +"Admin" => "Admin", +"ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", +"Files need to be downloaded one by one." => "Berkas harus diunduh satu persatu.", +"Back to Files" => "Kembali ke Daftar Berkas", +"Selected files too large to generate zip file." => "Berkas yang dipilih terlalu besar untuk dibuat berkas zip-nya.", +"couldn't be determined" => "tidak dapat ditentukan", +"Application is not enabled" => "Aplikasi tidak diaktifkan", +"Authentication error" => "Galat saat autentikasi", +"Token expired. Please reload page." => "Token kedaluwarsa. Silakan muat ulang halaman.", "Files" => "Berkas", -"Text" => "teks", +"Text" => "Teks", "Images" => "Gambar", +"Set an admin username." => "Setel nama pengguna admin.", +"Set an admin password." => "Setel sandi admin.", +"%s enter the database username." => "%s masukkan nama pengguna basis data.", +"%s enter the database name." => "%s masukkan nama basis data.", +"%s you may not use dots in the database name" => "%sAnda tidak boleh menggunakan karakter titik pada nama basis data", +"%s set the database host." => "%s setel host basis data.", +"PostgreSQL username and/or password not valid" => "Nama pengguna dan/atau sandi PostgreSQL tidak valid", +"You need to enter either an existing account or the administrator." => "Anda harus memasukkan akun yang sudah ada atau administrator.", +"Oracle username and/or password not valid" => "Nama pengguna dan/atau sandi Oracle tidak valid", +"MySQL username and/or password not valid" => "Nama pengguna dan/atau sandi MySQL tidak valid", +"DB Error: \"%s\"" => "Galat Basis Data: \"%s\"", +"Offending command was: \"%s\"" => "Perintah yang bermasalah: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Pengguna MySQL '%s'@'localhost' sudah ada.", +"Drop this user from MySQL" => "Hapus pengguna ini dari MySQL", +"MySQL user '%s'@'%%' already exists" => "Pengguna MySQL '%s'@'%%' sudah ada.", +"Drop this user from MySQL." => "Hapus pengguna ini dari MySQL.", +"Offending command was: \"%s\", name: %s, password: %s" => "Perintah yang bermasalah: \"%s\", nama pengguna: %s, sandi: %s", +"MS SQL username and/or password not valid: %s" => "Nama pengguna dan/atau sandi MySQL tidak valid: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", +"Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", "seconds ago" => "beberapa detik yang lalu", -"1 minute ago" => "1 menit lalu", -"%d minutes ago" => "%d menit lalu", +"1 minute ago" => "1 menit yang lalu", +"%d minutes ago" => "%d menit yang lalu", "1 hour ago" => "1 jam yang lalu", "%d hours ago" => "%d jam yang lalu", "today" => "hari ini", "yesterday" => "kemarin", -"%d days ago" => "%d hari lalu", +"%d days ago" => "%d hari yang lalu", "last month" => "bulan kemarin", "%d months ago" => "%d bulan yang lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", -"%s is available. Get more information" => "%s tersedia. dapatkan info lebih lanjut", +"%s is available. Get more information" => "%s tersedia. Dapatkan info lebih lanjut", "up to date" => "terbaru", -"updates check is disabled" => "pengecekan pembaharuan sedang non-aktifkan", +"updates check is disabled" => "Pemeriksaan pembaruan dinonaktifkan.", "Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" ); diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 297f1efde056ad7f36e9fbdc1be6fad934f95a8b..847f767fa769905b11d6cd77b380fe70ef12c856 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -18,7 +18,6 @@ "Images" => "Immagini", "Set an admin username." => "Imposta un nome utente di amministrazione.", "Set an admin password." => "Imposta una password di amministrazione.", -"Specify a data folder." => "Specifica una cartella dei dati.", "%s enter the database username." => "%s digita il nome utente del database.", "%s enter the database name." => "%s digita il nome del database.", "%s you may not use dots in the database name" => "%s non dovresti utilizzare punti nel nome del database", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 529eec3ac524c58b39a2272070c1f28c057b0550..18d0833792d950ede556409f5487893568cd97c7 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -18,7 +18,6 @@ "Images" => "画像", "Set an admin username." => "管理者のユーザ名を設定。", "Set an admin password." => "管理者のパスワードを設定。", -"Specify a data folder." => "データフォルダを指定。", "%s enter the database username." => "%s のデータベースのユーザ名を入力してください。", "%s enter the database name." => "%s のデータベース名を入力してください。", "%s you may not use dots in the database name" => "%s ではデータベース名にドットを利用できないかもしれません。", @@ -37,7 +36,7 @@ "MS SQL username and/or password not valid: %s" => "MS SQL サーバーのユーザー名/パスワードが正しくありません: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", -"seconds ago" => "秒前", +"seconds ago" => "数秒前", "1 minute ago" => "1分前", "%d minutes ago" => "%d 分前", "1 hour ago" => "1 時間前", diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index ff623827216ecea2d328fe3917a0d1908ae23bf7..ffdf549f480c826dfd2a59d2ab5eb40e6b938322 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -5,16 +5,51 @@ "Users" => "მომხმარებელი", "Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", +"ZIP download is turned off." => "ZIP download–ი გათიშულია", +"Files need to be downloaded one by one." => "ფაილები უნდა გადმოიტვირთოს სათითაოდ.", +"Back to Files" => "უკან ფაილებში", +"Selected files too large to generate zip file." => "არჩეული ფაილები ძალიან დიდია zip ფაილის გენერაციისთვის.", +"couldn't be determined" => "ვერ განისაზღვრა", +"Application is not enabled" => "აპლიკაცია არ არის აქტიური", "Authentication error" => "ავთენტიფიკაციის შეცდომა", +"Token expired. Please reload page." => "Token–ს ვადა გაუვიდა. გთხოვთ განაახლოთ გვერდი.", "Files" => "ფაილები", "Text" => "ტექსტი", +"Images" => "სურათები", +"Set an admin username." => "დააყენეთ ადმინისტრატორის სახელი.", +"Set an admin password." => "დააყენეთ ადმინისტრატორის პაროლი.", +"%s enter the database username." => "%s შეიყვანეთ ბაზის იუზერნეიმი.", +"%s enter the database name." => "%s შეიყვანეთ ბაზის სახელი.", +"%s you may not use dots in the database name" => "%s არ მიუთითოთ წერტილი ბაზის სახელში", +"%s set the database host." => "%s მიუთითეთ ბაზის ჰოსტი.", +"PostgreSQL username and/or password not valid" => "PostgreSQL იუზერნეიმი და/ან პაროლი არ არის სწორი", +"You need to enter either an existing account or the administrator." => "თქვენ უნდა შეიყვანოთ არსებული მომხმარებელის სახელი ან ადმინისტრატორი.", +"Oracle username and/or password not valid" => "Oracle იუზერნეიმი და/ან პაროლი არ არის სწორი", +"MySQL username and/or password not valid" => "MySQL იუზერნეიმი და/ან პაროლი არ არის სწორი", +"DB Error: \"%s\"" => "DB შეცდომა: \"%s\"", +"Offending command was: \"%s\"" => "Offending ბრძანება იყო: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL მომხმარებელი '%s'@'localhost' უკვე არსებობს.", +"Drop this user from MySQL" => "წაშალე ეს მომხამრებელი MySQL–იდან", +"MySQL user '%s'@'%%' already exists" => "MySQL მომხმარებელი '%s'@'%%' უკვე არსებობს", +"Drop this user from MySQL." => "წაშალე ეს მომხამრებელი MySQL–იდან", +"Offending command was: \"%s\", name: %s, password: %s" => "Offending ბრძანება იყო: \"%s\", სახელი: %s, პაროლი: %s", +"MS SQL username and/or password not valid: %s" => "MS SQL მომხმარებელი და/ან პაროლი არ არის მართებული: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", +"Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", "seconds ago" => "წამის წინ", "1 minute ago" => "1 წუთის წინ", +"%d minutes ago" => "%d წუთის წინ", +"1 hour ago" => "1 საათის წინ", +"%d hours ago" => "%d საათის წინ", "today" => "დღეს", "yesterday" => "გუშინ", +"%d days ago" => "%d დღის წინ", "last month" => "გასულ თვეში", +"%d months ago" => "%d თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", +"%s is available. Get more information" => "%s ხელმისაწვდომია. მიიღეთ უფრო მეტი ინფორმაცია", "up to date" => "განახლებულია", -"updates check is disabled" => "განახლების ძებნა გათიშულია" +"updates check is disabled" => "განახლების ძებნა გათიშულია", +"Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" ); diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index c73d306ca0a6df932c8cef3afad80ced97101ac7..38793914073e1c51b36e3d60b67c1ba3248ce945 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -18,7 +18,6 @@ "Images" => "Attēli", "Set an admin username." => "Iestatiet administratora lietotājvārdu.", "Set an admin password." => "Iestatiet administratora paroli.", -"Specify a data folder." => "Norādiet datu mapi.", "%s enter the database username." => "%s ievadiet datubāzes lietotājvārdu.", "%s enter the database name." => "%s ievadiet datubāzes nosaukumu.", "%s you may not use dots in the database name" => "%s datubāžu nosaukumos nedrīkst izmantot punktus", diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 10a4060e1194933aa5352c184bbefbfeca3a8d19..f7cc6ad899c6393f4c936298732ea67c4cdd2ed7 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -18,7 +18,6 @@ "Images" => "Afbeeldingen", "Set an admin username." => "Stel de gebruikersnaam van de beheerder in.", "Set an admin password." => "Stel een beheerderswachtwoord in.", -"Specify a data folder." => "Geef een datamap op.", "%s enter the database username." => "%s opgeven database gebruikersnaam.", "%s enter the database name." => "%s opgeven databasenaam.", "%s you may not use dots in the database name" => "%s er mogen geen puntjes in de databasenaam voorkomen", diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index 9a1a5e836c975b408353b1c08b6a1e81b2a4d43d..c508794c42a93d30775810d5c7427d77b59a149d 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -18,7 +18,6 @@ "Images" => "Obrazy", "Set an admin username." => "Ustaw nazwę administratora.", "Set an admin password." => "Ustaw hasło administratora.", -"Specify a data folder." => "Określ folder danych.", "%s enter the database username." => "%s wpisz nazwę użytkownika do bazy", "%s enter the database name." => "%s wpisz nazwę bazy.", "%s you may not use dots in the database name" => "%s nie można używać kropki w nazwie bazy danych", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index d4f410d8885d1f2f9ec66f8cd4711620bfb8d81d..8196b43be2316ba6fdc97eb78b15395bca7a9d00 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -18,7 +18,6 @@ "Images" => "Imagens", "Set an admin username." => "Defina um nome de usuário de administrador.", "Set an admin password." => "Defina uma senha de administrador.", -"Specify a data folder." => "Especifique uma pasta de dados.", "%s enter the database username." => "%s insira o nome de usuário do banco de dados.", "%s enter the database name." => "%s insira o nome do banco de dados.", "%s you may not use dots in the database name" => "%s você não pode usar pontos no nome do banco de dados", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 2c813f5b07c9fc76fe8d7cafd550190f2b89e209..12470686e7e69fc7fcfdeab86d3dcf6acaa49a84 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -18,7 +18,6 @@ "Images" => "Imagens", "Set an admin username." => "Definir um nome de utilizador de administrador", "Set an admin password." => "Definiar uma password de administrador", -"Specify a data folder." => "Especificar a pasta para os dados.", "%s enter the database username." => "%s introduza o nome de utilizador da base de dados", "%s enter the database name." => "%s introduza o nome da base de dados", "%s you may not use dots in the database name" => "%s não é permitido utilizar pontos (.) no nome da base de dados", diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 25a88d5efc2bf4d272b97d06e60472ffd7ed4cf9..6f351cd458437a4c41795d25b7dae352fa2c096f 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -18,7 +18,6 @@ "Images" => "Изображения", "Set an admin username." => "Установить имя пользователя для admin.", "Set an admin password." => "становит пароль для admin.", -"Specify a data folder." => "Указать папку данных.", "%s enter the database username." => "%s введите имя пользователя базы данных.", "%s enter the database name." => "%s введите имя базы данных.", "%s you may not use dots in the database name" => "%s Вы не можете использовать точки в имени базы данных", diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 8c9ce61622c9fbbc1ec6f989f59c7f306d0b7d82..2ab255ef8fe09764a60da4554ffa0d5cf0cb81b1 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -18,7 +18,6 @@ "Images" => "Obrázky", "Set an admin username." => "Zadajte používateľské meno administrátora.", "Set an admin password." => "Zadajte heslo administrátora.", -"Specify a data folder." => "Zadajte priečinok pre dáta.", "%s enter the database username." => "Zadajte používateľské meno %s databázy..", "%s enter the database name." => "Zadajte názov databázy pre %s databázy.", "%s you may not use dots in the database name" => "V názve databázy %s nemôžete používať bodky", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index c03630319793680353421bf20e5b9cfcc8072711..8775cdd030300343dbfedb8df7f287aad7b2bd62 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -18,15 +18,14 @@ "Images" => "Slike", "Set an admin username." => "Nastavi uporabniško ime skrbnika.", "Set an admin password." => "Nastavi geslo skrbnika.", -"Specify a data folder." => "Določi podatkovno mapo.", "%s enter the database username." => "%s - vnos uporabniškega imena podatkovne zbirke.", "%s enter the database name." => "%s - vnos imena podatkovne zbirke.", -"%s you may not use dots in the database name" => "%s - v imenu podatkovne zbirke ni dovoljeno vpisati pik.", +"%s you may not use dots in the database name" => "%s - v imenu podatkovne zbirke ni dovoljeno uporabljati pik.", "%s set the database host." => "%s - vnos gostitelja podatkovne zbirke.", -"PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni pravilno", +"PostgreSQL username and/or password not valid" => "Uporabniško ime ali geslo PostgreSQL ni veljavno", "You need to enter either an existing account or the administrator." => "Prijaviti se je treba v obstoječi ali pa skrbniški račun.", -"Oracle username and/or password not valid" => "Uporabniško ime ali geslo Oracle ni pravilno", -"MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni pravilno", +"Oracle username and/or password not valid" => "Uporabniško ime ali geslo Oracle ni veljavno", +"MySQL username and/or password not valid" => "Uporabniško ime ali geslo MySQL ni veljavno", "DB Error: \"%s\"" => "Napaka podatkovne zbirke: \"%s\"", "Offending command was: \"%s\"" => "Napačni ukaz je: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "Uporabnik MySQL '%s'@'localhost' že obstaja.", @@ -34,7 +33,7 @@ "MySQL user '%s'@'%%' already exists" => "Uporabnik MySQL '%s'@'%%' že obstaja.", "Drop this user from MySQL." => "Odstrani uporabnika s podatkovne zbirke MySQL", "Offending command was: \"%s\", name: %s, password: %s" => "Napačni ukaz je: \"%s\", ime: %s, geslo: %s", -"MS SQL username and/or password not valid: %s" => "Uporabniško ime ali geslo MS SQL ni pravilno: %s", +"MS SQL username and/or password not valid: %s" => "Uporabniško ime ali geslo MS SQL ni veljavno: %s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", "Please double check the installation guides." => "Preverite navodila namestitve.", "seconds ago" => "pred nekaj sekundami", diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..649af3c5c258a448265678eb3d18243e40ae8656 --- /dev/null +++ b/lib/l10n/sq.php @@ -0,0 +1,55 @@ + "Ndihmë", +"Personal" => "Personale", +"Settings" => "Parametrat", +"Users" => "Përdoruesit", +"Apps" => "App", +"Admin" => "Admin", +"ZIP download is turned off." => "Shkarimi i skedarëve ZIP është i çaktivizuar.", +"Files need to be downloaded one by one." => "Skedarët duhet të shkarkohen një nga një.", +"Back to Files" => "Kthehu tek skedarët", +"Selected files too large to generate zip file." => "Skedarët e selektuar janë shumë të mëdhenj për të krijuar një skedar ZIP.", +"couldn't be determined" => "nuk u vendos dot", +"Application is not enabled" => "Programi nuk është i aktivizuar.", +"Authentication error" => "Veprim i gabuar gjatë vërtetimit të identitetit", +"Token expired. Please reload page." => "Përmbajtja ka skaduar. Ju lutemi ringarkoni faqen.", +"Files" => "Skedarët", +"Text" => "Tekst", +"Images" => "Foto", +"Set an admin username." => "Cakto emrin e administratorit.", +"Set an admin password." => "Cakto kodin e administratorit.", +"%s enter the database username." => "% shkruani përdoruesin e database-it.", +"%s enter the database name." => "%s shkruani emrin e database-it.", +"%s you may not use dots in the database name" => "%s nuk mund të përdorni pikat tek emri i database-it", +"%s set the database host." => "%s caktoni pozicionin (host) e database-it.", +"PostgreSQL username and/or password not valid" => "Përdoruesi dhe/apo kodi i PostgreSQL i pavlefshëm", +"You need to enter either an existing account or the administrator." => "Duhet të përdorni një llogari ekzistuese ose llogarinë e administratorit.", +"Oracle username and/or password not valid" => "Përdoruesi dhe/apo kodi i Oracle-it i pavlefshëm", +"MySQL username and/or password not valid" => "Përdoruesi dhe/apo kodi i MySQL-it i pavlefshëm.", +"DB Error: \"%s\"" => "Veprim i gabuar i DB-it: \"%s\"", +"Offending command was: \"%s\"" => "Komanda e gabuar ishte: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "Përdoruesi MySQL '%s'@'localhost' ekziston.", +"Drop this user from MySQL" => "Eliminoni këtë përdorues nga MySQL", +"MySQL user '%s'@'%%' already exists" => "Përdoruesi MySQL '%s'@'%%' ekziston", +"Drop this user from MySQL." => "Eliminoni këtë përdorues nga MySQL.", +"Offending command was: \"%s\", name: %s, password: %s" => "Komanda e gabuar ishte: \"%s\", përdoruesi: %s, kodi: %s", +"MS SQL username and/or password not valid: %s" => "Përdoruesi dhe/apo kodi i MS SQL i pavlefshëm: %s", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", +"Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", +"seconds ago" => "sekonda më parë", +"1 minute ago" => "1 minutë më parë", +"%d minutes ago" => "%d minuta më parë", +"1 hour ago" => "1 orë më parë", +"%d hours ago" => "%d orë më parë", +"today" => "sot", +"yesterday" => "dje", +"%d days ago" => "%d ditë më parë", +"last month" => "muajin e shkuar", +"%d months ago" => "%d muaj më parë", +"last year" => "vitin e shkuar", +"years ago" => "vite më parë", +"%s is available. Get more information" => "%s është i disponueshëm. Informohuni këtu", +"up to date" => "i azhornuar", +"updates check is disabled" => "kontrollimi i azhurnimeve është i çaktivizuar", +"Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet" +); diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 1161b0a44b75cbf25e74377ba412ce7dd0bbc628..5c6620f82baaacca558fa7e93f7055d30cbe9861 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -16,6 +16,8 @@ "Files" => "Датотеке", "Text" => "Текст", "Images" => "Слике", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", +"Please double check the installation guides." => "Погледајте водиче за инсталацију.", "seconds ago" => "пре неколико секунди", "1 minute ago" => "пре 1 минут", "%d minutes ago" => "пре %d минута", diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 84278f6d4c44fe0d3e4046549dc4cc5f90497579..4a8292989abf338894a71fd29ed2738d8891127f 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -16,6 +16,16 @@ "Files" => "Dosyalar", "Text" => "Metin", "Images" => "Resimler", +"Set an admin username." => "Bir adi kullanici vermek. ", +"Set an admin password." => "Parola yonetici birlemek. ", +"PostgreSQL username and/or password not valid" => "PostgreSQL adi kullanici ve/veya parola yasal degildir. ", +"You need to enter either an existing account or the administrator." => "Bir konto veya kullanici birlemek ihtiyacin. ", +"Oracle username and/or password not valid" => "Adi klullanici ve/veya parola Oracle mantikli değildir. ", +"DB Error: \"%s\"" => "DB Hata: ''%s''", +"Offending command was: \"%s\"" => "Komut rahasiz ''%s''. ", +"MySQL user '%s'@'localhost' exists already." => "MySQL kullanici '%s @local host zatan var. ", +"Drop this user from MySQL" => "Bu kullanici MySQLden list disari koymak. ", +"MySQL user '%s'@'%%' already exists" => "MySQL kullanici '%s @ % % zaten var (zaten yazili)", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "seconds ago" => "saniye önce", diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index 68f7151d15e7ffb1c3c6bcb16301ff2b4369094d..9dfc16c34647c20cf036760670c31cdda230c80a 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -18,7 +18,6 @@ "Images" => "Зображення", "Set an admin username." => "Встановіть ім'я адміністратора.", "Set an admin password." => "Встановіть пароль адміністратора.", -"Specify a data folder." => "Вкажіть теку для даних.", "%s enter the database username." => "%s введіть ім'я користувача бази даних.", "%s enter the database name." => "%s введіть назву бази даних.", "%s you may not use dots in the database name" => "%s не можна використовувати крапки в назві бази даних", diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 08975e44598b5e2a8884aa7e2dcd9fb3879b60a9..16487339421b1b004e7c88db9f7b13faf58c850d 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -15,9 +15,12 @@ "Files" => "文件", "Text" => "文本", "Images" => "图片", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", +"Please double check the installation guides." => "请双击安装向导。", "seconds ago" => "秒前", "1 minute ago" => "1 分钟前", "%d minutes ago" => "%d 分钟前", +"1 hour ago" => "1小时前", "today" => "今天", "yesterday" => "昨天", "%d days ago" => "%d 天前", diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index b79fdfcca1dfea1952285f5aa01dbd46634ee83c..2dea94dec368474ce4a146760fbbfe2a9f188ff3 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -18,7 +18,6 @@ "Images" => "图片", "Set an admin username." => "请设置一个管理员用户名。", "Set an admin password." => "请设置一个管理员密码。", -"Specify a data folder." => "请指定一个数据目录。", "%s enter the database username." => "%s 输入数据库用户名。", "%s enter the database name." => "%s 输入数据库名称。", "%s you may not use dots in the database name" => "%s 您不能在数据库名称中使用英文句号。", diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 62a55ebbb47527bcbeba91c65a357ebed60d3778..fbcf81ad3a42d5135cf85471faead229c5221931 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -5,10 +5,10 @@ "Users" => "使用者", "Apps" => "應用程式", "Admin" => "管理", -"ZIP download is turned off." => "ZIP 下載已關閉", -"Files need to be downloaded one by one." => "檔案需要逐一下載", +"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." => "選擇的檔案太大以致於無法產生壓縮檔", +"Selected files too large to generate zip file." => "選擇的檔案太大以致於無法產生壓縮檔。", "couldn't be determined" => "無法判斷", "Application is not enabled" => "應用程式未啟用", "Authentication error" => "認證錯誤", @@ -16,12 +16,24 @@ "Files" => "檔案", "Text" => "文字", "Images" => "圖片", -"Set an admin username." => "設置一個管理員用戶名。", -"Set an admin password." => "設置一個管理員密碼。", -"PostgreSQL username and/or password not valid" => "PostgreSQL用戶名和/或密碼無效", -"You need to enter either an existing account or the administrator." => "您必須輸入一個現有的賬戶或管理員", -"Oracle username and/or password not valid" => "Oracle用戶名和/或密碼無效", -"MySQL username and/or password not valid" => "MySQL用戶名和/或密碼無效", +"Set an admin username." => "設定管理員帳號。", +"Set an admin password." => "設定管理員密碼。", +"%s enter the database username." => "%s 輸入資料庫使用者名稱。", +"%s enter the database name." => "%s 輸入資料庫名稱。", +"%s you may not use dots in the database name" => "%s 資料庫名稱不能包含小數點", +"%s set the database host." => "%s 設定資料庫主機。", +"PostgreSQL username and/or password not valid" => "PostgreSQL 用戶名和/或密碼無效", +"You need to enter either an existing account or the administrator." => "您必須輸入一個現有的帳號或管理員帳號。", +"Oracle username and/or password not valid" => "Oracle 用戶名和/或密碼無效", +"MySQL username and/or password not valid" => "MySQL 用戶名和/或密碼無效", +"DB Error: \"%s\"" => "資料庫錯誤:\"%s\"", +"Offending command was: \"%s\"" => "有問題的指令是:\"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL 使用者 '%s'@'localhost' 已經存在。", +"Drop this user from MySQL" => "在 MySQL 移除這個使用者", +"MySQL user '%s'@'%%' already exists" => "MySQL 使用者 '%s'@'%%' 已經存在", +"Drop this user from MySQL." => "在 MySQL 移除這個使用者。", +"Offending command was: \"%s\", name: %s, password: %s" => "有問題的指令是:\"%s\" ,使用者:\"%s\",密碼:\"%s\"", +"MS SQL username and/or password not valid: %s" => "MS SQL 使用者和/或密碼無效:%s", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", "seconds ago" => "幾秒前", @@ -38,6 +50,6 @@ "years ago" => "幾年前", "%s is available. Get more information" => "%s 已經可用。取得 更多資訊", "up to date" => "最新的", -"updates check is disabled" => "檢查更新已停用", +"updates check is disabled" => "更新檢查已停用", "Could not find category \"%s\"" => "找不到分類:\"%s\"" ); diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 20df52c27bb114c7082f982d9931d8a9b838a80f..7a11a588330c7a79902fda7e82a25a0fcf4aaebe 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -49,7 +49,8 @@ class OC_Log_Owncloud { public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=>time()); + $time = date("F d, Y H:i:s", time()); + $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { fwrite($handle, json_encode($entry)."\n"); diff --git a/lib/public/share.php b/lib/public/share.php index 5cd556c6acb34fa3823a8a9576d6b677d1152be8..e0aedf356947fdab09a9ed98c4a7f451ba35aa6c 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -777,6 +777,7 @@ class Share { } } $backend = self::getBackend($itemType); + $collectionTypes = false; // Get filesystem root to add it to the file target and remove from the // file source, match file_source with the file cache if ($itemType == 'file' || $itemType == 'folder') { @@ -1261,7 +1262,7 @@ class Share { 'itemTarget' => $groupItemTarget, 'parent' => $parent, 'shareType' => $shareType, - 'shareWith' => $uid, + 'shareWith' => $shareWith['group'], 'uidOwner' => $uidOwner, 'permissions' => $permissions, 'fileSource' => $fileSource, diff --git a/lib/setup.php b/lib/setup.php index b4b07bd70e494cac213f05e08f8bc7e470ae83f9..c330729298e1891286f29dc6263acd64e287ce20 100644 --- a/lib/setup.php +++ b/lib/setup.php @@ -37,7 +37,7 @@ class OC_Setup { $error[] = $l->t('Set an admin password.'); } if(empty($options['directory'])) { - $error[] = $l->t('Specify a data folder.'); + $options['directory'] = OC::$SERVERROOT."/data"; } if($dbtype == 'mysql' or $dbtype == 'pgsql' or $dbtype == 'oci' or $dbtype == 'mssql') { //mysql and postgresql needs more config options @@ -187,6 +187,7 @@ class OC_Setup { unlink("$datadir/owncloud.db"); } //in case of sqlite, we can always fill the database + error_log("creating sqlite db"); OC_DB::createDbFromStructure('db_structure.xml'); } @@ -195,7 +196,7 @@ class OC_Setup { OC_User::createUser($username, $password); } catch(Exception $exception) { - $error[] = $exception->getMessage(); + $error[] = 'Error while trying to create admin user: ' . $exception->getMessage(); } if(count($error) == 0) { @@ -243,7 +244,7 @@ class OC_Setup { $dbusername=substr('oc_'.$username, 0, 16); if($dbusername!=$oldUser) { //hash the password so we don't need to store the admin config in the config file - $dbpassword=md5(time().$dbpass); + $dbpassword=OC_Util::generate_random_bytes(30); self::createDBUser($dbusername, $dbpassword, $connection); @@ -333,7 +334,7 @@ class OC_Setup { //add prefix to the postgresql user name to prevent collisions $dbusername='oc_'.$username; //create a new password so we don't need to store the admin config in the config file - $dbpassword=md5(time()); + $dbpassword=OC_Util::generate_random_bytes(30); self::pg_createDBUser($dbusername, $dbpassword, $connection); @@ -476,7 +477,7 @@ class OC_Setup { //add prefix to the oracle user name to prevent collisions $dbusername='oc_'.$username; //create a new password so we don't need to store the admin config in the config file - $dbpassword=md5(time().$dbpass); + $dbpassword=OC_Util::generate_random_bytes(30); //oracle passwords are treated as identifiers: // must start with aphanumeric char diff --git a/lib/templatelayout.php b/lib/templatelayout.php index 225830704a9dd35e0a6c6424f9b60437bbb3195e..69bebac050397c66d0e7c33ddcb7d1aaae56bf9d 100644 --- a/lib/templatelayout.php +++ b/lib/templatelayout.php @@ -37,7 +37,7 @@ class OC_TemplateLayout extends OC_Template { } else { parent::__construct('core', 'layout.base'); } - $versionParameter = '?' . md5(implode(OC_Util::getVersion())); + $versionParameter = '?v=' . md5(implode(OC_Util::getVersion())); // Add the js files $jsfiles = self::findJavascriptFiles(OC_Util::$scripts); $this->assign('jsfiles', array(), false); @@ -111,7 +111,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($styles as $style) { // is it in 3rdparty? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { + if(strpos($style, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $style.'.css')) { // or in the owncloud root? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "$style$fext.css" )) { @@ -169,7 +170,8 @@ class OC_TemplateLayout extends OC_Template { $files = array(); foreach($scripts as $script) { // Is it in 3rd party? - if(self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { + if(strpos($script, '3rdparty') === 0 && + self::appendIfExist($files, OC::$THIRDPARTYROOT, OC::$THIRDPARTYWEBROOT, $script.'.js')) { // Is it in apps and overwritten by the theme? }elseif(self::appendIfExist($files, OC::$SERVERROOT, OC::$WEBROOT, "themes/$theme/apps/$script$fext.js" )) { diff --git a/lib/user.php b/lib/user.php index 6144f0f6bf9851a0ae7daeb3576a77a0b90032c8..b19af940795b64087852be8ea7bda0f2f494f390 100644 --- a/lib/user.php +++ b/lib/user.php @@ -386,7 +386,7 @@ class OC_User { * generates a password */ public static function generatePassword() { - return uniqId(); + return OC_Util::generate_random_bytes(30); } /** @@ -633,9 +633,9 @@ class OC_User { public static function setMagicInCookie($username, $token) { $secure_cookie = OC_Config::getValue("forcessl", false); $expires = time() + OC_Config::getValue('remember_login_cookie_lifetime', 60*60*24*15); - setcookie("oc_username", $username, $expires, '', '', $secure_cookie); - setcookie("oc_token", $token, $expires, '', '', $secure_cookie, true); - setcookie("oc_remember_login", true, $expires, '', '', $secure_cookie); + setcookie("oc_username", $username, $expires, OC::$WEBROOT, '', $secure_cookie); + setcookie("oc_token", $token, $expires, OC::$WEBROOT, '', $secure_cookie, true); + setcookie("oc_remember_login", true, $expires, OC::$WEBROOT, '', $secure_cookie); } /** diff --git a/lib/user/database.php b/lib/user/database.php index 210c7f3e1eb28c38b0cd42164ae3c2371a0755ef..ea938790d22e8f3966fed3ed0ba9a5f4cde6281d 100644 --- a/lib/user/database.php +++ b/lib/user/database.php @@ -237,13 +237,13 @@ class OC_User_Database extends OC_User_Backend { * @return boolean */ public function userExists($uid) { - $query = OC_DB::prepare( 'SELECT * FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); + $query = OC_DB::prepare( 'SELECT COUNT(*) FROM `*PREFIX*users` WHERE LOWER(`uid`) = LOWER(?)' ); $result = $query->execute( array( $uid )); if (OC_DB::isError($result)) { OC_Log::write('core', OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } - return $result->numRows() > 0; + return $result->fetchOne() > 0; } /** diff --git a/lib/util.php b/lib/util.php index 1fa3ad765d0c0e5c4d2683687472862e8630b9d9..38453c1ce9242ddb34b5b369ae5e0ecf44f5294a 100755 --- a/lib/util.php +++ b/lib/util.php @@ -75,7 +75,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(5, 80, 01); + return array(5, 80, 02); } /** @@ -419,7 +419,7 @@ class OC_Util { $id = OC_Config::getValue('instanceid', null); if(is_null($id)) { // We need to guarantee at least one letter in instanceid so it can be used as the session_name - $id = 'oc' . uniqid(); + $id = 'oc' . OC_Util::generate_random_bytes(10); OC_Config::setValue('instanceid', $id); } return $id; @@ -595,7 +595,7 @@ class OC_Util { } catch(\Sabre_DAV_Exception_NotAuthenticated $e) { $return = true; } catch(\Exception $e) { - OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e, OC_Log::WARN); + OC_Log::write('core', 'isWebDAVWorking: NO - Reason: '.$e->getMessage(). ' ('.get_class($e).')', OC_Log::WARN); $return = false; } @@ -618,8 +618,8 @@ class OC_Util { $result = setlocale(LC_ALL, 'en_US.UTF-8', 'en_US.UTF8'); if($result == false) { return false; - } - return true; + } + return true; } /** @@ -635,6 +635,11 @@ class OC_Util { */ public static function isinternetconnectionworking() { + // in case there is no internet connection on purpose there is no need to display a warning + if (!\OC_Config::getValue("has_internet_connection", true)) { + return true; + } + // try to connect to owncloud.org to see if http connections to the internet are possible. $connected = @fsockopen("www.owncloud.org", 80); if ($connected) { diff --git a/lib/vcategories.php b/lib/vcategories.php index 2f990c5d2d2047a687eae18b6ebabdd5b4d6b5d8..5975e688b75cad4ff9a5422c3052a3aedfc9a6b8 100644 --- a/lib/vcategories.php +++ b/lib/vcategories.php @@ -536,23 +536,31 @@ class OC_VCategories { /** * @brief Delete category/object relations from the db - * @param int $id The id of the object + * @param array $ids The ids of the objects * @param string $type The type of object (event/contact/task/journal). * Defaults to the type set in the instance * @returns boolean Returns false on error. */ - public function purgeObject($id, $type = null) { + public function purgeObjects(array $ids, $type = null) { $type = is_null($type) ? $this->type : $type; + if(count($ids) === 0) { + // job done ;) + return true; + } + $updates = $ids; try { - $stmt = OCP\DB::prepare('DELETE FROM `' . self::RELATION_TABLE . '` ' - . 'WHERE `objid` = ? AND `type`= ?'); - $result = $stmt->execute(array($id, $type)); + $query = 'DELETE FROM `' . self::RELATION_TABLE . '` '; + $query .= 'WHERE `objid` IN (' . str_repeat('?,', count($ids)-1) . '?) '; + $query .= 'AND `type`= ?'; + $updates[] = $type; + $stmt = OCP\DB::prepare($query); + $result = $stmt->execute($updates); if (OC_DB::isError($result)) { OC_Log::write('core', __METHOD__. 'DB error: ' . OC_DB::getErrorMessage($result), OC_Log::ERROR); return false; } } catch(Exception $e) { - OCP\Util::writeLog('core', __METHOD__.', exception: '.$e->getMessage(), + OCP\Util::writeLog('core', __METHOD__.', exception: ' . $e->getMessage(), OCP\Util::ERROR); return false; } diff --git a/lib/vobject/stringproperty.php b/lib/vobject/stringproperty.php new file mode 100644 index 0000000000000000000000000000000000000000..b98a8f26c2b55d6a3afc8e510129d9e7806611b4 --- /dev/null +++ b/lib/vobject/stringproperty.php @@ -0,0 +1,80 @@ +. + * + */ + +namespace OC\VObject; + +/** + * This class overrides \Sabre\VObject\Property::serialize() properly + * escape commas and semi-colons in string properties. +*/ +class StringProperty extends \Sabre\VObject\Property { + + /** + * Turns the object back into a serialized blob. + * + * @return string + */ + public function serialize() { + + $str = $this->name; + if ($this->group) { + $str = $this->group . '.' . $this->name; + } + + foreach($this->parameters as $param) { + $str.=';' . $param->serialize(); + } + + $src = array( + '\\', + "\n", + ';', + ',', + ); + $out = array( + '\\\\', + '\n', + '\;', + '\,', + ); + $value = strtr($this->value, array('\,' => ',', '\;' => ';', '\\\\' => '\\')); + $str.=':' . str_replace($src, $out, $value); + + $out = ''; + while(strlen($str) > 0) { + if (strlen($str) > 75) { + $out .= mb_strcut($str, 0, 75, 'utf-8') . "\r\n"; + $str = ' ' . mb_strcut($str, 75, strlen($str), 'utf-8'); + } else { + $out .= $str . "\r\n"; + $str = ''; + break; + } + } + + return $out; + + } + +} \ No newline at end of file diff --git a/settings/ajax/userlist.php b/settings/ajax/userlist.php index 5282f4a7143e87f48b45c366134a206aaf55a71c..87b42395749c74398b78cd12db4caf40023b13b0 100644 --- a/settings/ajax/userlist.php +++ b/settings/ajax/userlist.php @@ -44,7 +44,7 @@ if (OC_User::isAdminUser(OC_User::getUser())) { foreach ($batch as $user) { $users[] = array( 'name' => $user, - 'displayname' => OC_User::determineDisplayName($user), + 'displayname' => OC_User::getDisplayName($user), 'groups' => join(', ', OC_Group::getUserGroups($user)), 'quota' => OC_Preferences::getValue($user, 'files', 'quota', 'default')); } diff --git a/settings/js/apps.js b/settings/js/apps.js index dd20bc0a9c55edfe2f3c79977db92e9bc647f9d9..9c1604cfcd9ff42236569741cde127795d2c2596 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -56,7 +56,7 @@ OC.Settings.Apps = OC.Settings.Apps || { if(active) { $.post(OC.filePath('settings','ajax','disableapp.php'),{appid:appid},function(result) { if(!result || result.status!='success') { - OC.dialogs.alert('Error while disabling app','Error'); + OC.dialogs.alert('Error while disabling app', t('core', 'Error')); } else { element.data('active',false); @@ -68,7 +68,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } else { $.post(OC.filePath('settings','ajax','enableapp.php'),{appid:appid},function(result) { if(!result || result.status!='success') { - OC.dialogs.alert('Error while enabling app','Error'); + OC.dialogs.alert('Error while enabling app', t('core', 'Error')); } else { OC.Settings.Apps.addNavigation(appid); @@ -77,7 +77,7 @@ OC.Settings.Apps = OC.Settings.Apps || { } },'json') .fail(function() { - OC.dialogs.alert('Error while enabling app','Error'); + OC.dialogs.alert('Error while enabling app', t('core', 'Error')); element.data('active',false); OC.Settings.Apps.removeNavigation(appid); element.val(t('settings','Enable')); @@ -142,7 +142,9 @@ OC.Settings.Apps = OC.Settings.Apps || { li.attr('data-id', entry.id); var img= $('').attr({ src: entry.icon}); var a=$('').attr('href', entry.href); - a.text(entry.name); + var filename=$('') + filename.text(entry.name); + a.prepend(filename); a.prepend(img); li.append(a); container.append(li); diff --git a/settings/js/log.js b/settings/js/log.js index 81117f9e8272de09a5eb3ee4cca7b9159355005c..84f6d1aa5f3f9f6cbc58d2f8ee8134b685756657 100644 --- a/settings/js/log.js +++ b/settings/js/log.js @@ -55,7 +55,11 @@ OC.Log={ row.append(messageTd); var timeTd=$(''); - timeTd.text(formatDate(entry.time*1000)); + if(isNaN(entry.time)){ + timeTd.text(entry.time); + } else { + timeTd.text(formatDate(entry.time*1000)); + } row.append(timeTd); $('#log').append(row); } diff --git a/settings/js/personal.js b/settings/js/personal.js index d0a471e56b57b5cf8ff0cb35ad6da349804e761b..7c879bcafe91beb2aed699b9051a33357737f89c 100644 --- a/settings/js/personal.js +++ b/settings/js/personal.js @@ -4,6 +4,22 @@ * See the COPYING-README file. */ +/** + * Post the email address change to the server. + */ +function changeEmailAddress(){ + emailInfo = $('#email'); + if (emailInfo.val() === emailInfo.defaultValue){ + return; + } + emailInfo.defaultValue = emailInfo.val(); + OC.msg.startSaving('#lostpassword .msg'); + var post = $( "#lostpassword" ).serialize(); + $.post( 'ajax/lostpassword.php', post, function(data){ + OC.msg.finishedSaving('#lostpassword .msg', data); + }); +} + $(document).ready(function(){ $("#passwordbutton").click( function(){ if ($('#pass1').val() != '' && $('#pass2').val() != '') { @@ -62,18 +78,12 @@ $(document).ready(function(){ }); - $('#lostpassword #email').blur(function(event){ - if ($(this).val() == this.defaultValue){ - return; - } - event.preventDefault(); - this.defaultValue = $(this).val(); - OC.msg.startSaving('#lostpassword .msg'); - var post = $( "#lostpassword" ).serialize(); - $.post( 'ajax/lostpassword.php', post, function(data){ - OC.msg.finishedSaving('#lostpassword .msg', data); - }); - }); + $('#email').keyup(function(){ + if(typeof timeout !== 'undefined'){ + clearTimeout(timeout); + } + timeout = setTimeout('changeEmailAddress()',1000); + }); $("#languageinput").chosen(); diff --git a/settings/js/users.js b/settings/js/users.js index d79b21765ff910b33b62da200f742ac072a831f5..4a358a4392d6490d81f871fe7426bf2c10c72e82 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -4,6 +4,18 @@ * See the COPYING-README file. */ +function setQuota (uid, quota, ready) { + $.post( + OC.filePath('settings', 'ajax', 'setquota.php'), + {username: uid, quota: quota}, + function (result) { + if (ready) { + ready(result.data.quota); + } + } + ); +} + var UserList = { useUndo: true, availableGroups: [], @@ -118,6 +130,13 @@ var UserList = { if (sort) { UserList.doSort(); } + + quotaSelect.singleSelect(); + quotaSelect.on('change', function () { + var uid = $(this).parent().parent().attr('data-uid'); + var quota = $(this).val(); + setQuota(uid, quota); + }); }, // From http://my.opera.com/GreyWyvern/blog/show.dml/1671288 alphanum: function(a, b) { @@ -218,9 +237,9 @@ var UserList = { group: group }, function (response) { - if(response.status === 'success' && response.data.action === 'add') { - if(UserList.availableGroups.indexOf(response.data.gropname) === -1) { - UserList.availableGroups.push(response.data.gropname); + if(response.status === 'success') { + if(UserList.availableGroups.indexOf(response.data.groupname) === -1 && response.data.action === 'add') { + UserList.availableGroups.push(response.data.groupname); } } else { OC.Notification.show(response.data.message); @@ -303,18 +322,6 @@ $(document).ready(function () { }); }); - function setQuota (uid, quota, ready) { - $.post( - OC.filePath('settings', 'ajax', 'setquota.php'), - {username: uid, quota: quota}, - function (result) { - if (ready) { - ready(result.data.quota); - } - } - ); - } - $('select[multiple]').each(function (index, element) { UserList.applyMultiplySelect($(element)); }); diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index d7938333adcb84efefec08ec262f896bb2e8c46d..caf465bf672c9f10f244b8c296217fbad22e710d 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -19,9 +19,9 @@ "Disable" => "إيقاف", "Enable" => "تفعيل", "Please wait...." => "الرجاء الانتظار ...", +"Error" => "خطأ", "Updating...." => "جاري التحديث ...", "Error while updating app" => "حصل خطأ أثناء تحديث التطبيق", -"Error" => "خطأ", "Updated" => "تم التحديث بنجاح", "Saving..." => "حفظ", "deleted" => "تم الحذف", @@ -66,6 +66,7 @@ "Log" => "سجل", "Log level" => "مستوى السجل", "More" => "المزيد", +"Less" => "أقل", "Version" => "إصدار", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "طوّر من قبل ownCloud مجتمع, الـ النص المصدري مرخص بموجب رخصة أفيرو العمومية.", "Add your App" => "أضف تطبيقاتك", diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 24664c5309f7646c38332a5952ba50b176c9f421..b096fb902f6b155a82f372e5af918239e0b2afb3 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -9,8 +9,8 @@ "Disable" => "Изключено", "Enable" => "Включено", "Please wait...." => "Моля почакайте....", -"Updating...." => "Обновява се...", "Error" => "Грешка", +"Updating...." => "Обновява се...", "Updated" => "Обновено", "Saving..." => "Записване...", "deleted" => "изтрито", @@ -20,6 +20,7 @@ "__language_name__" => "__language_name__", "Please double check the installation guides." => "Моля направете повторна справка с ръководството за инсталиране.", "More" => "Още", +"Less" => "По-малко", "Version" => "Версия", "Add your App" => "Добавете Ваше приложение", "More Apps" => "Още приложения", diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index bbaa5be0043196c281df6044cbd1a51347cf516d..0f2799d9f3800629d53ff9c244b15101567a0524 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -24,6 +24,7 @@ "__language_name__" => "__language_name__", "Security Warning" => "নিরাপত্তাজনিত সতর্কতা", "More" => "বেশী", +"Less" => "কম", "Version" => "ভার্সন", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "তৈলী করেছেন ownCloud সম্প্রদায়, যার উৎস কোডটি AGPL এর অধীনে লাইসেন্সকৃত।", "Add your App" => "আপনার অ্যাপটি যোগ করুন", diff --git a/settings/l10n/ca.php b/settings/l10n/ca.php index 2c9699188773d55437583c816d3fb2f40696cd97..6fd19a6c88318f66e5b4fd1593f82f76db39f10f 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -19,9 +19,9 @@ "Disable" => "Desactiva", "Enable" => "Activa", "Please wait...." => "Espereu...", +"Error" => "Error", "Updating...." => "Actualitzant...", "Error while updating app" => "Error en actualitzar l'aplicació", -"Error" => "Error", "Updated" => "Actualitzada", "Saving..." => "S'està desant...", "deleted" => "esborrat", @@ -66,6 +66,7 @@ "Log" => "Registre", "Log level" => "Nivell de registre", "More" => "Més", +"Less" => "Menys", "Version" => "Versió", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolupat per la comunitat ownCloud, el codi font té llicència AGPL.", "Add your App" => "Afegiu la vostra aplicació", diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 35b14f11de7d7619fa3ca53e2fd2bdf6a2fbe2e2..6e9d4e884d4735fdbea292922360e9fc3b898856 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -19,9 +19,9 @@ "Disable" => "Zakázat", "Enable" => "Povolit", "Please wait...." => "Čekejte prosím...", +"Error" => "Chyba", "Updating...." => "Aktualizuji...", "Error while updating app" => "Chyba při aktualizaci aplikace", -"Error" => "Chyba", "Updated" => "Aktualizováno", "Saving..." => "Ukládám...", "deleted" => "smazáno", @@ -66,6 +66,7 @@ "Log" => "Záznam", "Log level" => "Úroveň záznamu", "More" => "Více", +"Less" => "Méně", "Version" => "Verze", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", "Add your App" => "Přidat Vaší aplikaci", diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php new file mode 100644 index 0000000000000000000000000000000000000000..eea702bde9898bbad9d606ad243481891eaeb26f --- /dev/null +++ b/settings/l10n/cy_GB.php @@ -0,0 +1,13 @@ + "Gwall dilysu", +"Invalid request" => "Cais annilys", +"Error" => "Gwall", +"undo" => "dadwneud", +"Delete" => "Dileu", +"Security Warning" => "Rhybudd Diogelwch", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", +"Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", +"Password" => "Cyfrinair", +"New password" => "Cyfrinair newydd", +"Other" => "Arall" +); diff --git a/settings/l10n/da.php b/settings/l10n/da.php index da17fc132d9c5c0bfdf1d90aee90f62958736605..e74bf16fd549269bdacc3972c6850bb58fa7e9cd 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -19,9 +19,9 @@ "Disable" => "Deaktiver", "Enable" => "Aktiver", "Please wait...." => "Vent venligst...", +"Error" => "Fejl", "Updating...." => "Opdaterer....", "Error while updating app" => "Der opstod en fejl under app opgraderingen", -"Error" => "Fejl", "Updated" => "Opdateret", "Saving..." => "Gemmer...", "deleted" => "Slettet", @@ -66,6 +66,7 @@ "Log" => "Log", "Log level" => "Log niveau", "More" => "Mere", +"Less" => "Mindre", "Version" => "Version", "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", diff --git a/settings/l10n/de.php b/settings/l10n/de.php index 71b2b0f0c5062f7d9b19f515cc46b047fe7833d8..1ff3e45f69886001943d0af64a4d917a562c8009 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -19,9 +19,9 @@ "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Please wait...." => "Bitte warten...", +"Error" => "Fehler", "Updating...." => "Aktualisierung...", "Error while updating app" => "Fehler beim Aktualisieren der App", -"Error" => "Fehler", "Updated" => "Aktualisiert", "Saving..." => "Speichern...", "deleted" => "gelöscht", @@ -39,7 +39,7 @@ "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." => "Dein Datenverzeichnis und Deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass Du Deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass Du Dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", @@ -66,6 +66,7 @@ "Log" => "Log", "Log level" => "Loglevel", "More" => "Mehr", +"Less" => "Weniger", "Version" => "Version", "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üge Deine Anwendung hinzu", diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 87eef4446e2974c343867860ec6f5be741f96704..b1f121aa970cdce2e1a67cd264cb830d3d300052 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -19,9 +19,9 @@ "Disable" => "Deaktivieren", "Enable" => "Aktivieren", "Please wait...." => "Bitte warten....", +"Error" => "Fehler", "Updating...." => "Update...", "Error while updating app" => "Es ist ein Fehler während des Updates aufgetreten", -"Error" => "Fehler", "Updated" => "Aktualisiert", "Saving..." => "Speichern...", "deleted" => "gelöscht", @@ -39,7 +39,7 @@ "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 und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Instalationsanleitungen.", +"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", "Locale not working" => "Die Lokalisierung funktioniert nicht", @@ -66,6 +66,7 @@ "Log" => "Log", "Log level" => "Log-Level", "More" => "Mehr", +"Less" => "Weniger", "Version" => "Version", "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 Anwendung hinzu", diff --git a/settings/l10n/el.php b/settings/l10n/el.php index fb1b95a72d3c50b941bc70c74d7c40019ba442e9..9dfe20ae2899f7c1d34bcd308553b832903578f4 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -19,9 +19,9 @@ "Disable" => "Απενεργοποίηση", "Enable" => "Ενεργοποίηση", "Please wait...." => "Παρακαλώ περιμένετε...", +"Error" => "Σφάλμα", "Updating...." => "Ενημέρωση...", "Error while updating app" => "Σφάλμα κατά την ενημέρωση της εφαρμογής", -"Error" => "Σφάλμα", "Updated" => "Ενημερώθηκε", "Saving..." => "Αποθήκευση...", "deleted" => "διαγράφηκε", @@ -40,8 +40,12 @@ "Setup Warning" => "Ρύθμιση Προειδοποίησης", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", +"Module 'fileinfo' missing" => "Η ενοτητα 'fileinfo' λειπει", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", "Locale not working" => "Η μετάφραση δεν δουλεύει", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Αυτός ο ownCloud διακομιστης δεν μπορείτε να εφαρμοσει το σύνολο τοπικής προσαρμογής συστημάτων στο %s. Αυτό σημαίνει ότι μπορεί να υπάρξουν προβλήματα με ορισμένους χαρακτήρες σε ονόματα αρχείων. Σας συνιστούμε να εγκαταστήσετε τις απαραίτητες συσκευασίες στο σύστημά σας για να υποστηρίχθει το %s. ", "Internet connection not working" => "Η σύνδεση στο διαδίκτυο δεν δουλεύει", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Αυτός ο διακομιστής ownCloud δεν έχει σύνδεση στο Διαδίκτυο. Αυτό σημαίνει ότι ορισμένα από τα χαρακτηριστικά γνωρίσματα όπως η τοποθέτηση εξωτερικής αποθήκευσης, οι κοινοποιήσεις σχετικά με ανανεωσεις, ή εγκατάσταση 3ων εφαρμογές δεν λειτουργούν. Η πρόσβαση σε αρχεία και η αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην λειτουργεί. Σας προτείνουμε να σύνδεθειτε στο διαδικτυο αυτό τον διακομιστή, εάν θέλετε να έχετε όλα τα χαρακτηριστικά του 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 από τον root του owncloud μέσω http", @@ -58,9 +62,11 @@ "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", "Enforces the clients to connect to ownCloud via an encrypted connection." => "Επιβολή στους πελάτες να συνδεθούν στο ownCloud μέσω μιας κρυπτογραφημένης σύνδεσης.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Παρακαλώ συνδεθείτε με το ownCloud μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή SSL. ", "Log" => "Καταγραφές", "Log level" => "Επίπεδο καταγραφής", "More" => "Περισσότερα", +"Less" => "Λιγότερα", "Version" => "Έκδοση", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Αναπτύχθηκε από την κοινότητα ownCloud, ο πηγαίος κώδικας είναι υπό άδεια χρήσης AGPL.", "Add your App" => "Πρόσθεστε τη Δικιά σας Εφαρμογή", diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index e381794f6f3a5c4dd7130bf1f64a8b6d5f44c251..732a5d30fcea6f7da830d49beebf30cdbbdc4235 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -25,6 +25,7 @@ "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", "More" => "Pli", +"Less" => "Malpli", "Version" => "Eldono", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ellaborita de la komunumo de ownCloud, la fontokodo publikas laŭ la permesilo AGPL.", "Add your App" => "Aldonu vian aplikaĵon", diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 82a1a74a044f74fbc942f8c1db67bae307b551b4..a1d03ae84056715a28f25b150d57019f50a62caf 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -19,9 +19,9 @@ "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Espere por favor....", +"Error" => "Error", "Updating...." => "Actualizando....", "Error while updating app" => "Error mientras se actualizaba", -"Error" => "Error", "Updated" => "Actualizado", "Saving..." => "Guardando...", "deleted" => "borrado", @@ -66,6 +66,7 @@ "Log" => "Historial", "Log level" => "Nivel de Historial", "More" => "Más", +"Less" => "Menos", "Version" => "Version", "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ñade tu aplicación", diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index b3788d49baa82f40d07345acdece00e35e0cdd29..a1be54be1c4e5208861ed5410d44d02a018fbde7 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -19,9 +19,9 @@ "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Por favor, esperá....", +"Error" => "Error", "Updating...." => "Actualizando....", "Error while updating app" => "Error al actualizar", -"Error" => "Error", "Updated" => "Actualizado", "Saving..." => "Guardando...", "deleted" => "borrado", @@ -66,6 +66,7 @@ "Log" => "Log", "Log level" => "Nivel de Log", "More" => "Más", +"Less" => "Menos", "Version" => "Versión", "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", diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 649e91c43a69d40b4d91c43d1c8f36ed8ea619ae..b21b55f5cac2af1ff816cda37d101cdef59228a6 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,6 +1,7 @@ "App Sotre'i nimekirja laadimine ebaõnnestus", "Authentication error" => "Autentimise viga", +"Unable to change display name" => "Ei saa muuta kuvatavat nime", "Group already exists" => "Grupp on juba olemas", "Unable to add group" => "Keela grupi lisamine", "Could not enable app. " => "Rakenduse sisselülitamine ebaõnnestus.", @@ -10,6 +11,7 @@ "Unable to delete user" => "Keela kasutaja kustutamine", "Language changed" => "Keel on muudetud", "Invalid request" => "Vigane päring", +"Admins can't remove themself from the admin group" => "Administraatorid ei saa ise end eemaldada admin grupist", "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", "Couldn't update app." => "Rakenduse uuendamine ebaõnnestus.", @@ -17,27 +19,56 @@ "Disable" => "Lülita välja", "Enable" => "Lülita sisse", "Please wait...." => "Palun oota...", +"Error" => "Viga", "Updating...." => "Uuendamine...", "Error while updating app" => "Viga rakenduse uuendamisel", -"Error" => "Viga", "Updated" => "Uuendatud", "Saving..." => "Salvestamine...", "deleted" => "kustutatud", "undo" => "tagasi", +"Unable to remove user" => "Ei suuda kustutada kasutajat", "Groups" => "Grupid", "Group Admin" => "Grupi admin", "Delete" => "Kustuta", "add group" => "lisa grupp", +"A valid username must be provided" => "Sisesta nõuetele vastav kasutajatunnus", "Error creating user" => "Viga kasutaja loomisel", +"A valid password must be provided" => "Sisesta nõuetele vastav parool", "__language_name__" => "Eesti", "Security Warning" => "Turvahoiatus", +"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." => "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, mida pakub ownCloud, ei toimi. Soovitame tungivalt veebiserveri seadistust selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi-juurkataloogist mujale.", +"Setup Warning" => "Paigalduse hoiatus", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", +"Please double check the installation guides." => "Palun tutvu veelkord paigalduse juhenditega.", +"Module 'fileinfo' missing" => "Moodul 'fileinfo' puudub", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", +"Locale not working" => "Lokalisatsioon ei toimi", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud server ei suuda seadistada süsteemi lokalisatsiooni %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s.", +"Internet connection not working" => "Internetiühendus ei toimi", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Käivita toiming lehe laadimisel", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php on registreeritud webcron teenusena. Lae cron.php lehte owncloud veebikataloogist iga minut üle http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Kasuta süsteemi cron teenust. Käivita cron.php fail owncloud veebikataloogist kasutades süsteemi crontab toimingut iga minut.", "Sharing" => "Jagamine", +"Enable Share API" => "Luba Share API", +"Allow apps to use the Share API" => "Luba rakendustel kasutada Share API-t", +"Allow links" => "Luba lingid", +"Allow users to share items to the public with links" => "Luba kasutajatel jagada kirjeid avalike linkidega", +"Allow resharing" => "Luba edasijagamine", +"Allow users to share items shared with them again" => "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud", +"Allow users to share with anyone" => "Luba kasutajatel kõigiga jagada", +"Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Sunnib kliente ownCloudiga ühenduma krüpteeritult.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Palun ühendu selle ownCloud instantsiga üle HTTPS või keela SSL kasutamine.", "Log" => "Logi", "Log level" => "Logi tase", "More" => "Rohkem", +"Less" => "Vähem", "Version" => "Versioon", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Arendatud ownCloud kogukonna poolt. Lähtekood on avaldatud ja kaetud AGPL litsentsiga.", "Add your App" => "Lisa oma rakendus", "More Apps" => "Veel rakendusi", "Select an App" => "Vali programm", @@ -50,6 +81,9 @@ "Forum" => "Foorum", "Bugtracker" => "Vigade nimekiri", "Commercial Support" => "Tasuine kasutajatugi", +"You have used %s of the available %s" => "Kasutad %s saadavalolevast %s", +"Get the apps to sync your files" => "Hangi rakendusi failide sünkroniseerimiseks", +"Show First Run Wizard again" => "Näita veelkord Esmase Käivituse Juhendajat", "Password" => "Parool", "Your password was changed" => "Sinu parooli on muudetud", "Unable to change your password" => "Sa ei saa oma parooli muuta", @@ -57,6 +91,8 @@ "New password" => "Uus parool", "Change password" => "Muuda parooli", "Display Name" => "Näidatav nimi", +"Your display name was changed" => "Sinu kuvatav nimi muutus", +"Unable to change your display name" => "Ei suuda muuta kuvatavat nime", "Change display name" => "Muuda näidatavat nime", "Email" => "E-post", "Your email address" => "Sinu e-posti aadress", @@ -64,10 +100,13 @@ "Language" => "Keel", "Help translate" => "Aita tõlkida", "WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Kasuta seda aadressi ühendamaks oma ownCloudi failihalduriga", "Login Name" => "Kasutajanimi", "Create" => "Lisa", +"Default Storage" => "Vaikimisi maht", "Unlimited" => "Piiramatult", "Other" => "Muu", +"Storage" => "Maht", "change display name" => "muuda näidatavat nime", "set new password" => "määra uus parool", "Default" => "Vaikeväärtus" diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 410cb8336af502bd3675611fa523ed3c371ceb4e..ed3500c5b7a4594c10f54a870d12102a7790b780 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -19,9 +19,9 @@ "Disable" => "Ez-gaitu", "Enable" => "Gaitu", "Please wait...." => "Itxoin mesedez...", +"Error" => "Errorea", "Updating...." => "Eguneratzen...", "Error while updating app" => "Errorea aplikazioa eguneratzen zen bitartean", -"Error" => "Errorea", "Updated" => "Eguneratuta", "Saving..." => "Gordetzen...", "deleted" => "ezabatuta", @@ -66,6 +66,7 @@ "Log" => "Egunkaria", "Log level" => "Erregistro maila", "More" => "Gehiago", +"Less" => "Gutxiago", "Version" => "Bertsioa", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud komunitateak garatuta, itubruru kodeaAGPL lizentziarekin banatzen da.", "Add your App" => "Gehitu zure aplikazioa", diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index b8a3051e00f06f74b3a4a3f0295995cad38c4378..8a097d64b0a6c8e894013b036401d04e13215158 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -19,15 +19,16 @@ "Disable" => "غیرفعال", "Enable" => "فعال", "Please wait...." => "لطفا صبر کنید ...", +"Error" => "خطا", "Updating...." => "در حال بروز رسانی...", "Error while updating app" => "خطا در هنگام بهنگام سازی برنامه", -"Error" => "خطا", "Updated" => "بروز رسانی انجام شد", "Saving..." => "درحال ذخیره ...", "deleted" => "حذف شده", "undo" => "بازگشت", "Unable to remove user" => "حذف کاربر امکان پذیر نیست", "Groups" => "گروه ها", +"Group Admin" => "گروه مدیران", "Delete" => "پاک کردن", "add group" => "افزودن گروه", "A valid username must be provided" => "نام کاربری صحیح باید وارد شود", @@ -35,17 +36,37 @@ "A valid password must be provided" => "رمز عبور صحیح باید وارد شود", "__language_name__" => "__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 اراده کرده است دیگر کار نمی کند. ما قویاً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که فهرست اطلاعات شما غیر قابل دسترسی باشند یا فهرست اطلاعات را به خارج از ریشه ی اصلی وب سرور انتقال دهید.", "Setup Warning" => "هشدار راه اندازی", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", +"Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", +"Module 'fileinfo' missing" => "ماژول 'fileinfo' از کار افتاده", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم.", "Internet connection not working" => "اتصال اینترنت کار نمی کند", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید.", +"Execute one task with each page loaded" => "اجرای یک وظیفه با هر بار بارگذاری صفحه", "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" => "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان", "Security" => "امنیت", +"Enforce HTTPS" => "وادار کردن HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط", "More" => "بیش‌تر", +"Less" => "کم‌تر", "Version" => "نسخه", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "توسعه یافته به وسیله ی انجمن ownCloud, the کد اصلی مجاز زیر گواهی AGPL.", "Add your App" => "برنامه خود را بیافزایید", "More Apps" => "برنامه های بیشتر", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صفحه این اٌپ را در apps.owncloud.com ببینید", +"-licensed by " => "-مجاز از طرف ", "Update" => "به روز رسانی", "User Documentation" => "مستندات کاربر", "Administrator Documentation" => "مستندات مدیر", @@ -53,6 +74,8 @@ "Forum" => "انجمن", "Bugtracker" => "ردیاب باگ ", "Commercial Support" => "پشتیبانی تجاری", +"You have used %s of the available %s" => "شما استفاده کردید از %s از میزان در دسترس %s", +"Get the apps to sync your files" => "برنامه ها را دریافت کنید تا فایل هایتان را همگام سازید", "Show First Run Wizard again" => "راهبری کمکی اجرای اول را دوباره نمایش بده", "Password" => "گذرواژه", "Your password was changed" => "رمز عبور شما تغییر یافت", diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index ab43f61eeedc8d7c79a455766514c0ad35f43a03..74a8157a7f689803161ee6e87045034ea35d01f6 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -19,9 +19,9 @@ "Disable" => "Poista käytöstä", "Enable" => "Käytä", "Please wait...." => "Odota hetki...", +"Error" => "Virhe", "Updating...." => "Päivitetään...", "Error while updating app" => "Virhe sovellusta päivittäessä", -"Error" => "Virhe", "Updated" => "Päivitetty", "Saving..." => "Tallennetaan...", "deleted" => "poistettu", @@ -54,6 +54,7 @@ "Log" => "Loki", "Log level" => "Lokitaso", "More" => "Enemmän", +"Less" => "Vähemmän", "Version" => "Versio", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Kehityksestä on vastannut ownCloud-yhteisö, lähdekoodi on julkaistu lisenssin AGPL alaisena.", "Add your App" => "Lisää sovelluksesi", @@ -89,8 +90,10 @@ "Use this address to connect to your ownCloud in your file manager" => "Käytä tätä osoitetta yhdistäessäsi ownCloudiisi tiedostonhallintaa käyttäen", "Login Name" => "Kirjautumisnimi", "Create" => "Luo", +"Default Storage" => "Oletustallennustila", "Unlimited" => "Rajoittamaton", "Other" => "Muu", +"Storage" => "Tallennustila", "change display name" => "vaihda näyttönimi", "set new password" => "aseta uusi salasana", "Default" => "Oletus" diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index c5ad5642d11fd997d4f797a43b78100468f9464f..efc2de893d829c5a76112403bcb1a258ef04d766 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -19,9 +19,9 @@ "Disable" => "Désactiver", "Enable" => "Activer", "Please wait...." => "Veuillez patienter…", +"Error" => "Erreur", "Updating...." => "Mise à jour...", "Error while updating app" => "Erreur lors de la mise à jour de l'application", -"Error" => "Erreur", "Updated" => "Mise à jour effectuée avec succès", "Saving..." => "Sauvegarde...", "deleted" => "supprimé", @@ -66,6 +66,7 @@ "Log" => "Log", "Log level" => "Niveau de log", "More" => "Plus", +"Less" => "Moins", "Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Développé par la communauté ownCloud, le code source est publié sous license AGPL.", "Add your App" => "Ajoutez votre application", diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index 4d629e06ccb5a674e224557070aa8c8fe59d3860..f7472fd872ebfc62f618572619c915d3ab5ebc8a 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -19,9 +19,9 @@ "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Agarde...", +"Error" => "Erro", "Updating...." => "Actualizando...", "Error while updating app" => "Produciuse un erro mentres actualizaba o aplicativo", -"Error" => "Erro", "Updated" => "Actualizado", "Saving..." => "Gardando...", "deleted" => "eliminado", @@ -66,6 +66,7 @@ "Log" => "Rexistro", "Log level" => "Nivel de rexistro", "More" => "Máis", +"Less" => "Menos", "Version" => "Versión", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pola comunidade ownCloud, o código fonte está baixo a licenza AGPL.", "Add your App" => "Engada o seu aplicativo", diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 196dc4d146f2cc1ac3d9b32bbbe4dc7dafa0f3a9..2e208b45763d89712c3395abf494a19770f31703 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -25,6 +25,7 @@ "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 כנראה אינו עובד. אנו ממליצים בחום להגדיר את שרת האינטרנט שלך בדרך שבה תיקיית הנתונים לא תהיה זמינה עוד או להעביר את תיקיית הנתונים מחוץ לספריית העל של שרת האינטרנט.", "More" => "יותר", +"Less" => "פחות", "Version" => "גרסא", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "פותח על די קהילתownCloud, קוד המקור מוגן ברישיון AGPL.", "Add your App" => "הוספת היישום שלך", diff --git a/settings/l10n/hu_HU.php b/settings/l10n/hu_HU.php index 4d5f9e0dbce118f5ad53c4cf91c157e23f809d67..a91e8ff49121988dd4d5f5e6650bcf3b4aac495d 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -19,9 +19,9 @@ "Disable" => "Letiltás", "Enable" => "Engedélyezés", "Please wait...." => "Kérem várjon...", +"Error" => "Hiba", "Updating...." => "Frissítés folyamatban...", "Error while updating app" => "Hiba történt a programfrissítés közben", -"Error" => "Hiba", "Updated" => "Frissítve", "Saving..." => "Mentés...", "deleted" => "törölve", @@ -66,6 +66,7 @@ "Log" => "Naplózás", "Log level" => "Naplózási szint", "More" => "Több", +"Less" => "Kevesebb", "Version" => "Verzió", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "A programot az ownCloud közösség fejleszti. A forráskód az AGPL feltételei mellett használható föl.", "Add your App" => "Az alkalmazás hozzáadása", diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index 6e7feaf378c84cedbdaed01419053c22aef30884..88cb8dbf9aaa93ce0163a89b73d63a88a9d55f12 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -7,6 +7,7 @@ "Add your App" => "Adder tu application", "Select an App" => "Selectionar un app", "Update" => "Actualisar", +"Get the apps to sync your files" => "Obtene le apps (applicationes) pro synchronizar tu files", "Password" => "Contrasigno", "Unable to change your password" => "Non pote cambiar tu contrasigno", "Current password" => "Contrasigno currente", diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 7f53a50b248095b9c51186d7731e202e6d73b4c7..2943e78a97291f94653b6609362684a95cb6de9b 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,36 +1,113 @@ "autentikasi bermasalah", -"Email saved" => "Email tersimpan", -"Invalid email" => "Email tidak sah", -"Language changed" => "Bahasa telah diganti", +"Unable to load list from App Store" => "Tidak dapat memuat daftar dari App Store", +"Authentication error" => "Galat autentikasi", +"Unable to change display name" => "Tidak dapat mengubah nama tampilan", +"Group already exists" => "Grup sudah ada", +"Unable to add group" => "Tidak dapat menambah grup", +"Could not enable app. " => "Tidak dapat mengaktifkan aplikasi.", +"Email saved" => "Email disimpan", +"Invalid email" => "Email tidak valid", +"Unable to delete group" => "Tidak dapat menghapus grup", +"Unable to delete user" => "Tidak dapat menghapus pengguna", +"Language changed" => "Bahasa telah diubah", "Invalid request" => "Permintaan tidak valid", -"Disable" => "NonAktifkan", +"Admins can't remove themself from the admin group" => "Admin tidak dapat menghapus dirinya sendiri dari grup admin", +"Unable to add user to group %s" => "Tidak dapat menambahkan pengguna ke grup %s", +"Unable to remove user from group %s" => "Tidak dapat menghapus pengguna dari grup %s", +"Couldn't update app." => "Tidak dapat memperbarui aplikasi.", +"Update to {appversion}" => "Perbarui ke {appversion}", +"Disable" => "Nonaktifkan", "Enable" => "Aktifkan", -"Error" => "kesalahan", +"Please wait...." => "Mohon tunggu....", +"Error" => "Galat", +"Updating...." => "Memperbarui....", +"Error while updating app" => "Gagal ketika memperbarui aplikasi", +"Updated" => "Diperbarui", "Saving..." => "Menyimpan...", "deleted" => "dihapus", -"undo" => "batal dikerjakan", -"Groups" => "Group", +"undo" => "urungkan", +"Unable to remove user" => "Tidak dapat menghapus pengguna", +"Groups" => "Grup", "Group Admin" => "Admin Grup", "Delete" => "Hapus", +"add group" => "tambah grup", +"A valid username must be provided" => "Tuliskan nama pengguna yang valid", +"Error creating user" => "Gagal membuat pengguna", +"A valid password must be provided" => "Tuliskan sandi yang valid", "__language_name__" => "__language_name__", -"Security Warning" => "peringatan keamanan", -"More" => "lagi", -"Add your App" => "Tambahkan App anda", -"Select an App" => "Pilih satu aplikasi", +"Security Warning" => "Peringatan Keamanan", +"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." => "Mungkin direktori data dan berkas Anda dapat diakses dari internet. Berkas .htaccess yang disediakan oleh ownCloud tidak berfungsi. Kami sangat menyarankan Anda untuk mengonfigurasi webserver Anda agar direktori data tidak lagi dapat diakses atau pindahkan direktori data ke luar akar dokumen webserver.", +"Setup Warning" => "Peringatan Persiapan", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasi untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", +"Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", +"Module 'fileinfo' missing" => "Module 'fileinfo' tidak ada", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.", +"Locale not working" => "Kode pelokalan tidak berfungsi", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Server ownCloud ini tidak dapat menyetel kode pelokalan sistem ke nilai %s. Ini berarti mungkin akan terjadi masalah pada karakter tertentu pada nama berkas. Kami sarankan untuk menginstal paket yang dibutuhkan pada sistem Anda untuk mendukung %s.", +"Internet connection not working" => "Koneksi internet tidak berfungsi", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Server ownCloud ini tidak memiliki koneksi internet yang berfungsi. Artinya, beberapa fitur misalnya mengaitkan penyimpanan eksternal, notifikasi tentang pembaruan, atau instalasi aplikasi dari pihak ketiga tidak akan dapat berfungsi. Pengaksesan berkas secara online dan pengiriman email notifikasi mungkin juga tidak dapat berfungsi. Kami sarankan untuk mengaktifkan koneksi internet server ini agar mendapatkan semua fitur ownCloud.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Jalankan tugas setiap kali halaman dimuat", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php telah terdaftar sebagai layanan webcron. Panggil halaman cron.php pada akar direktori ownCloud tiap menit lewat http.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Gunakan layanan cron sistem. Panggil berkas cron.php pada folder ownCloud lewat cronjob sistem tiap menit.", +"Sharing" => "Berbagi", +"Enable Share API" => "Aktifkan API Pembagian", +"Allow apps to use the Share API" => "Izinkan aplikasi untuk menggunakan API Pembagian", +"Allow links" => "Izinkan tautan", +"Allow users to share items to the public with links" => "Izinkan pengguna untuk berbagi item kepada publik lewat tautan", +"Allow resharing" => "Izinkan pembagian ulang", +"Allow users to share items shared with them again" => "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka.", +"Allow users to share with anyone" => "Izinkan pengguna untuk berbagi kepada siapa saja", +"Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri", +"Security" => "Keamanan", +"Enforce HTTPS" => "Selalu Gunakan HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Paksa klien untuk tersambung ke ownCloud lewat koneksi yang dienkripsi.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Silakan sambungkan ke instalasi ownCloud lewat HTTPS untuk mengaktifkan atau menonaktifkan fitur SSL.", +"Log" => "Catat", +"Log level" => "Level pencatatan", +"More" => "Lainnya", +"Less" => "Ciutkan", +"Version" => "Versi", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Dikembangkan oleh komunitas ownCloud, kode sumber dilisensikan di bawah AGPL.", +"Add your App" => "Tambahkan Aplikasi Anda", +"More Apps" => "Aplikasi Lainnya", +"Select an App" => "Pilih Aplikasi", "See application page at apps.owncloud.com" => "Lihat halaman aplikasi di apps.owncloud.com", -"Update" => "Pembaruan", -"Get the apps to sync your files" => "Dapatkan aplikasi untuk sinkronisasi berkas anda", -"Password" => "Password", -"Unable to change your password" => "Tidak dapat merubah password anda", -"Current password" => "Password saat ini", -"New password" => "kata kunci baru", -"Change password" => "Rubah password", +"-licensed by " => "-dilisensikan oleh ", +"Update" => "Perbarui", +"User Documentation" => "Dokumentasi Pengguna", +"Administrator Documentation" => "Dokumentasi Administrator", +"Online Documentation" => "Dokumentasi Online", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Dukungan Komersial", +"You have used %s of the available %s" => "Anda telah menggunakan %s dari total %s", +"Get the apps to sync your files" => "Dapatkan aplikasi untuk sinkronisasi berkas Anda", +"Show First Run Wizard again" => "Tampilkan Penuntun Konfigurasi Awal", +"Password" => "Sandi", +"Your password was changed" => "Sandi Anda telah diubah", +"Unable to change your password" => "Gagal mengubah sandi Anda", +"Current password" => "Sandi saat ini", +"New password" => "Sandi baru", +"Change password" => "Ubah sandi", +"Display Name" => "Nama Tampilan", +"Your display name was changed" => "Nama tampilan Anda telah diubah", +"Unable to change your display name" => "Tidak dapat mengubah nama tampilan Anda", +"Change display name" => "Ubah nama tampilan", "Email" => "Email", -"Your email address" => "Alamat email anda", -"Fill in an email address to enable password recovery" => "Masukkan alamat email untuk mengaktifkan pemulihan password", +"Your email address" => "Alamat email Anda", +"Fill in an email address to enable password recovery" => "Masukkan alamat email untuk mengaktifkan pemulihan sandi", "Language" => "Bahasa", "Help translate" => "Bantu menerjemahkan", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Gunakan alamat ini untuk terhubung ke ownCloud Anda pada manajer berkas ", +"Login Name" => "Nama Masuk", "Create" => "Buat", -"Other" => "Lain-lain" +"Default Storage" => "Penyimpanan Baku", +"Unlimited" => "Tak terbatas", +"Other" => "Lainnya", +"Storage" => "Penyimpanan", +"change display name" => "ubah nama tampilan", +"set new password" => "setel sandi baru", +"Default" => "Baku" ); diff --git a/settings/l10n/is.php b/settings/l10n/is.php index e5c6e9f63471a0a4ad685f01af878ae3c3ebd0f1..b3172855c149963112d41702037f261e0fe1d662 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -25,6 +25,7 @@ "Security Warning" => "Öryggis aðvörun", "Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina.", "More" => "Meira", +"Less" => "Minna", "Version" => "Útgáfa", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Þróað af ownCloud samfélaginu, forrita kóðinn er skráðu með AGPL.", "Add your App" => "Bæta við forriti", diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 699ded137a60ba94560403f29fabea5e074d5543..c48db84b1e52aa5abd0b5685aa4219e1a3a9e6b4 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -19,9 +19,9 @@ "Disable" => "Disabilita", "Enable" => "Abilita", "Please wait...." => "Attendere...", +"Error" => "Errore", "Updating...." => "Aggiornamento in corso...", "Error while updating app" => "Errore durante l'aggiornamento", -"Error" => "Errore", "Updated" => "Aggiornato", "Saving..." => "Salvataggio in corso...", "deleted" => "eliminati", @@ -66,6 +66,7 @@ "Log" => "Log", "Log level" => "Livello di log", "More" => "Più", +"Less" => "Meno", "Version" => "Versione", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Sviluppato dalla comunità di ownCloud, il codice sorgente è rilasciato nei termini della licenza AGPL.", "Add your App" => "Aggiungi la tua applicazione", diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 181656bd392e670e7356d3fa20431dcea7172519..c5aa0ddec70a74586d97ce6c527e606d6d0bf91a 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -19,9 +19,9 @@ "Disable" => "無効", "Enable" => "有効", "Please wait...." => "しばらくお待ちください。", +"Error" => "エラー", "Updating...." => "更新中....", "Error while updating app" => "アプリの更新中にエラーが発生", -"Error" => "エラー", "Updated" => "更新済み", "Saving..." => "保存中...", "deleted" => "削除", @@ -65,9 +65,10 @@ "Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。", "Log" => "ログ", "Log level" => "ログレベル", -"More" => "詳細", +"More" => "もっと見る", +"Less" => "閉じる", "Version" => "バージョン", -"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud communityにより開発されています、ソースコードライセンスは、AGPL ライセンスにより提供されています。", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud コミュニティにより開発されています。 ソースコードは、AGPL ライセンスの下で提供されています。", "Add your App" => "アプリを追加", "More Apps" => "さらにアプリを表示", "Select an App" => "アプリを選択してください", @@ -81,8 +82,8 @@ "Bugtracker" => "バグトラッカー", "Commercial Support" => "コマーシャルサポート", "You have used %s of the available %s" => "現在、%s / %s を利用しています", -"Get the apps to sync your files" => "あなたのファイルを同期するためのアプリを取得", -"Show First Run Wizard again" => "初回実行ウィザードを再度表示する", +"Get the apps to sync your files" => "ファイルを同期するためのアプリを取得", +"Show First Run Wizard again" => "初回ウィザードを再表示する", "Password" => "パスワード", "Your password was changed" => "パスワードを変更しました", "Unable to change your password" => "パスワードを変更することができません", diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 27699d3f980d7e6db9e17f9097842bb17cb6c8cd..09de18ae1c2441aabc69351e4af1215775de786c 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,6 +1,7 @@ "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", "Authentication error" => "ავთენტიფიკაციის შეცდომა", +"Unable to change display name" => "დისფლეის სახელის შეცვლა ვერ მოხერხდა", "Group already exists" => "ჯგუფი უკვე არსებობს", "Unable to add group" => "ჯგუფის დამატება ვერ მოხერხდა", "Could not enable app. " => "ვერ მოხერხდა აპლიკაციის ჩართვა.", @@ -10,35 +11,103 @@ "Unable to delete user" => "მომხმარებლის წაშლა ვერ მოხერხდა", "Language changed" => "ენა შეცვლილია", "Invalid request" => "არასწორი მოთხოვნა", +"Admins can't remove themself from the admin group" => "ადმინისტრატორებს არ შეუძლიათ საკუთარი თავის წაშლა ადმინ ჯგუფიდან", "Unable to add user to group %s" => "მომხმარებლის დამატება ვერ მოხეხდა ჯგუფში %s", "Unable to remove user from group %s" => "მომხმარებლის წაშლა ვერ მოხეხდა ჯგუფიდან %s", +"Couldn't update app." => "ვერ მოხერხდა აპლიკაციის განახლება.", +"Update to {appversion}" => "განაახლე {appversion}–მდე", "Disable" => "გამორთვა", "Enable" => "ჩართვა", +"Please wait...." => "დაიცადეთ....", "Error" => "შეცდომა", +"Updating...." => "მიმდინარეობს განახლება....", +"Error while updating app" => "შეცდომა აპლიკაციის განახლების დროს", +"Updated" => "განახლებულია", "Saving..." => "შენახვა...", +"deleted" => "წაშლილი", "undo" => "დაბრუნება", +"Unable to remove user" => "მომხმარებლის წაშლა ვერ მოხერხდა", "Groups" => "ჯგუფი", "Group Admin" => "ჯგუფის ადმინისტრატორი", "Delete" => "წაშლა", +"add group" => "ჯგუფის დამატება", +"A valid username must be provided" => "უნდა მიუთითოთ არსებული მომხმარებლის სახელი", +"Error creating user" => "შეცდომა მომხმარებლის შექმნისას", +"A valid password must be provided" => "უნდა მიუთითოთ არსებული პაროლი", "__language_name__" => "__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." => "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ.", +"Setup Warning" => "გაფრთხილება დაყენებისას", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", +"Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", +"Module 'fileinfo' missing" => "მოდული 'fileinfo' არ არსებობს", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას.", +"Locale not working" => "ლოკალიზაცია არ მუშაობს", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა.", +"Internet connection not working" => "ინტერნეტ კავშირი არ მუშაობს", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ 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 root დირექტორიაში, წუთში ერთხელ 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" => "Share API–ის ჩართვა", +"Allow apps to use the Share API" => "დაუშვი აპლიკაციების უფლება Share 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" => "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის", +"Security" => "უსაფრთხოება", +"Enforce HTTPS" => "HTTPS–ის ჩართვა", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https).", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა.", +"Log" => "ლოგი", +"Log level" => "ლოგირების დონე", +"More" => "უფრო მეტი", +"Less" => "naklebi", +"Version" => "ვერსია", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "წარმოებულია ownCloud community–ის მიერ. source code ვრცელდება AGPL ლიცენზიის ფარგლებში.", "Add your App" => "დაამატე შენი აპლიკაცია", "More Apps" => "უფრო მეტი აპლიკაციები", "Select an App" => "აირჩიეთ აპლიკაცია", "See application page at apps.owncloud.com" => "ნახეთ აპლიკაციის გვერდი apps.owncloud.com –ზე", "-licensed by " => "-ლიცენსირებულია ", "Update" => "განახლება", +"User Documentation" => "მომხმარებლის დოკუმენტაცია", +"Administrator Documentation" => "ადმინისტრატორის დოკუმენტაცია", +"Online Documentation" => "ონლაინ დოკუმენტაცია", +"Forum" => "ფორუმი", +"Bugtracker" => "ბაგთრექერი", +"Commercial Support" => "კომერციული მხარდაჭერა", +"You have used %s of the available %s" => "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან", +"Get the apps to sync your files" => "აპლიკაცია ფაილების სინქრონიზაციისთვის", +"Show First Run Wizard again" => "მაჩვენე თავიდან გაშვებული ვიზარდი", "Password" => "პაროლი", "Your password was changed" => "თქვენი პაროლი შეიცვალა", "Unable to change your password" => "თქვენი პაროლი არ შეიცვალა", "Current password" => "მიმდინარე პაროლი", "New password" => "ახალი პაროლი", "Change password" => "პაროლის შეცვლა", +"Display Name" => "დისპლეის სახელი", +"Your display name was changed" => "დისფლეის სახელი შეიცვალა", +"Unable to change your display name" => "თქვენი დისფლეის სახელის შეცვლა ვერ მოხერხდა", +"Change display name" => "დისფლეის სახელის შეცვლა", "Email" => "იმეილი", "Your email address" => "თქვენი იმეილ მისამართი", "Fill in an email address to enable password recovery" => "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად", "Language" => "ენა", "Help translate" => "თარგმნის დახმარება", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "გამოიყენე შემდეგი მისამართი ownCloud–თან დასაკავშირებლად შენს ფაილმენეჯერში", +"Login Name" => "მომხმარებლის სახელი", "Create" => "შექმნა", -"Other" => "სხვა" +"Default Storage" => "საწყისი საცავი", +"Unlimited" => "ულიმიტო", +"Other" => "სხვა", +"Storage" => "საცავი", +"change display name" => "შეცვალე დისფლეის სახელი", +"set new password" => "დააყენეთ ახალი პაროლი", +"Default" => "საწყისი პარამეტრები" ); diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index e85c8fe112c3bd87736f073726e24278f9fb0acd..b5dbffad0852619a39ed652e40cec961222ab044 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -27,6 +27,7 @@ "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 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다.", "Setup Warning" => "설정 경고", "More" => "더 중요함", +"Less" => "덜 중요함", "Version" => "버전", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "ownCloud 커뮤니티에 의해서 개발되었습니다. 원본 코드AGPL에 따라 사용이 허가됩니다.", "Add your App" => "앱 추가", @@ -42,6 +43,7 @@ "Bugtracker" => "버그 트래커", "Commercial Support" => "상업용 지원", "You have used %s of the available %s" => "현재 공간 %s/%s을(를) 사용 중입니다", +"Get the apps to sync your files" => "앱을 이용하여 당신의 파일을 동기화 할 수 있습니다.", "Show First Run Wizard again" => "첫 실행 마법사 다시 보이기", "Password" => "암호", "Your password was changed" => "암호가 변경되었습니다", diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 177ce10dddb7b89022835a290d4cde0022d2aad2..91782289e2e560d13facacc7e5ed84e6f54d2ca6 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -17,6 +17,7 @@ "Security Warning" => "Saugumo pranešimas", "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." => "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebūtų pasiekiami per internetą, arba persikelti juos kitur.", "More" => "Daugiau", +"Less" => "Mažiau", "Add your App" => "Pridėti programėlę", "More Apps" => "Daugiau aplikacijų", "Select an App" => "Pasirinkite programą", diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index 45f1ccb9b8d66cd3fbf21f4ca6247bb1207cb691..f5fd8b76bc928b8bbbd679e1470d1d0a55b195b6 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -19,9 +19,9 @@ "Disable" => "Deaktivēt", "Enable" => "Aktivēt", "Please wait...." => "Lūdzu, uzgaidiet....", +"Error" => "Kļūda", "Updating...." => "Atjaunina....", "Error while updating app" => "Kļūda, atjauninot lietotni", -"Error" => "Kļūda", "Updated" => "Atjaunināta", "Saving..." => "Saglabā...", "deleted" => "izdzests", @@ -66,6 +66,7 @@ "Log" => "Žurnāls", "Log level" => "Žurnāla līmenis", "More" => "Vairāk", +"Less" => "Mazāk", "Version" => "Versija", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "IzstrādājusiownCloud kopiena,pirmkodukurš ir licencēts zem AGPL.", "Add your App" => "Pievieno savu lietotni", diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index 1994c2ab67e156312aa8b5865bd78723b619aa03..760b8912c25448e8130f931451d53e956e4cb91c 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -25,6 +25,7 @@ "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 не фунционира. Силно препорачуваме да го исконфигурирате вашиот сервер за вашата папка со податоци не е достапна преку интернетт или преместете ја надвор од коренот на веб серверот.", "More" => "Повеќе", +"Less" => "Помалку", "Version" => "Верзија", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развој од ownCloud заедницата, изворниот код е лиценциран соAGPL.", "Add your App" => "Додадете ја Вашата апликација", diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 4b3ff85445ab3dafbd9713e92e9e3e82eae4d840..25b67d6c01fbe30e19c9ae4570ca26ce2d345d40 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -24,6 +24,7 @@ "__language_name__" => "__language_name__", "Security Warning" => "Sikkerhetsadvarsel", "More" => "Mer", +"Less" => "Mindre", "Version" => "Versjon", "Add your App" => "Legg til din App", "More Apps" => "Flere Apps", diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 6619967626d323f385c62fcf048fe3f9b02c1ff1..26a0773e7ba16d8cdac8559aa8f225e0e3db3252 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -19,9 +19,9 @@ "Disable" => "Uitschakelen", "Enable" => "Inschakelen", "Please wait...." => "Even geduld aub....", +"Error" => "Fout", "Updating...." => "Bijwerken....", "Error while updating app" => "Fout bij bijwerken app", -"Error" => "Fout", "Updated" => "Bijgewerkt", "Saving..." => "Aan het bewaren.....", "deleted" => "verwijderd", @@ -66,6 +66,7 @@ "Log" => "Log", "Log level" => "Log niveau", "More" => "Meer", +"Less" => "Minder", "Version" => "Versie", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Ontwikkeld door de ownCloud gemeenschap, de bron code is gelicenseerd onder de AGPL.", "Add your App" => "App toevoegen", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 012ee1d6a6f422926f16c5b676d9848f32fe9c1f..664d46ea3ab6c07fdc49e6cb8a3c2af2a8826deb 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -19,9 +19,9 @@ "Disable" => "Wyłącz", "Enable" => "Włącz", "Please wait...." => "Proszę czekać...", +"Error" => "Błąd", "Updating...." => "Aktualizacja w toku...", "Error while updating app" => "Błąd podczas aktualizacji aplikacji", -"Error" => "Błąd", "Updated" => "Zaktualizowano", "Saving..." => "Zapisywanie...", "deleted" => "usunięto", @@ -66,6 +66,7 @@ "Log" => "Logi", "Log level" => "Poziom logów", "More" => "Więcej", +"Less" => "Mniej", "Version" => "Wersja", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Stworzone przez społeczność ownCloud, kod źródłowy na licencji AGPL.", "Add your App" => "Dodaj swoją aplikację", diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index 98cac0fd612f86eed5a6d00e0b3fc8f47bfb2b47..040afa84de2948439ab29c5ad3ba05371f4acb65 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -19,9 +19,9 @@ "Disable" => "Desabilitar", "Enable" => "Habilitar", "Please wait...." => "Por favor, aguarde...", +"Error" => "Erro", "Updating...." => "Atualizando...", "Error while updating app" => "Erro ao atualizar aplicativo", -"Error" => "Erro", "Updated" => "Atualizado", "Saving..." => "Guardando...", "deleted" => "excluído", @@ -66,6 +66,7 @@ "Log" => "Registro", "Log level" => "Nível de registro", "More" => "Mais", +"Less" => "Menos", "Version" => "Versão", "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", diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 71ad6347e8e06e9c8065d22b4966a879a8bdabac..b6538fbdd134659a59ebcc40ca355359f9854fe5 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -19,9 +19,9 @@ "Disable" => "Desactivar", "Enable" => "Activar", "Please wait...." => "Por favor aguarde...", +"Error" => "Erro", "Updating...." => "A Actualizar...", "Error while updating app" => "Erro enquanto actualizava a aplicação", -"Error" => "Erro", "Updated" => "Actualizado", "Saving..." => "A guardar...", "deleted" => "apagado", @@ -66,6 +66,7 @@ "Log" => "Registo", "Log level" => "Nível do registo", "More" => "Mais", +"Less" => "Menos", "Version" => "Versão", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Desenvolvido pela comunidade ownCloud, ocódigo fonte está licenciado sob a AGPL.", "Add your App" => "Adicione a sua aplicação", diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 99265e30574a4d8c1ad30025498c99a2ceccbe69..e0729fcb71dbe02a6065a14fd35becd232c7b747 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -26,6 +26,7 @@ "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.", "More" => "Mai mult", +"Less" => "Mai puțin", "Version" => "Versiunea", "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", diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index 56dd597966e938ceeab57a605b919fd9b7013561..3a0be05ba1775cdfe3751970f0a958031eff02b9 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -19,9 +19,9 @@ "Disable" => "Выключить", "Enable" => "Включить", "Please wait...." => "Повремени...", +"Error" => "Ошибка", "Updating...." => "Обновление...", "Error while updating app" => "Ошибка в процессе обновления приложения", -"Error" => "Ошибка", "Updated" => "Обновлено", "Saving..." => "Сохранение...", "deleted" => "удален", @@ -66,6 +66,7 @@ "Log" => "Лог", "Log level" => "Уровень лога", "More" => "Больше", +"Less" => "Меньше", "Version" => "Версия", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Разрабатывается сообществом ownCloud, исходный код доступен под лицензией AGPL.", "Add your App" => "Добавить приложение", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php index 46897eda84a81cf98d34b799a1831b7dbddfd21c..94cd0abfe69aa7b30426694f157f1759b33dc65a 100644 --- a/settings/l10n/ru_RU.php +++ b/settings/l10n/ru_RU.php @@ -28,6 +28,7 @@ "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер ещё не достаточно точно настроен для возможности синхронизации, т.к. похоже, что интерфейс WebDAV сломан.", "Please double check the installation guides." => "Пожалуйста проверте дважды гиды по установке.", "More" => "Подробнее", +"Less" => "Меньше", "Version" => "Версия", "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" => "Добавить Ваше приложение", diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 6946b41d40cdc94aa55301eb273d75f8cd1113a4..b40103ab9d7070a006f1eb4347171f1473e66954 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -22,6 +22,7 @@ "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 ගොනුව ක්‍රියාකරන්නේ නැත. අපි තරයේ කියා සිටිනුයේ නම්, මෙම දත්ත හා ගොනු එසේ පිවිසීමට නොහැකි වන ලෙස ඔබේ වෙබ් සේවාදායකයා වින්‍යාස කරන ලෙස හෝ එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටතට ගෙනයන ලෙසය.", "More" => "වැඩි", +"Less" => "අඩු", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "නිපදන ලද්දේ ownCloud සමාජයෙන්, the මුල් කේතය ලයිසන්ස් කර ඇත්තේ AGPL යටතේ.", "Add your App" => "යෙදුමක් එක් කිරීම", "More Apps" => "තවත් යෙදුම්", diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 609c949f8ec4bc653b838d7873be40a52d9509c7..5b0b84f917fcc9cf1939a941e3950493da31890f 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -19,9 +19,9 @@ "Disable" => "Zakázať", "Enable" => "Povoliť", "Please wait...." => "Čakajte prosím...", +"Error" => "Chyba", "Updating...." => "Aktualizujem...", "Error while updating app" => "chyba pri aktualizácii aplikácie", -"Error" => "Chyba", "Updated" => "Aktualizované", "Saving..." => "Ukladám...", "deleted" => "zmazané", @@ -66,6 +66,7 @@ "Log" => "Záznam", "Log level" => "Úroveň záznamu", "More" => "Viac", +"Less" => "Menej", "Version" => "Verzia", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuté komunitou ownCloud,zdrojový kód je licencovaný pod AGPL.", "Add your App" => "Pridať vašu aplikáciu", diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index 4406a7229752084c6290e334d981cbb7f58dd8d0..3ba3799a5dd504f197a5b3889bb9baa71f208811 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -19,9 +19,9 @@ "Disable" => "Onemogoči", "Enable" => "Omogoči", "Please wait...." => "Počakajte ...", +"Error" => "Napaka", "Updating...." => "Poteka posodabljanje ...", "Error while updating app" => "Prišlo je do napake med posodabljanjem programa.", -"Error" => "Napaka", "Updated" => "Posodobljeno", "Saving..." => "Poteka shranjevanje ...", "deleted" => "izbrisano", @@ -36,7 +36,7 @@ "A valid password must be provided" => "Navedeno mora biti veljavno geslo", "__language_name__" => "Slovenščina", "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." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podmapo korenske mape spletnega strežnika.", +"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." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud, namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podrejeno mapo korenske mape spletnega strežnika.", "Setup Warning" => "Opozorilo nastavitve", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", "Please double check the installation guides." => "Preverite navodila namestitve.", @@ -46,7 +46,7 @@ "This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Na strežniku ownCloud ni mogoče nastaviti jezikovnih določil na jezik %s. Najverjetneje so težave s posebnimi znaki v imenih datotek. Priporočljivo je namestiti zahtevane pakete za podporo jeziku %s.", "Internet connection not working" => "Internetna povezava ne deluje.", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča.", -"Cron" => "Cron", +"Cron" => "Periodično opravilo", "Execute one task with each page loaded" => "Izvedi eno nalogo 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 vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto.", "Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto.", @@ -62,10 +62,11 @@ "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", "Enforces the clients to connect to ownCloud via an encrypted connection." => "Zahtevaj šifrirano povezovanje odjemalcev v oblak ownCloud", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Prijava mora biti vzpostavljena z uporabo protokolo HTTPS za omogočanje šifriranja SSL.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Prijava mora biti vzpostavljena z uporabo protokola HTTPS za omogočanje šifriranja SSL.", "Log" => "Dnevnik", "Log level" => "Raven beleženja", "More" => "Več", +"Less" => "Manj", "Version" => "Različica", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Programski paket razvija skupnost ownCloud. Izvorna koda je objavljena pod pogoji AGPL.", "Add your App" => "Dodaj program", diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php new file mode 100644 index 0000000000000000000000000000000000000000..36ae95c82528f9474ea5720b1936eea804edd098 --- /dev/null +++ b/settings/l10n/sq.php @@ -0,0 +1,13 @@ + "Veprim i gabuar gjatë vërtetimit të identitetit", +"Error" => "Veprim i gabuar", +"undo" => "anulo", +"Delete" => "Elimino", +"Security Warning" => "Paralajmërim sigurie", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", +"Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", +"Update" => "Azhurno", +"Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj", +"Password" => "Kodi", +"New password" => "Kodi i ri" +); diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 460fab121a03f177d851079410ef6fc3f9bce585..86dc2a927295a504db34f942513492f43b19e989 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,6 +1,7 @@ "Грешка приликом учитавања списка из Складишта Програма", "Authentication error" => "Грешка при аутентификацији", +"Unable to change display name" => "Не могу да променим име за приказ", "Group already exists" => "Група већ постоји", "Unable to add group" => "Не могу да додам групу", "Could not enable app. " => "Не могу да укључим програм", @@ -13,17 +14,54 @@ "Admins can't remove themself from the admin group" => "Управници не могу себе уклонити из админ групе", "Unable to add user to group %s" => "Не могу да додам корисника у групу %s", "Unable to remove user from group %s" => "Не могу да уклоним корисника из групе %s", +"Couldn't update app." => "Не могу да ажурирам апликацију.", +"Update to {appversion}" => "Ажурирај на {appversion}", "Disable" => "Искључи", "Enable" => "Укључи", +"Please wait...." => "Сачекајте…", "Error" => "Грешка", +"Updating...." => "Ажурирам…", +"Error while updating app" => "Грешка при ажурирању апликације", +"Updated" => "Ажурирано", "Saving..." => "Чување у току...", +"deleted" => "обрисано", "undo" => "опозови", +"Unable to remove user" => "Не могу да уклоним корисника", "Groups" => "Групе", "Group Admin" => "Управник групе", "Delete" => "Обриши", +"add group" => "додај групу", +"A valid username must be provided" => "Морате унети исправно корисничко име", +"Error creating user" => "Грешка при прављењу корисника", +"A valid password must be provided" => "Морате унети исправну лозинку", "__language_name__" => "__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 не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера.", +"Setup Warning" => "Упозорење о подешавању", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", +"Please double check the installation guides." => "Погледајте водиче за инсталацију.", +"Module 'fileinfo' missing" => "Недостаје модул „fileinfo“", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста.", +"Locale not working" => "Локализација не ради", +"Internet connection not working" => "Веза с интернетом не ради", +"Execute one task with each page loaded" => "Изврши један задатак са сваком учитаном страницом", +"Sharing" => "Дељење", +"Enable Share API" => "Омогући API Share", +"Allow apps to use the Share API" => "Дозвољава апликацијама да користе API Share", +"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" => "Дозволи корисницима да деле само са корисницима у њиховим групама", +"Security" => "Безбедност", +"Enforce HTTPS" => "Наметни HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе.", +"Log" => "Бележење", +"Log level" => "Ниво бележења", +"More" => "Више", +"Less" => "Мање", +"Version" => "Верзија", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Развијају Оунклауд (ownCloud) заједница, изворни код је издат под АГПЛ лиценцом.", "Add your App" => "Додајте ваш програм", "More Apps" => "Више програма", @@ -31,7 +69,14 @@ "See application page at apps.owncloud.com" => "Погледајте страницу са програмима на apps.owncloud.com", "-licensed by " => "-лиценцирао ", "Update" => "Ажурирај", +"User Documentation" => "Корисничка документација", +"Administrator Documentation" => "Администраторска документација", +"Online Documentation" => "Мрежна документација", +"Forum" => "Форум", +"Bugtracker" => "Праћење грешака", +"Commercial Support" => "Комерцијална подршка", "You have used %s of the available %s" => "Искористили сте %s од дозвољених %s", +"Get the apps to sync your files" => "Преузмите апликације ради синхронизовања датотека", "Show First Run Wizard again" => "Поново прикажи чаробњак за прво покретање", "Password" => "Лозинка", "Your password was changed" => "Лозинка је промењена", @@ -39,11 +84,24 @@ "Current password" => "Тренутна лозинка", "New password" => "Нова лозинка", "Change password" => "Измени лозинку", +"Display Name" => "Име за приказ", +"Your display name was changed" => "Ваше име за приказ је промењено", +"Unable to change your display name" => "Не могу да променим ваше име за приказ", +"Change display name" => "Промени име за приказ", "Email" => "Е-пошта", "Your email address" => "Ваша адреса е-поште", "Fill in an email address to enable password recovery" => "Ун", "Language" => "Језик", "Help translate" => " Помозите у превођењу", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "Користите ову адресу да се повежете са ownCloud-ом у управљачу датотекама", +"Login Name" => "Корисничко име", "Create" => "Направи", -"Other" => "Друго" +"Default Storage" => "Подразумевано складиште", +"Unlimited" => "Неограничено", +"Other" => "Друго", +"Storage" => "Складиште", +"change display name" => "промени име за приказ", +"set new password" => "постави нову лозинку", +"Default" => "Подразумевано" ); diff --git a/settings/l10n/sv.php b/settings/l10n/sv.php index 393ca8135c227531084ad3985a7a8fdca8496fa8..ceff45a1595a9f07786d00b21a1fe91b208a5be1 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -19,13 +19,14 @@ "Disable" => "Deaktivera", "Enable" => "Aktivera", "Please wait...." => "Var god vänta...", +"Error" => "Fel", "Updating...." => "Uppdaterar...", "Error while updating app" => "Fel uppstod vid uppdatering av appen", -"Error" => "Fel", "Updated" => "Uppdaterad", "Saving..." => "Sparar...", "deleted" => "raderad", "undo" => "ångra", +"Unable to remove user" => "Kan inte ta bort användare", "Groups" => "Grupper", "Group Admin" => "Gruppadministratör", "Delete" => "Radera", @@ -36,9 +37,11 @@ "__language_name__" => "__language_name__", "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 datakatalog och dina filer är förmodligen tillgängliga från Internet. Den .htaccess-fil som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern så att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root.", +"Setup Warning" => "Installationsvarning", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the installation guides." => "Var god kontrollera installationsguiden.", "Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", "Sharing" => "Dela", "Allow links" => "Tillåt länkar", "Allow resharing" => "Tillåt vidaredelning", @@ -48,6 +51,7 @@ "Security" => "Säkerhet", "Log" => "Logg", "More" => "Mer", +"Less" => "Mindre", "Version" => "Version", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Utvecklad av ownCloud kommunity, källkoden är licenserad under AGPL.", "Add your App" => "Lägg till din applikation", @@ -63,6 +67,7 @@ "Bugtracker" => "Bugtracker", "Commercial Support" => "Kommersiell support", "You have used %s of the available %s" => "Du har använt %s av tillgängliga %s", +"Get the apps to sync your files" => "Skaffa appar för att synkronisera dina filer", "Show First Run Wizard again" => "Visa Första uppstarts-guiden igen", "Password" => "Lösenord", "Your password was changed" => "Ditt lösenord har ändrats", diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 0bb29158fd25a4c7d82abd9324aecc39720baf9f..12aa756320041ca5cc500291e33eaf7b542749a2 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -24,6 +24,7 @@ "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 கோப்பு வேலை செய்யவில்லை. தரவு அடைவை நீண்ட நேரத்திற்கு அணுகக்கூடியதாக உங்களுடைய வலைய சேவையகத்தை தகவமைக்குமாறு நாங்கள் உறுதியாக கூறுகிறோம் அல்லது தரவு அடைவை வலைய சேவையக மூல ஆவணத்திலிருந்து வெளியே அகற்றுக. ", "More" => "மேலதிக", +"Less" => "குறைவான", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Developed by the ownCloud community, the source code is licensed under the AGPL.", "Add your App" => "உங்களுடைய செயலியை சேர்க்க", "More Apps" => "மேலதிக செயலிகள்", diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index fd623655f83c0557ec909c43d58e497a4d13bd8e..f2bd27720f1372919a021f2f53ff9c67f05585b0 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -18,9 +18,9 @@ "Disable" => "ปิดใช้งาน", "Enable" => "เปิดใช้งาน", "Please wait...." => "กรุณารอสักครู่...", +"Error" => "ข้อผิดพลาด", "Updating...." => "กำลังอัพเดทข้อมูล...", "Error while updating app" => "เกิดข้อผิดพลาดในระหว่างการอัพเดทแอปฯ", -"Error" => "ข้อผิดพลาด", "Updated" => "อัพเดทแล้ว", "Saving..." => "กำลังบันทึุกข้อมูล...", "deleted" => "ลบแล้ว", @@ -32,6 +32,7 @@ "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 ของเว็บเซิร์ฟเวอร์แล้ว", "More" => "มาก", +"Less" => "น้อย", "Version" => "รุ่น", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "พัฒนาโดย the ชุมชนผู้ใช้งาน ownCloud, the ซอร์สโค้ดอยู่ภายใต้สัญญาอนุญาตของ AGPL.", "Add your App" => "เพิ่มแอปของคุณ", diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 09a67103d3e3929b135b4792c3168d5d7107720f..1bd9dc3daccc41a55978c8c3907a939ea41df43d 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -19,9 +19,9 @@ "Disable" => "Etkin değil", "Enable" => "Etkin", "Please wait...." => "Lütfen bekleyin....", +"Error" => "Hata", "Updating...." => "Güncelleniyor....", "Error while updating app" => "Uygulama güncellenirken hata", -"Error" => "Hata", "Updated" => "Güncellendi", "Saving..." => "Kaydediliyor...", "deleted" => "silindi", @@ -34,7 +34,7 @@ "A valid username must be provided" => "Geçerli bir kullanıcı adı mutlaka sağlanmalı", "Error creating user" => "Kullanıcı oluşturulurken hata", "A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", -"__language_name__" => "__dil_adı__", +"__language_name__" => "Türkçe", "Security Warning" => "Güvenlik Uyarisi", "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 dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", "Setup Warning" => "Kurulum Uyarısı", @@ -43,21 +43,30 @@ "Module 'fileinfo' missing" => "Modül 'fileinfo' kayıp", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modülü 'fileinfo' kayıp. MIME-tip tanıma ile en iyi sonuçları elde etmek için bu modülü etkinleştirmenizi öneririz.", "Locale not working" => "Locale çalışmıyor.", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Bu ownCloud sunucusu sistem yerelini %s olarak değiştiremedi. Bu, dosya adlarındaki bazı karakterler ile sorun yaşanabileceği anlamına gelir. %s yerelini desteklemek için gerekli paketleri kurmanızı şiddetle öneririz.", "Internet connection not working" => "İnternet bağlantısı çalışmıyor", "This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud sunucusunun internet bağlantısı yok. Bu nedenle harici depolama bağlantısı, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacaktır. Uzak dosyalara erişim ve e-posta ile bildirim gönderme çalışmayacak. Eğer ownCloud tüm özelliklerini kullanmak istiyorsanız, internet bağlantısı gerekmektedir.", "Cron" => "Cron", +"Execute one task with each page loaded" => "Yüklenen her sayfa ile bir görev çalıştır", +"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php bir webcron hizmetinde kaydedilir. Owncloud kökündeki cron.php sayfasını http üzerinden dakikada bir çağır.", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Sistemin cron hizmetini kullan. Bir sistem cronjob'ı ile owncloud klasöründeki cron.php dosyasını dakikada bir çağır.", "Sharing" => "Paylaşım", "Enable Share API" => "Paylaşım API'sini etkinleştir.", "Allow apps to use the Share API" => "Uygulamaların paylaşım API'sini kullanmasına izin ver", "Allow links" => "Bağlantıları izin ver.", "Allow users to share items to the public with links" => "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver", "Allow resharing" => "Paylaşıma izin ver", +"Allow users to share items shared with them again" => "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver", "Allow users to share with anyone" => "Kullanıcıların herşeyi paylaşmalarına izin ver", +"Allow users to only share with users in their groups" => "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver", "Security" => "Güvenlik", "Enforce HTTPS" => "HTTPS bağlantısına zorla", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "İstemcileri ownCloud'a şifreli bir bağlantı ile bağlanmaya zorlar.", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen bu ownCloud örneğine HTTPS ile bağlanın.", "Log" => "Kayıtlar", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", +"Less" => "Az", "Version" => "Sürüm", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Geliştirilen TarafownCloud community, the source code is altında lisanslanmıştır AGPL.", "Add your App" => "Uygulamanı Ekle", @@ -87,7 +96,7 @@ "Change display name" => "Ekran adını değiştir", "Email" => "Eposta", "Your email address" => "Eposta adresiniz", -"Fill in an email address to enable password recovery" => "Parola sıfırlamayı aktifleştirmek için eposta adresi girin", +"Fill in an email address to enable password recovery" => "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin", "Language" => "Dil", "Help translate" => "Çevirilere yardım edin", "WebDAV" => "WebDAV", diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 2e182b66292c79753353e2492d723755330ab585..4618a86ceb1c8f720a8387503de94830673ef7e9 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -19,9 +19,9 @@ "Disable" => "Вимкнути", "Enable" => "Включити", "Please wait...." => "Зачекайте, будь ласка...", +"Error" => "Помилка", "Updating...." => "Оновлюється...", "Error while updating app" => "Помилка при оновленні програми", -"Error" => "Помилка", "Updated" => "Оновлено", "Saving..." => "Зберігаю...", "deleted" => "видалені", @@ -66,6 +66,7 @@ "Log" => "Протокол", "Log level" => "Рівень протоколювання", "More" => "Більше", +"Less" => "Менше", "Version" => "Версія", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Розроблено ownCloud громадою, вихідний код має ліцензію AGPL.", "Add your App" => "Додати свою програму", diff --git a/settings/l10n/ur_PK.php b/settings/l10n/ur_PK.php index 1adacafdff8d2cb78099f77b8e8ea73394d1cc95..02bcb0573271b25e3b1161049ad1defc7e90b922 100644 --- a/settings/l10n/ur_PK.php +++ b/settings/l10n/ur_PK.php @@ -1,4 +1,5 @@ "ایرر", "Password" => "پاسورڈ", "New password" => "نیا پاسورڈ" ); diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 8a843f58ed82fcf6c4b5f301e698dd0b487e39de..156aae50e3f8a30de80525abaef933884570f63c 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -19,9 +19,9 @@ "Disable" => "Tắt", "Enable" => "Bật", "Please wait...." => "Xin hãy đợi...", +"Error" => "Lỗi", "Updating...." => "Đang cập nhật...", "Error while updating app" => "Lỗi khi cập nhật ứng dụng", -"Error" => "Lỗi", "Updated" => "Đã cập nhật", "Saving..." => "Đang tiến hành lưu ...", "deleted" => "đã xóa", @@ -33,6 +33,7 @@ "Security Warning" => "Cảnh bảo bảo mật", "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." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ mạng. Tập tin .htaccess do ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ web để thư mục dữ liệu không còn bị truy cập hoặc bạn nên di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "More" => "hơn", +"Less" => "ít", "Version" => "Phiên bản", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Được phát triển bởi cộng đồng ownCloud, mã nguồn đã được cấp phép theo chuẩn AGPL.", "Add your App" => "Thêm ứng dụng của bạn", diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index fcb479dd827aad3e7161e38ac9cdae2f4ae8d22e..e8b1527ef0e8fff12efb03ec81b0ffc254718c02 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,6 +1,7 @@ "不能从App Store 中加载列表", "Authentication error" => "认证错误", +"Unable to change display name" => "无法更改显示名称", "Group already exists" => "群组已存在", "Unable to add group" => "未能添加群组", "Could not enable app. " => "未能启用应用", @@ -10,21 +11,52 @@ "Unable to delete user" => "未能删除用户", "Language changed" => "语言改变了", "Invalid request" => "非法请求", +"Admins can't remove themself from the admin group" => "管理员无法将自己从管理组中移除", "Unable to add user to group %s" => "未能添加用户到群组 %s", "Unable to remove user from group %s" => "未能将用户从群组 %s 移除", +"Couldn't update app." => "应用无法升级。", +"Update to {appversion}" => "升级至{appversion}", "Disable" => "禁用", "Enable" => "启用", +"Please wait...." => "请稍候……", "Error" => "出错", +"Updating...." => "升级中……", +"Error while updating app" => "应用升级时出现错误", +"Updated" => "已升级", "Saving..." => "保存中...", "deleted" => "删除", "undo" => "撤销", +"Unable to remove user" => "无法移除用户", "Groups" => "组", "Group Admin" => "群组管理员", "Delete" => "删除", +"add group" => "添加群组", +"A valid username must be provided" => "请填写有效用户名", +"Error creating user" => "新增用户时出现错误", +"A valid password must be provided" => "请填写有效密码", "__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 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。", +"Setup Warning" => "配置注意", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", +"Please double check the installation guides." => "请双击安装向导。", +"Locale not working" => "区域设置未运作", +"Internet connection not working" => "互联网连接未运作", +"Cron" => "Cron", +"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" => "只允许用户向所在群组中的其他用户分享", +"Security" => "安全", +"Enforce HTTPS" => "强制HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "强制客户端通过加密连接与ownCloud连接", "More" => "更多", +"Less" => "更少", +"Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由 ownCloud 社区开发,s源代码AGPL 许可协议发布。", "Add your App" => "添加你的应用程序", "More Apps" => "更多应用", @@ -32,17 +64,39 @@ "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程序", "-licensed by " => "授权协议 ", "Update" => "更新", +"User Documentation" => "用户文档", +"Administrator Documentation" => "管理员文档", +"Online Documentation" => "在线说明文档", +"Forum" => "论坛", +"Bugtracker" => "Bug追踪者", +"Commercial Support" => "商业支持", +"You have used %s of the available %s" => "您已使用%s/%s", +"Get the apps to sync your files" => "获取应用并同步您的文件", +"Show First Run Wizard again" => "再次显示首次运行向导", "Password" => "密码", "Your password was changed" => "您的密码以变更", "Unable to change your password" => "不能改变你的密码", "Current password" => "现在的密码", "New password" => "新密码", "Change password" => "改变密码", +"Display Name" => "显示名称", +"Your display name was changed" => "您的显示名称已修改", +"Unable to change your display name" => "无法修改您的显示名称", +"Change display name" => "更改显示名称", "Email" => "Email", "Your email address" => "你的email地址", "Fill in an email address to enable password recovery" => "输入一个邮箱地址以激活密码恢复功能", "Language" => "语言", "Help translate" => "帮助翻译", +"WebDAV" => "WebDAV", +"Use this address to connect to your ownCloud in your file manager" => "使用此地址来在您的文件管理器中连接您的ownCloud", +"Login Name" => "登录名", "Create" => "新建", -"Other" => "其他的" +"Default Storage" => "默认容量", +"Unlimited" => "无限制", +"Other" => "其他的", +"Storage" => "容量", +"change display name" => "更改显示名称", +"set new password" => "设置新的密码", +"Default" => "默认" ); diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index a4b4ae7c57915581f16e041c5492fa7259af616a..b076044b82acaadccd8f37a3afa131a73e82e480 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -19,9 +19,9 @@ "Disable" => "禁用", "Enable" => "启用", "Please wait...." => "请稍等....", +"Error" => "错误", "Updating...." => "正在更新....", "Error while updating app" => "更新 app 时出错", -"Error" => "错误", "Updated" => "已更新", "Saving..." => "正在保存", "deleted" => "已经删除", @@ -66,6 +66,7 @@ "Log" => "日志", "Log level" => "日志级别", "More" => "更多", +"Less" => "更少", "Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud社区开发, 源代码AGPL许可证下发布。", "Add your App" => "添加应用", diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 637b640359cb47591ac86e8ae27d826935899b46..5fb21bfe08778a160d760c75edf5aaba939347bb 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -19,9 +19,9 @@ "Disable" => "停用", "Enable" => "啟用", "Please wait...." => "請稍候...", +"Error" => "錯誤", "Updating...." => "更新中...", "Error while updating app" => "更新應用程式錯誤", -"Error" => "錯誤", "Updated" => "已更新", "Saving..." => "儲存中...", "deleted" => "已刪除", @@ -37,15 +37,35 @@ "__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." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", +"Setup Warning" => "設定警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", +"Module 'fileinfo' missing" => "遺失 'fileinfo' 模組", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", +"Locale not working" => "語系無法運作", +"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。", +"Internet connection not working" => "去連線", +"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", "Cron" => "定期執行", +"Execute one task with each page loaded" => "當頁面載入時,執行", +"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。", +"Sharing" => "分享", +"Enable Share API" => "啟用分享 API", +"Allow apps to use the Share API" => "允許 apps 使用分享 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" => "僅允許使用者在群組內分享", "Security" => "安全性", +"Enforce HTTPS" => "強制啟用 HTTPS", +"Enforces the clients to connect to ownCloud via an encrypted connection." => "強制指定用戶端使用加密的連線連接到 ownCloud", +"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "請使用 HTTPS 連線到 ownCloud,或是關閉強制使用 SSL 的選項。", "Log" => "紀錄", "Log level" => "紀錄層級", "More" => "更多", +"Less" => "少", "Version" => "版本", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "由ownCloud 社區開發,源代碼AGPL許可證下發布。", "Add your App" => "添加你的 App", @@ -65,7 +85,7 @@ "Show First Run Wizard again" => "再次顯示首次使用精靈", "Password" => "密碼", "Your password was changed" => "你的密碼已更改", -"Unable to change your password" => "無法變更你的密碼", +"Unable to change your password" => "無法變更您的密碼", "Current password" => "目前密碼", "New password" => "新密碼", "Change password" => "變更密碼", @@ -74,14 +94,14 @@ "Unable to change your display name" => "無法更改您的顯示名稱", "Change display name" => "更改顯示名稱", "Email" => "電子郵件", -"Your email address" => "你的電子郵件信箱", +"Your email address" => "您的電子郵件信箱", "Fill in an email address to enable password recovery" => "請填入電子郵件信箱以便回復密碼", "Language" => "語言", "Help translate" => "幫助翻譯", "WebDAV" => "WebDAV", "Use this address to connect to your ownCloud in your file manager" => "在您的檔案管理員中使用這個地址來連線到 ownCloud", "Login Name" => "登入名稱", -"Create" => "創造", +"Create" => "建立", "Default Storage" => "預設儲存區", "Unlimited" => "無限制", "Other" => "其他", diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 9d7a5d9a4cf04243137e907b4353dd56ead9879c..182168ce9eb4553344f83357d8ea1c06bf774afe 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -214,7 +214,11 @@ endfor;?> message);?> - time));?> + time)){ + p(OC_Util::formatDate($entry->time)); + } else { + p($entry->time); + }?> @@ -230,7 +234,7 @@ endfor;?>
t('Version'));?> ownCloud - ()
+ ()
t('Developed by the ownCloud community, the source code is licensed under the AGPL.')); ?>
diff --git a/settings/templates/personal.php b/settings/templates/personal.php index f3fd3f1010daf84b857afa3a44772b3c2621a83e..03073069ab77688cd3888cbc45d56785b529317d 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -38,7 +38,7 @@ if($_['passwordChangeSupported']) {
t('Your password was changed');?>
t('Unable to change your password');?>
- diff --git a/settings/templates/users.php b/settings/templates/users.php index deffe1683233036ad6759fa79e3447cad6bb69c5..6113337f4eeb2ed916b1d4d558b975c43e0ffb16 100644 --- a/settings/templates/users.php +++ b/settings/templates/users.php @@ -55,7 +55,7 @@ $_['subadmingroups'] = array_flip($items); - diff --git a/tests/lib/app.php b/tests/lib/app.php index c452d752c9f43cc13cc8749fd7242d9619ebe96b..5396db8143e8cc5358d7edb5b7d487a4bf6aa83b 100644 --- a/tests/lib/app.php +++ b/tests/lib/app.php @@ -64,6 +64,14 @@ class Test_App extends PHPUnit_Framework_TestCase { } + public function testIsAppVersionCompatibleShouldWorkForPreAlpha(){ + $oc = array(5, 0, 3); + $app = '4.93'; + + $this->assertTrue(OC_App::isAppVersionCompatible($oc, $app)); + } + + public function testIsAppVersionCompatibleShouldFailOneVersionNumbers(){ $oc = array(4, 3, 1); $app = '5'; diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php index 3d68efea5fc78c5358636d1996a9121cb5cc6c4f..0e22f26ae838f79c7fe76f8500d1dbf5670006a0 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -257,4 +257,10 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $content = stream_get_contents($fh); $this->assertEquals(file_get_contents($textFile), $content); } + + public function testTouchCreateFile(){ + $this->assertFalse($this->instance->file_exists('foo')); + $this->instance->touch('foo'); + $this->assertTrue($this->instance->file_exists('foo')); + } } diff --git a/tests/lib/vobject.php b/tests/lib/vobject.php new file mode 100644 index 0000000000000000000000000000000000000000..1103a4b3297084479b082bc42bb0e3f56e0bc881 --- /dev/null +++ b/tests/lib/vobject.php @@ -0,0 +1,19 @@ +assertEquals("SUMMARY:Escape\;this\,please\r\n", $property->serialize()); + } +} \ No newline at end of file