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<files.length; i++) { var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete"); - var oldHTML = deleteAction[0].outerHTML; + var oldHTML = deleteAction.html(); var newHTML = '<img class="move2trash" data-action="Delete" title="'+t('files', 'perform delete operation')+'" src="'+ OC.imagePath('core', 'loading.gif') +'"></a>'; - 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<files.length;i++){ - if(files[i].size ==0 && files[i].type== '') - { - OC.dialogs.alert(t('files', 'Unable to upload your file as it is a directory or has 0 bytes'), t('files', 'Upload Error')); - return; - } - totalSize+=files[i].size; - } - } - if(totalSize>$('#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;i<files.length;i++){ - if(files[i].size>0){ - 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<files.length;i++){ - var fileName = files[i].name - 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') - var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i], - 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 - formArray[2]['value'] = dirName; - return formArray; - }}).success(function(result, textStatus, jqXHR) { - var response; - response=jQuery.parseJSON(result); - if(response[0] == undefined || response[0].status != 'success') { - OC.Notification.show(t('files', response.data.message)); - } - Files.updateMaxUploadFilesize(response); - var file=response[0]; - // TODO: this doesn't work if the file name has been changed server side - delete uploadingFiles[dirName][file.name]; - if ($.assocArraySize(uploadingFiles[dirName]) == 0) { - delete uploadingFiles[dirName]; - } - //TODO update file upload size limit - - 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 === 0) { - var img = OC.imagePath('core', 'filetypes/folder.png'); - var tr=$('tr').filterAttr('data-file',dirName); - tr.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text(''); - uploadtext.hide(); - } else { - uploadtext.text(t('files', '{count} files uploading', {count: currentUploads})); - } - }) - .error(function(jqXHR, textStatus, errorThrown) { - if(errorThrown === 'abort') { - var currentUploads = parseInt(uploadtext.attr('currentUploads')); - currentUploads -= 1; - uploadtext.attr('currentUploads', currentUploads); - if(currentUploads === 0) { - var img = OC.imagePath('core', 'filetypes/folder.png'); - var tr=$('tr').filterAttr('data-file',dirName); - tr.find('td.filename').attr('style','background-image:url('+img+')'); - uploadtext.text(''); - uploadtext.hide(); - } else { - uploadtext.text(t('files', '{count} files uploading', {count: currentUploads})); - } - delete uploadingFiles[dirName][fileName]; - OC.Notification.show(t('files', 'Upload cancelled.')); - } - }); - //TODO test with filenames containing slashes - if(uploadingFiles[dirName] === undefined) { - uploadingFiles[dirName] = {}; - } - uploadingFiles[dirName][fileName] = jqXHR; - } else { - var jqXHR = $('#file_upload_start').fileupload('send', {files: files[i]}) - .success(function(result, textStatus, jqXHR) { - var response; - response=jQuery.parseJSON(result); - 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 { - Files.cancelUpload(this.files[0].name); - OC.Notification.show(t('files', response.data.message)); - $('#fileList > 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 = $('<tr data-dir="'+dir+'" data-filename="'+elem.name+'">' - +'<td class="filename">'+elem.name+'</td><td class="size">'+humanFileSize(elem.size)+'</td>' - +'</tr>'); + var newtr = $('<tr/>').attr('data-dir', dir).attr('data-filename', elem.name); + newtr.append($('<td/>').addClass('filename').text(elem.name)); + newtr.append($('<td/>').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 @@ +<?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 @@ <?php $TRANSLATIONS = array( "Delete" => "Õ‹Õ¶Õ»Õ¥Õ¬", -"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 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "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 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "%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 @@ <?php $TRANSLATIONS = array( -"Close" => "داخستن", "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 @@ +<?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "%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 @@ <?php $TRANSLATIONS = array( +"Could not move %s - File with this name already exists" => "Ðе могу да премеÑтим %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 @@ +<?php $TRANSLATIONS = array( +"Error" => "ایرر" +); 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 @@ <?php $TRANSLATIONS = array( "Files" => "文件", "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 @@ </div> <div id="file_action_panel"></div> <?php else:?> - <div class="crumb last"><?php p($l->t('You don’t have write permissions here.'))?></div> + <div class="actions"><input type="button" disabled value="<?php p($l->t('You don’t have write permissions here.'))?>"></div> <input type="hidden" name="dir" value="<?php p($_['dir']) ?>" id="dir"> <?php endif;?> <input type="hidden" name="permissions" value="<?php p($_['permissions']); ?>" id="permissions"> 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); ?> <tr data-id="<?php p($file['fileid']); ?>" data-file="<?php p($name);?>" diff --git a/apps/files_encryption/l10n/ka_GE.php b/apps/files_encryption/l10n/ka_GE.php new file mode 100644 index 0000000000000000000000000000000000000000..0362c676f00896ffeec998b4d561fd6ec189d674 --- /dev/null +++ b/apps/files_encryption/l10n/ka_GE.php @@ -0,0 +1,7 @@ +<?php $TRANSLATIONS = array( +"Encryption" => "ენკრიპციáƒ", +"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_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 @@ +<?php $TRANSLATIONS = array( +"Users" => "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 @@ "<b>Warning:</b> 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." => "<b> Advarsel: </ b> 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 @@ "<b>Warning:</b> 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." => "<b>Î Ïοσοχή:</b> Η υποστήÏιξη 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", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Hoiatus:</b> \"smbclient\" pole paigaldatud. Jagatud CIFS/SMB hoidlate ühendamine pole võimalik. Palu oma süsteemihalduril paigaldata SAMBA tugi.", +"<b>Warning:</b> 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." => "<b>Hoiatus:</b> 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 @@ "<b>Warning:</b> 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." => "<b>Varoitus:</b> 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 @@ <?php $TRANSLATIONS = array( "Access granted" => "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", "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Peringatan:</b> \"smbclient\" tidak terpasang. Mount direktori CIFS/SMB tidak dapat dilakukan. Silakan minta administrator sistem untuk memasangnya.", "<b>Warning:</b> 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." => "<b>Peringatan:</b> 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 @@ <?php $TRANSLATIONS = array( +"Access granted" => "დáƒáƒ¨áƒ•áƒ”ბრმინიáƒáƒ”ბულიáƒ", +"Error configuring Dropbox storage" => "შეცდáƒáƒ›áƒ Dropbox სáƒáƒªáƒáƒ•áƒ˜áƒ¡ კáƒáƒœáƒ¤áƒ˜áƒ’ურირების დრáƒáƒ¡", +"Grant access" => "დáƒáƒ¨áƒ•áƒ”ბის მინიáƒáƒ”ბáƒ", +"Please provide a valid Dropbox app key and secret." => "გთხáƒáƒ•áƒ— მიუთითáƒáƒ— Dropbox áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ˜áƒ¡ გáƒáƒ¡áƒáƒ¦áƒ”ბი დრკáƒáƒ“ი.", +"Error configuring Google Drive storage" => "შეცდáƒáƒ›áƒ Google Drive სáƒáƒªáƒáƒ•áƒ˜áƒ¡ კáƒáƒœáƒ¤áƒ˜áƒ’ურირების დრáƒáƒ¡", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> \"smbclient\" áƒáƒ áƒáƒ ის ინსტáƒáƒšáƒ˜áƒ ებული. CIFS/SMB ზიáƒáƒ ების მáƒáƒœáƒ¢áƒ˜áƒ ებრშეუძლებელიáƒ. გთხáƒáƒ•áƒ— თხáƒáƒ•áƒáƒ— თქვენს სისტემურáƒáƒ“მინისტრáƒáƒ¢áƒáƒ ებს დáƒáƒáƒ˜áƒœáƒ¡áƒ¢áƒáƒšáƒ˜áƒ áƒáƒ¡ ის.", +"<b>Warning:</b> 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." => "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> 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Ä…", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Ä®spÄ—jimas:</b> \"smbclient\" nÄ—ra įdiegtas. CIFS/SMB dalinimasis nÄ—ra galimas. PraÅ¡ome susisiekti su sistemos administratoriumi kad bÅ«tų įdiegtas \"smbclient\"", +"<b>Warning:</b> 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." => "<b>Ä®spÄ—jimas:</b> 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 @@ +<?php $TRANSLATIONS = array( +"Users" => "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 @@ <?php $TRANSLATIONS = array( "Access granted" => "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ı", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>Uyari.</b>''smbclient''yüklü deÄŸil. Mont etme CIFS/SMB hissenin mümkün deÄŸildir. Lutfen kullanici sistemin sormak onu yuklemek ici, ", +"<b>Warning:</b> 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." => "<Uyari.</b>. 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 å˜å‚¨å¤±è´¥", +"<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "<b>注æ„:</b>“SMB客户端â€æœªå®‰è£…。CIFS/SMB分享ä¸å¯ç”¨ã€‚请å‘您的系统管ç†å‘˜è¯·æ±‚安装该客户端。", +"<b>Warning:</b> 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." => "<b>注æ„:</b>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 @@ +<?php $TRANSLATIONS = array( +"Password" => "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 @@ <?php $TRANSLATIONS = array( -"Password" => "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 @@ <?php $TRANSLATIONS = array( "Password" => "პáƒáƒ áƒáƒšáƒ˜", "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 @@ <?php $TRANSLATIONS = array( -"Password" => "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 @@ +<?php $TRANSLATIONS = array( +"Password" => "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 @@ <info> <id>files_trashbin</id> <name>Deleted files</name> - <description>Keep a copy of deleted files so that they can be restored if needed</description> + <description> + 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. + </description> <licence>AGPL</licence> <author>Bjoern Schiessle</author> <shipped>true</shipped> 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 @@ <?php $installedVersion=OCP\Config::getAppValue('files_trashbin', 'installed_version'); -// move versions to new directory -if (version_compare($installedVersion, '0.2', '<')) { - $datadir = \OCP\Config::getSystemValue('datadirectory').'/'; - - $users = \OCP\User::getUsers(); - foreach ($users as $user) { - - //create new folders - @mkdir($datadir.$user.'/files_trashbin/files'); - @mkdir($datadir.$user.'/files_trashbin/versions'); - @mkdir($datadir.$user.'/files_trashbin/keyfiles'); - - // move files to the new folders - if ($handle = opendir($datadir.$user.'/files_trashbin')) { - while (false !== ($file = readdir($handle))) { - if ($file != "." && $file != ".." && $file != 'files' && $file != 'versions' && $file != 'keyfiles') { - rename($datadir.$user.'/files_trashbin/'.$file, - $datadir.$user.'/files_trashbin/files/'.$file); - } - } - closedir($handle); - } - - // move versions to the new folder - if ($handle = opendir($datadir.$user.'/versions_trashbin')) { - while (false !== ($file = readdir($handle))) { - rename($datadir.$user.'/versions_trashbin/'.$file, - $datadir.$user.'/files_trashbin/versions/'.$file); - } - closedir($handle); - } - - @rmdir($datadir.$user.'/versions_trashbin'); - - } +if (version_compare($installedVersion, '0.4', '<')) { + //size of the trash bin could be incorrect, remove it for all users to + //enforce a recalculation during next usage. + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trashsize`'); + $result = $query->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 @@ <?php $TRANSLATIONS = array( +"Error" => "সমসà§à¦¯à¦¾", "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 @@ +<?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "ფáƒáƒ˜áƒšáƒ˜ %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 @@ <?php $TRANSLATIONS = array( +"Error" => "오류", "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 @@ <?php $TRANSLATIONS = array( +"Error" => "هه‌ڵه", "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "Грешка", "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( "Couldn't delete %s permanently" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "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 @@ <?php $TRANSLATIONS = array( +"Error" => "දà·à·‚යක්", "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 @@ +<?php $TRANSLATIONS = array( +"Couldn't delete %s permanently" => "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 @@ <?php $TRANSLATIONS = array( "perform restore operation" => "врати у претходно Ñтање", +"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 @@ <?php $TRANSLATIONS = array( +"Error" => "வழà¯", "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 @@ <?php $TRANSLATIONS = array( +"Error" => "పొరపాటà±", "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 @@ <?php $TRANSLATIONS = array( "perform restore operation" => "ดำเนินà¸à¸²à¸£à¸„ืนค่า", +"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 @@ +<?php $TRANSLATIONS = array( +"Error" => "ایرر" +); 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 @@ <?php $TRANSLATIONS = array( +"Error" => "出错", "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 @@ <?php $TRANSLATIONS = array( +"Error" => "錯誤", "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 @@ <?php $TRANSLATIONS = array( -"Couldn't delete %s permanently" => "無法永久刪除%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 @@ <author>Frank Karlitschek</author> <require>4.93</require> <shipped>true</shipped> - <description>Versioning of files</description> + <description> + 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. + </description> <types> <filesystem/> </types> 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 @@ <?php $TRANSLATIONS = array( -"History" => "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 @@ <?php $TRANSLATIONS = array( +"Could not revert: %s" => "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 @@ +<?php $TRANSLATIONS = array( +"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" => "დáƒáƒáƒ‘რუნეთ ფáƒáƒ˜áƒšáƒ˜ წინრპáƒáƒ–იციáƒáƒ–ე 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 @@ <?php $TRANSLATIONS = array( -"History" => "ì—사", -"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 @@ <?php $TRANSLATIONS = array( -"History" => "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 @@ <?php $TRANSLATIONS = array( -"History" => "历å²", -"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 @@ +<?php $TRANSLATIONS = array( +"Deletion failed" => "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 @@ <?php $TRANSLATIONS = array( +"Failed to delete the server configuration" => "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", +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>Hoiatus:</b> 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.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>Hoiatus:</b>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 @@ <?php $TRANSLATIONS = array( "Failed to delete the server configuration" => "É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 @@ <?php $TRANSLATIONS = array( -"Deletion failed" => "წáƒáƒ¨áƒšáƒ˜áƒ¡ ველი", +"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" => "წáƒáƒ¨áƒšáƒ˜áƒ¡ დáƒáƒ“áƒáƒ¡áƒ¢áƒ£áƒ ებáƒ", +"<b>Warning:</b> Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behaviour. Please ask your system administrator to disable one of them." => "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ˜áƒ¡ user_ldap დრuser_webdavauth áƒáƒ áƒáƒ—áƒáƒ•áƒ¡áƒ”ბáƒáƒ“იáƒ. თქვენ შეიძლებრშეეჩეხáƒáƒ— მáƒáƒ£áƒšáƒáƒ“ნელ შშედეგებს. თხáƒáƒ•áƒ”თ თქვენს áƒáƒ“მინისტრáƒáƒ¢áƒáƒ ს ჩáƒáƒ—იშáƒáƒ¡ ერთერთი.", +"<b>Warning:</b> The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> 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 @@ +<?php $TRANSLATIONS = array( +"Password" => "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 @@ <?php $TRANSLATIONS = array( "WebDAV Authentication" => "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 @@ +<?php $TRANSLATIONS = array( +"WebDAV Authentication" => "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 @@ +<?php $TRANSLATIONS = array( +"WebDAV Authentication" => "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 @@ <?php $TRANSLATIONS = array( "WebDAV Authentication" => "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 = '<p><span class="ui-icon ui-icon-alert"></span>'+text+'</p>'; + var content = '<p><span class="ui-icon ui-icon-alert"></span>' + escapeHTML(text) + '</p>'; 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 = '<p><span class="ui-icon ui-icon-info"></span>'+text+'</p>'; + var content = '<p><span class="ui-icon ui-icon-info"></span>' + escapeHTML(text) + '</p>'; 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 = '<p><span class="ui-icon ui-icon-notice"></span>'+text+'</p>'; + var content = '<p><span class="ui-icon ui-icon-notice"></span>' + escapeHTML(text) + '</p>'; 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 = '<p><span class="ui-icon ui-icon-pencil"></span>'+text+':<br/><input type="text" id="oc-dialog-prompt-input" value="'+default_value+'" style="width:90%"></p>'; - OCdialogs.message(content, title, OCdialogs.PROMPT_DIALOG, OCdialogs.OK_CANCEL_BUTTONS, callback, modal); + var input = '<input type="text" id="oc-dialog-prompt-input" value="' + escapeHTML(default_value) + '" style="width:90%">'; + var content = '<p><span class="ui-icon ui-icon-pencil"></span>' + escapeHTML(text) + ':<br/>' + input + '</p>'; + 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 = '<table>'; - $.each(fields, function(index, val){ - content += '<tr><td>'+val.text+'</td><td>'; - var type=val.type; + $.each(fields, function(index, field){ + content += '<tr><td>' + escapeHTML(field.text) + '</td><td>'; + var type = field.type; - if (type == 'text' || type == 'checkbox' || type == 'password') { - content += '<input type="'+type+'" name="'+val.name+'"'; - if (type == 'checkbox') { - if (val.value != undefined && val.value == true) { - content += ' checked="checked">'; - } else { - content += '>'; - } - } else if (type == 'text' || type == 'password' && val.value) { - content += ' value="'+val.value+'">'; + if (type === 'text' || type === 'checkbox' || type === 'password') { + content += '<input type="' + type + '" name="' + field.name + '"'; + if (type === 'checkbox' && field.value === true) { + content += ' checked="checked"'; + } else if (type === 'text' || type === 'password' && val.value) { + content += ' value="' + escapeHTML(field.value) + '"'; } - } else if (type == 'select') { - content += '<select name="'+val.name+'"'; - if (val.value != undefined) { - content += ' value="'+val.value+'"'; + content += '>'; + } else if (type === 'select') { + content += '<select name="' + escapeHTML(field.name) + '"'; + if (field.value !== undefined) { + content += ' value="' + escapeHTML(field.value) + '"'; } content += '>'; - $.each(val.options, function(index, valo){ - content += '<option value="'+valo.value+'">'+valo.text+'</option>'; + $.each(field.options, function(index, field_option){ + content += '<option value="' + escapeHTML(field_option.value) + '">' + escapeHTML(field_option.text) + '</option>'; }); content += '</select>'; } @@ -103,168 +107,320 @@ var OCdialogs = { }); content += '</table>'; - 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 = '<div id="' + dialog_name + '" title="' + escapeHTML(title) + '">' + content + '</div>'; + 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 = '<div id="'+c_name+'" title="'+title+'"><select id="dirtree"><option value="0">'+OC.currentUser+'</option></select><div id="filelist"></div><div class="filepicker_loader"><img src="'+OC.filePath('gallery','img','loading.gif')+'"></div></div>'; - 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 = '<button id="dirup">↑</button><select id="dirtree"></select><div id="filelist"></div>'; + var dialog_loader = '<div class="filepicker_loader"><img src="' + OC.filePath('gallery','img','loading.gif') + '"></div>'; + var dialog_div = '<div id="' + dialog_name + '" title="' + escapeHTML(title) + '">' + dialog_content + dialog_loader + '</div>'; + 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 = '<div id="'+c_name+'" title="'+title+'">'+content+'</div>'; - 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 = '<div id="' + dialog_name + '" title="' + escapeHTML(title) + '">' + content + '</div>'; + 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 = '<div data-entryname="*ENTRYNAME*" data-dcid="'+dialog_content_id+'" data="*ENTRYTYPE*"><img src="*MIMETYPEICON*" style="margin-right:1em;"><span class="filename">*NAME*</span><div style="float:right;margin-right:1em;">*LASTMODDATE*</div></div>'; - 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 = '<img src="*MIMETYPEICON*" style="margin: 2px 1em 0 4px;"><span class="filename">*NAME*</span><div style="float:right;margin-right:1em;">*LASTMODDATE*</div>'; + var template = '<div data-entryname="*ENTRYNAME*" data-dcid="' + escapeHTML(dialog_content_id) + '" data="*ENTRYTYPE*">*CONTENT*</div>'; + 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 = '<option value="*COUNT*">*NAME*</option>'; + var paths = '<option value="0">' + escapeHTML($(dialog_id).data('path')) + '</option>'; + $.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('<option selected="selected" value="'+newval+'">'+name+'</option>'); - $(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 = '<p>Bake, uncovered, until the {greasystuff} is melted and the {pasta} is heated through, about {min} minutes.</p>' + * $(htmlStr).octemplate({greasystuff: 'cheese', pasta: 'macaroni', min: 10}); + * + * var htmlStr = '<p>Welcome back {user}</p>'; + * $(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: + * + * <script id="contactListItemTemplate" type="text/template"> + * <tr class="contact" data-id="{id}"> + * <td class="name"> + * <input type="checkbox" name="id" value="{id}" /><span class="nametext">{name}</span> + * </td> + * <td class="email"> + * <a href="mailto:{email}">{email}</a> + * </td> + * <td class="phone">{phone}</td> + * </tr> + * </script> + * + * 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 $('<i></i>').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 @@ +<?php $TRANSLATIONS = array( +"User %s shared a file with you" => "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Methodd y diweddariad. Adroddwch y mater hwn i <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">gymuned ownCloud</a>.", +"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 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">ddogfennaeth</a>.", +"Create an <strong>admin account</strong>" => "Crewch <strong>gyfrif gweinyddol</strong>", +"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 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Uuendus ebaõnnestus. Palun teavita probleemidest <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud kogukonda</a>.", +"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 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Serveri korrektseks seadistuseks palun tutvu <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentatsiooniga</a>.", "Create an <strong>admin account</strong>" => "Loo <strong>admini konto</strong>", "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 @@ +<?php $TRANSLATIONS = array( +"Settings" => "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 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "%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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Pembaruan gagal. Silakan laporkan masalah ini ke <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitas ownCloud</a>.", +"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 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Untuk informasi lebih lanjut tentang pengaturan server yang benar, silakan lihat <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentasi</a>.", "Create an <strong>admin account</strong>" => "Buat sebuah <strong>akun admin</strong>", "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 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "მáƒáƒ›áƒ®áƒ›áƒáƒ ებელმრ%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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "გáƒáƒœáƒáƒ®áƒšáƒ”ბრვერგáƒáƒœáƒ®áƒáƒ ციელდáƒ. გთხáƒáƒ•áƒ— შეგვáƒáƒ¢áƒ§áƒáƒ‘ინáƒáƒ— áƒáƒ› პრáƒáƒ‘ლემის შესáƒáƒ®áƒ”ბ áƒáƒ¥: <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>.", +"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 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "სერვერის კáƒáƒ ექტულáƒáƒ“ დáƒáƒ¡áƒáƒ™áƒáƒœáƒ¤áƒ˜áƒ’ურირებლáƒáƒ“, ნáƒáƒ®áƒ”თ შემდეგი <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ</a>.", "Create an <strong>admin account</strong>" => "შექმენი <strong>áƒáƒ“მინ ექáƒáƒ£áƒœáƒ¢áƒ˜</strong>", -"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 @@ +<?php $TRANSLATIONS = array( +"User %s shared a file with you" => "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitetin ownCloud</a>.", +"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 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentacionin</a>.", +"Create an <strong>admin account</strong>" => "Krijo një <strong>llogari administruesi</strong>", +"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 @@ <?php $TRANSLATIONS = array( +"User %s shared a file with you" => "用户 %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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "å‡çº§å¤±è´¥ã€‚请å‘<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud社区</a>报告æ¤é—®é¢˜ã€‚", +"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 <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">documentation</a>." => "è¦èŽ·å¾—大概如何é…置您的æœåŠ¡å™¨çš„相关信æ¯ï¼Œå‚è§<a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">说明文档</a>。", "Create an <strong>admin account</strong>" => "建立一个 <strong>管ç†å¸æˆ·</strong>", "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 <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." => "å‡ç´šå¤±æ•—,請將æ¤å•é¡Œå›žå ± <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud 社群</a>。", "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 @@ <div id="datadirContent"> <label for="directory"><?php p($l->t( 'Data folder' )); ?></label> <input type="text" name="directory" id="directory" + placeholder="<?php p(OC::$SERVERROOT."/data"); ?>" value="<?php p(OC_Helper::init_var('directory', $_['directory'])); ?>" /> </div> </fieldset> @@ -138,9 +139,11 @@ value="<?php p(OC_Helper::init_var('dbuser')); ?>" autocomplete="off" /> </p> <p class="infield groupmiddle"> - <label for="dbpass" class="infield"><?php p($l->t( 'Database password' )); ?></label> - <input type="password" name="dbpass" id="dbpass" placeholder="" + <input type="password" name="dbpass" id="dbpass" placeholder="" data-typetoggle="#dbpassword" value="<?php p(OC_Helper::init_var('dbpass')); ?>" /> + <label for="dbpass" class="infield"><?php p($l->t( 'Database password' )); ?></label> + <input type="checkbox" id="dbpassword" name="dbpassword" /> + <label for="dbpassword"></label> </p> <p class="infield groupmiddle"> <label for="dbname" class="infield"><?php p($l->t( 'Database name' )); ?></label> 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 @@ <a href="<?php print_unescaped($entry['href']); ?>" title="" <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>> <img class="icon svg" src="<?php print_unescaped($entry['icon']); ?>"/> - <?php p($entry['name']); ?> + <span> + <?php p($entry['name']); ?> + </span> </a> </li> <?php endforeach; ?> 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 @@ <?php if (!empty($_['redirect_url'])) { print_unescaped('<input type="hidden" name="redirect_url" value="' . OC_Util::sanitizeHTML($_['redirect_url']) . '" />'); } ?> - <ul> - <?php if (isset($_['invalidcookie']) && ($_['invalidcookie'])): ?> - <li class="errors"> - <?php p($l->t('Automatic logon rejected!')); ?><br> - <small><?php p($l->t('If you did not change your password recently, your account may be compromised!')); ?></small> - <br> - <small><?php p($l->t('Please change your password to secure your account again.')); ?></small> - </li> - <?php endif; ?> - <?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> - <a href="<?php print_unescaped(OC_Helper::linkToRoute('core_lostpassword_index')) ?>"> - <li class="errors"> - <?php p($l->t('Lost your password?')); ?> - </li> - </a> - <?php endif; ?> - </ul> + <?php if (isset($_['invalidcookie']) && ($_['invalidcookie'])): ?> + <div class="warning"> + <?php p($l->t('Automatic logon rejected!')); ?><br> + <small><?php p($l->t('If you did not change your password recently, your account may be compromised!')); ?></small> + <br> + <small><?php p($l->t('Please change your password to secure your account again.')); ?></small> + </div> + <?php endif; ?> <p class="infield grouptop"> <input type="text" name="user" id="user" placeholder="" value="<?php p($_['username']); ?>"<?php p($_['user_autofocus'] ? ' autofocus' : ''); ?> @@ -37,6 +28,13 @@ <input type="checkbox" id="show" name="show" /> <label for="show"></label> </p> + + <?php if (isset($_['invalidpassword']) && ($_['invalidpassword'])): ?> + <a class="warning" href="<?php print_unescaped(OC_Helper::linkToRoute('core_lostpassword_index')) ?>"> + <?php p($l->t('Lost your password?')); ?> + </a> + <?php endif; ?> + <input type="checkbox" name="remember_login" value="1" id="remember_login"/><label for="remember_login"><?php p($l->t('remember')); ?></label> <input type="hidden" name="timezone-offset" id="timezone-offset"/> 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 @@ <index> <name>property_index</name> - <field> - <name>propertyname</name> - <sorting>ascending</sorting> - </field> - <field> - <name>propertypath</name> - <sorting>ascending</sorting> - </field> <field> <name>userid</name> <sorting>ascending</sorting> @@ -918,7 +910,6 @@ <name>displayname</name> <type>text</type> <default></default> - <notnull>true</notnull> <length>64</length> </field> 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/af_ZA/user_ldap.po b/l10n/af_ZA/user_ldap.po index 982e4b399ca20a313537b497e87601c044010a5c..c08ce22f8b6328ccd95174fe3922fd7071886e68 100644 --- a/l10n/af_ZA/user_ldap.po +++ b/l10n/af_ZA/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <tarek.taha@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <houfa2005@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <shemada@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <shiningmoon25@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <tarek.taha@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <houfa2005@yahoo.com>, 2013. +# Matalqah <houfa2005@yahoo.com>, 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 <houfa2005@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <houfa2005@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ar/user_ldap.po b/l10n/ar/user_ldap.po index e9c5205c1558b1047a223e6bbd5b2bf7d1e153dc..71c1e62994bb5f8ce93b2b9e04ba4d617e156b3a 100644 --- a/l10n/ar/user_ldap.po +++ b/l10n/ar/user_ldap.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-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:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <tarek.taha@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/be/user_ldap.po b/l10n/be/user_ldap.po index c807e563d2863707e585c93ed0c4157762bd51ea..9ff31d5c454730263f7af624eafe6b7f0aec214f 100644 --- a/l10n/be/user_ldap.po +++ b/l10n/be/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <ilivanov@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <neohidra@gmail.com>, 2013. -# Stefan Ilivanov <ilivanov@gmail.com>, 2013. +# Kiril <neohidra@gmail.com>, 2013 +# Stefan Ilivanov <ilivanov@gmail.com>, 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 <neohidra@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bg_BG/user_ldap.po b/l10n/bg_BG/user_ldap.po index 43ed372ee085a76bda2fe35e74711485eda09585..8ec4f3ffdbe07f873cb0233c96c208caa54b592d 100644 --- a/l10n/bg_BG/user_ldap.po +++ b/l10n/bg_BG/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <paul_shubhra@yahoo.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/bn_BD/user_ldap.po b/l10n/bn_BD/user_ldap.po index 9619227c80a8122be08d73cb3e22f2cb48b817e5..34a3a9d16c57e5db077a15754543546ee0c3e6ad 100644 --- a/l10n/bn_BD/user_ldap.po +++ b/l10n/bn_BD/user_ldap.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:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <rcalvoi@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>AvÃs:</b> \"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 "" "<b>Warning:</b> 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 <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <rcalvoi@yahoo.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <rcalvoi@yahoo.com>, 2013. -# <rcalvoi@yahoo.com>, 2012-2013. +# rogerc <rcalvoi@yahoo.com>, 2013 +# rogerc <rcalvoi@yahoo.com>, 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 <rcalvoi@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <rcalvoi@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ca/user_ldap.po b/l10n/ca/user_ldap.po index e04cdeb3dd7643f37849a45261fffc61792137d4..bf2d7adf14144ba1b1429f9af8749b49370b8244 100644 --- a/l10n/ca/user_ldap.po +++ b/l10n/ca/user_ldap.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 <rcalvoi@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <rcalvoi@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <krejca85@gmail.com>, 2011. -# Martin <fireball@atlas.cz>, 2011-2012. -# Michal HruÅ¡ecký <Michal@hrusecky.net>, 2012. -# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013. +# Jan Krejci <krejca85@gmail.com>, 2011 +# Martin <fireball@atlas.cz>, 2011-2012 +# Michal HruÅ¡ecký <Michal@hrusecky.net>, 2012 +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 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 <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 11:21+0000\n" +"Last-Translator: cernydav <info@senman.cz>\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 <tomas.chvatal@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>VarovánÃ:</b> 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 "" "<b>Warning:</b> 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 <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <fireball@atlas.cz>, 2012. -# Tomáš Chvátal <tomas.chvatal@gmail.com>, 2012-2013. +# Martin <fireball@atlas.cz>, 2012 +# Tomáš Chvátal <tomas.chvatal@gmail.com>, 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 <tomas.chvatal@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <tomas.chvatal@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/cs_CZ/user_ldap.po b/l10n/cs_CZ/user_ldap.po index 659bcb2da7cad2dcda5aa4cc6d5bb3d2722bd76c..228f59ec1c7c347a29fd1ed4c30c2d477d146c5b 100644 --- a/l10n/cs_CZ/user_ldap.po +++ b/l10n/cs_CZ/user_ldap.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: Tomáš Chvátal <tomas.chvatal@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <tomas.chvatal@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owen.llywelyn@gmail.com>, 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 <owen.llywelyn@gmail.com>\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 <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +msgstr "Methodd y diweddariad. Adroddwch y mater hwn i <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">gymuned ownCloud</a>." + +#: 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 <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">ddogfennaeth</a>." + +#: templates/installation.php:44 +msgid "Create an <strong>admin account</strong>" +msgstr "Crewch <strong>gyfrif gweinyddol</strong>" + +#: 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 <owen.llywelyn@gmail.com>, 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 <owen.llywelyn@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" +"<b>Warning:</b> \"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 "" +"<b>Warning:</b> 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 <owen.llywelyn@gmail.com>, 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 <owen.llywelyn@gmail.com>\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 <owen.llywelyn@gmail.com>, 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 <owen.llywelyn@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owen.llywelyn@gmail.com>, 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 <owen.llywelyn@gmail.com>\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 <a href='%s'>installation guides</a>." +msgstr "Gwiriwch y <a href='%s'>canllawiau gosod</a> 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 <a href=\"%s\">more information</a>" +msgstr "%s ar gael. <a href=\"%s\">Mwy o wybodaeth</a>" + +#: 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." +msgstr "Gwiriwch y <a href='%s'>canllawiau gosod</a> 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 <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +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 "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +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 <strong>%s</strong> of the available <strong>%s</strong>" +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 <owncloud-bot@tmit.eu>\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 "" +"<b>Warning:</b> 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 "" +"<b>Warning:</b> 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 <owncloud-bot@tmit.eu>\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 <transifex@bawl.dk>, 2013. # <cronner@gmail.com>, 2012. # Frederik Lassen <frederiklassen@gmail.com>, 2013. # <mikkelbjerglarsen@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <cronner@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <frederiklassen@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <transifex@bawl.dk>, 2013. # <cronner@gmail.com>, 2012. # Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012. # Ole Holm Frandsen <froksen@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b> Advarsel: </ b> \"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 "" "<b>Warning:</b> 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 <morten@writtenandread.net>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <transifex@bawl.dk>, 2013. # Frederik Lassen <frederiklassen@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <cronner@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <cronner@gmail.com>, 2012. -# Frederik Lassen <frederiklassen@gmail.com>, 2013. -# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012-2013. -# <osos@openeyes.dk>, 2012. -# Thomas <cronner@gmail.com>, 2013. +# cronner <cronner@gmail.com>, 2012 +# Frederik Lassen <frederiklassen@gmail.com>, 2013 +# Morten Juhl-Johansen Zölde-Fejér <morten@writtenandread.net>, 2012-2013 +# osos <osos@openeyes.dk>, 2012 +# cronner <cronner@gmail.com>, 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 <cronner@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <morten@writtenandread.net>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/da/user_ldap.po b/l10n/da/user_ldap.po index 6ac95f9ce5c201e73c25db227b1925e107db0c01..98e5a1e4f0567d2ed13f1cc40226930e32657587 100644 --- a/l10n/da/user_ldap.po +++ b/l10n/da/user_ldap.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: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 <owncloud-bot@tmit.eu>\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 <morten@writtenandread.net>\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 <owncloud-bot@tmit.eu>\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: -# <admin@s-goecker.de>, 2011-2012. -# <alex.hotz@gmail.com>, 2011. -# <blobbyjj@ymail.com>, 2012. -# <georg.stefan.germany@googlemail.com>, 2011. -# I Robot <owncloud-bot@tmit.eu>, 2012-2013. -# I Robot <thomas.mueller@tmit.eu>, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# <mail@felixmoeller.de>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# <markus.thiel@desico.de>, 2012. -# <m.fresel@sysangels.com>, 2012. -# <niko@nik-o-mat.de>, 2012. -# Phi Lieb <>, 2012. -# Susi <>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# Tristan <blobbyjj@ymail.com>, 2013. +# goeck <admin@s-goecker.de>, 2011-2012 +# infinity8 <alex.hotz@gmail.com>, 2011 +# Mirodin <blobbyjj@ymail.com>, 2012 +# <georg.stefan.germany@googlemail.com>, 2011 +# I Robot <owncloud-bot@tmit.eu>, 2012-2013 +# I Robot <thomas.mueller@tmit.eu>, 2012 +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011 +# Lukas Reschke <lukas@statuscode.ch>, 2013 +# fmms <mail@felixmoeller.de>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# thiel <markus.thiel@desico.de>, 2012 +# mike.f <m.fresel@sysangels.com>, 2012 +# JamFX <niko@nik-o-mat.de>, 2012 +# Phi Lieb <>, 2012 +# Susi <>, 2012 +# <thomas.mueller@tmit.eu>, 2012 +# <transifex.3.mensaje@spamgourmet.com>, 2012 +# Mirodin <blobbyjj@ymail.com>, 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 <blobbyjj@ymail.com>\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 <lukas@statuscode.ch>\n" "Language-Team: German <translations@owncloud.org>\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: -# <admin@s-goecker.de>, 2012. -# <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012-2013. -# I Robot <thomas.mueller@tmit.eu>, 2012. -# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# Jan-Christoph Borchardt <jan@unhosted.org>, 2011. -# <lukas@statuscode.ch>, 2012. -# <mail@felixmoeller.de>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# <markus.thiel@desico.de>, 2013. -# Michael Krell <m4dmike.mni@gmail.com>, 2012. -# <nelsonfritsch@gmail.com>, 2012. -# <niko@nik-o-mat.de>, 2012. -# Phi Lieb <>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# Thomas Müller <>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# <transifex.com@mail.simonzoellner.de>, 2013. -# <uu.kabum@gmail.com>, 2013. -# <wachhund@wachhund.to>, 2013. +# goeck <admin@s-goecker.de>, 2012 +# Mirodin <blobbyjj@ymail.com>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2012-2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012 +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011 +# Jan-Christoph Borchardt <jan@unhosted.org>, 2011 +# Lukas Reschke <lukas@statuscode.ch>, 2012 +# fmms <mail@felixmoeller.de>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# thiel <markus.thiel@desico.de>, 2013 +# Michael Krell <m4dmike.mni@gmail.com>, 2012 +# piccobello <nelsonfritsch@gmail.com>, 2012 +# JamFX <niko@nik-o-mat.de>, 2012 +# Phi Lieb <>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Thomas Müller <>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# Linutux <transifex.com@mail.simonzoellner.de>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 +# Wachhund <wachhund@wachhund.to>, 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 <susefan93@gmx.de>\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:21+0000\n" +"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\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 <susefan93@gmx.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 <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\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 <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Warnung:</b> \"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 "" "<b>Warning:</b> 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 <blobbyjj@ymail.com>\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 <owncloud-bot@tmit.eu>\n" +"Language-Team: German <translations@owncloud.org>\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 <owncloud-bot@tmit.eu>, 2013. -# Marcel Kühlhorn <susefan93@gmx.de>, 2013. -# Tristan <blobbyjj@ymail.com>, 2013. -# <wachhund@wachhund.to>, 2013. +# I Robot <owncloud-bot@tmit.eu>, 2013 +# Marcel Kühlhorn <susefan93@gmx.de>, 2013 +# Mirodin <blobbyjj@ymail.com>, 2013 +# Wachhund <wachhund@wachhund.to>, 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 <susefan93@gmx.de>\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 07:26+0000\n" +"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\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 <blobbyjj@ymail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\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: -# <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2013. -# I Robot <thomas.mueller@tmit.eu>, 2012. -# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# Phi Lieb <>, 2012. -# <stefan.niedermann@googlemail.com>, 2013. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# Tristan <blobbyjj@ymail.com>, 2013. +# Mirodin <blobbyjj@ymail.com>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann <stefan.niedermann@googlemail.com>, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# Mirodin <blobbyjj@ymail.com>, 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 <blobbyjj@ymail.com>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\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 <a href='%s'>installation guides</a>." -msgstr "Bitte prüfe die <a href='%s'>Instalationsanleitungen</a>." +msgstr "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>." #: 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: -# <admin@s-goecker.de>, 2011, 2012. -# <blobbyjj@ymail.com>, 2012. -# <icewind1991@gmail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012-2013. -# I Robot <thomas.mueller@tmit.eu>, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# Jan T <jan-temesinko@web.de>, 2012. -# <lukas@statuscode.ch>, 2012. -# <mail@felixmoeller.de>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# <markus.thiel@desico.de>, 2012. -# <mibunrui@gmx.de>, 2012. -# <nelsonfritsch@gmail.com>, 2012. -# <niko@nik-o-mat.de>, 2012. -# Phi Lieb <>, 2012. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# Tristan <blobbyjj@ymail.com>, 2013. -# <uu.kabum@gmail.com>, 2013. -# <wachhund@wachhund.to>, 2013. +# goeck <admin@s-goecker.de>, 2011, 2012 +# Mirodin <blobbyjj@ymail.com>, 2012 +# Robin Appelman <icewind1991@gmail.com>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2012-2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011 +# Jan T <jan-temesinko@web.de>, 2012 +# Lukas Reschke <lukas@statuscode.ch>, 2012 +# fmms <mail@felixmoeller.de>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# thiel <markus.thiel@desico.de>, 2012 +# AndryXY <mibunrui@gmx.de>, 2012 +# piccobello <nelsonfritsch@gmail.com>, 2012 +# JamFX <niko@nik-o-mat.de>, 2012 +# Phi Lieb <>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# Mirodin <blobbyjj@ymail.com>, 2013 +# kabum <uu.kabum@gmail.com>, 2013 +# Wachhund <wachhund@wachhund.to>, 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 <blobbyjj@ymail.com>\n" "Language-Team: German <translations@owncloud.org>\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 <a href='%s'>installation guides</a>." -msgstr "Bitte prüfen Sie die <a href='%s'>Instalationsanleitungen</a>." +msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de/user_ldap.po b/l10n/de/user_ldap.po index 878c9aa1a8550334625169de60008d3f076fc357..c76b328283a053ac046bd4fc74b3303c832c12ce 100644 --- a/l10n/de/user_ldap.po +++ b/l10n/de/user_ldap.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:32+0000\n" -"Last-Translator: Mirodin <blobbyjj@ymail.com>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\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 <blobbyjj@ymail.com>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: German <translations@owncloud.org>\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: -# <admin@s-goecker.de>, 2011-2012. -# <alex.hotz@gmail.com>, 2011. -# <a.tangemann@web.de>, 2012. -# <blobbyjj@ymail.com>, 2012. -# <deh3nne@deviantdev.com>, 2012. -# <georg.stefan.germany@googlemail.com>, 2011. -# I Robot <owncloud-bot@tmit.eu>, 2013. -# I Robot <thomas.mueller@tmit.eu>, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# <mail@felixmoeller.de>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# <m.fresel@sysangels.com>, 2012. -# <niko@nik-o-mat.de>, 2012. -# Phi Lieb <>, 2012. -# <stefan.niedermann@googlemail.com>, 2013. -# <Steve_Reichert@gmx.de>, 2013. -# Susi <>, 2013. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex-2.7.mensaje@spamgourmet.com>, 2013. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# Tristan <blobbyjj@ymail.com>, 2013. +# goeck <admin@s-goecker.de>, 2011-2012 +# infinity8 <alex.hotz@gmail.com>, 2011 +# a.tangemann <a.tangemann@web.de>, 2012 +# Mirodin <blobbyjj@ymail.com>, 2012 +# deh3nne <deh3nne@deviantdev.com>, 2012 +# george <social@georgehrke.com>, 2011 +# I Robot <owncloud-bot@tmit.eu>, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011 +# Lukas Reschke <lukas@statuscode.ch>, 2013 +# fmms <mail@felixmoeller.de>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# mike.f <m.fresel@sysangels.com>, 2012 +# JamFX <niko@nik-o-mat.de>, 2012 +# Phi Lieb <>, 2012 +# stefanniedermann <stefan.niedermann@googlemail.com>, 2013 +# Valermos <Steve_Reichert@gmx.de>, 2013 +# Susi <>, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# Mirodin <blobbyjj@ymail.com>, 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 <blobbyjj@ymail.com>\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 <lukas@statuscode.ch>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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: -# <admin@s-goecker.de>, 2012. -# Andreas Tangemann <a.tangemann@web.de>, 2013. -# <a.tangemann@web.de>, 2012-2013. -# <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012-2013. -# I Robot <thomas.mueller@tmit.eu>, 2012. -# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# Jan-Christoph Borchardt <jan@unhosted.org>, 2011. -# <lukas@statuscode.ch>, 2012. -# <mail@felixmoeller.de>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# <markus.thiel@desico.de>, 2013. -# Michael Krell <m4dmike.mni@gmail.com>, 2012. -# <nelsonfritsch@gmail.com>, 2012. -# <niko@nik-o-mat.de>, 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel <quick_wango@code-infection.de>, 2013. -# <robert.neumann01@gmail.com>, 2013. -# <stefan.niedermann@googlemail.com>, 2013. -# <Steve_Reichert@gmx.de>, 2013. -# Susi <>, 2013. -# <thomas.mueller@tmit.eu>, 2012. -# Thomas Müller <>, 2012. -# <transifex-2.7.mensaje@spamgourmet.com>, 2013. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# Tristan <blobbyjj@ymail.com>, 2013. +# goeck <admin@s-goecker.de>, 2012 +# a.tangemann <a.tangemann@web.de>, 2013 +# a.tangemann <a.tangemann@web.de>, 2012-2013 +# Mirodin <blobbyjj@ymail.com>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2012-2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012 +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011 +# Jan-Christoph Borchardt <jan@unhosted.org>, 2011 +# Lukas Reschke <lukas@statuscode.ch>, 2012 +# fmms <mail@felixmoeller.de>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# thiel <markus.thiel@desico.de>, 2013 +# Michael Krell <m4dmike.mni@gmail.com>, 2012 +# piccobello <nelsonfritsch@gmail.com>, 2012 +# JamFX <niko@nik-o-mat.de>, 2012 +# Phi Lieb <>, 2012 +# quick_wango <quick_wango@code-infection.de>, 2013 +# robN <robert.neumann01@gmail.com>, 2013 +# stefanniedermann <stefan.niedermann@googlemail.com>, 2013 +# Valermos <Steve_Reichert@gmx.de>, 2013 +# Susi <>, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Thomas Müller <>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# Mirodin <blobbyjj@ymail.com>, 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 <transifex-2.7.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2013-04-18 02:03+0200\n" +"PO-Revision-Date: 2013-04-17 08:22+0000\n" +"Last-Translator: Mirodin <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 <susefan93@gmx.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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 <a.tangemann@web.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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Warnung:</b> \"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 "" "<b>Warning:</b> 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 <blobbyjj@ymail.com>\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 <owncloud-bot@tmit.eu>\n" +"Language-Team: German (Germany) <translations@owncloud.org>\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 <susefan93@gmx.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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 <transifex-2.7.mensaje@spamgourmet.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 <a.tangemann@web.de>, 2013. -# <a.tangemann@web.de>, 2012. -# <blobbyjj@ymail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2013. -# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# Phi Lieb <>, 2012. -# <stefan.niedermann@googlemail.com>, 2013. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# Tristan <blobbyjj@ymail.com>, 2013. +# a.tangemann <a.tangemann@web.de>, 2013 +# a.tangemann <a.tangemann@web.de>, 2012 +# Mirodin <blobbyjj@ymail.com>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2013 +# Jan-Christoph Borchardt <hey@jancborchardt.net>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# Phi Lieb <>, 2012 +# stefanniedermann <stefan.niedermann@googlemail.com>, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# Mirodin <blobbyjj@ymail.com>, 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 <blobbyjj@ymail.com>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 <a href='%s'>installation guides</a>." -msgstr "Bitte prüfen Sie die <a href='%s'>Instalationsanleitungen</a>." +msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." #: 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: -# <admin@s-goecker.de>, 2011-2012. -# Andreas Tangemann <a.tangemann@web.de>, 2013. -# <blobbyjj@ymail.com>, 2012. -# <icewind1991@gmail.com>, 2012. -# I Robot <owncloud-bot@tmit.eu>, 2012-2013. -# I Robot <thomas.mueller@tmit.eu>, 2012. -# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011. -# Jan T <jan-temesinko@web.de>, 2012. -# Lukas Reschke <lukas@statuscode.ch>, 2013. -# <lukas@statuscode.ch>, 2012. -# <mail@felixmoeller.de>, 2012. -# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013. -# <nelsonfritsch@gmail.com>, 2012. -# <niko@nik-o-mat.de>, 2012. -# Phi Lieb <>, 2012. -# Phillip Schichtel <quick_wango@code-infection.de>, 2013. -# <robert.neumann01@gmail.com>, 2013. -# <seeed@freenet.de>, 2012. -# <stefan.niedermann@googlemail.com>, 2013. -# Susi <>, 2013. -# <thomas.mueller@tmit.eu>, 2012. -# <transifex-2.7.mensaje@spamgourmet.com>, 2013. -# <transifex-2.7.mensaje@spamgourmet.com>, 2012. -# <transifex.3.mensaje@spamgourmet.com>, 2012. -# Tristan <blobbyjj@ymail.com>, 2013. +# goeck <admin@s-goecker.de>, 2011-2012 +# a.tangemann <a.tangemann@web.de>, 2013 +# Mirodin <blobbyjj@ymail.com>, 2012 +# Robin Appelman <icewind1991@gmail.com>, 2012 +# I Robot <owncloud-bot@tmit.eu>, 2012-2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# Jan-Christoph Borchardt <JanCBorchardt@fsfe.org>, 2011 +# Jan T <jan-temesinko@web.de>, 2012 +# Lukas Reschke <lukas@statuscode.ch>, 2013 +# Lukas Reschke <lukas@statuscode.ch>, 2012 +# fmms <mail@felixmoeller.de>, 2012 +# Marcel Kühlhorn <susefan93@gmx.de>, 2012-2013 +# piccobello <nelsonfritsch@gmail.com>, 2012 +# JamFX <niko@nik-o-mat.de>, 2012 +# Phi Lieb <>, 2012 +# quick_wango <quick_wango@code-infection.de>, 2013 +# robN <robert.neumann01@gmail.com>, 2013 +# seeed <seeed@freenet.de>, 2012 +# stefanniedermann <stefan.niedermann@googlemail.com>, 2013 +# Susi <>, 2013 +# I Robot <owncloud-bot@tmit.eu>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2013 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# traductor <transifex-2.7.mensaje@spamgourmet.com>, 2012 +# Mirodin <blobbyjj@ymail.com>, 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 <blobbyjj@ymail.com>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 <a href='%s'>installation guides</a>." -msgstr "Bitte prüfen Sie die <a href='%s'>Instalationsanleitungen</a>." +msgstr "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/de_DE/user_ldap.po b/l10n/de_DE/user_ldap.po index 0c6b3cde9c312560cf45c2cf76a32d2f895bb1da..d35dff4931446642428144b543a6aa9408757e73 100644 --- a/l10n/de_DE/user_ldap.po +++ b/l10n/de_DE/user_ldap.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:32+0000\n" -"Last-Translator: traductor <transifex-2.7.mensaje@spamgourmet.com>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 <transifex-2.7.mensaje@spamgourmet.com>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: German (Germany) <translations@owncloud.org>\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 @@ # <petros.kyladitis@gmail.com>, 2011. # Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2012. # <vagelis@cyberdest.com>, 2013. +# Wasilis Mandratzis <m.wasilis@yahoo.de>, 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 <owncloud-bot@tmit.eu>\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 <iosifidis@opensuse.org>, 2012. # Konstantinos Tzanidis <tzanidis@gmail.com>, 2012. # Marios Bekatoros <>, 2012. -# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2012. +# Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2013. +# Wasilis Mandratzis <m.wasilis@yahoo.de>, 2013. # Γιάννης Ανθυμίδης <yannanth@gmail.com>, 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ι <axilleas@archlinux.gr>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <iosifidis@opensuse.org>, 2012. # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012. # Petros Kyladitis <petros.kyladitis@gmail.com>, 2012. +# Wasilis Mandratzis <m.wasilis@yahoo.de>, 2013. # Γιάννης <yannanth@gmail.com>, 2012. # Γιάννης Ανθυμίδης <yannanth@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Î Ïοσοχή:</b> Ο \"smbclient\" δεν εγκαταστάθηκε. Δεν είναι δυνατή η Ï€ÏοσάÏτηση CIFS/SMB. ΠαÏακαλώ ενημεÏώστε τον διαχειÏιστή συστήματος να το εγκαταστήσει." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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. <monopatis@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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. <monopatis@gmail.com>, 2012-2013. # Efstathios Iosifidis <diamond_gr@freemail.gr>, 2012. # Nisok Kosin <nikos.efthimiou@gmail.com>, 2012. +# Wasilis Mandratzis <m.wasilis@yahoo.de>, 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 <owncloud-bot@tmit.eu>\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. <monopatis@gmail.com>, 2013. -# Efstathios Iosifidis <iefstathios@gmail.com>, 2013. -# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012. -# <vagelis@cyberdest.com>, 2013. +# Dimitris M. <monopatis@gmail.com>, 2013 +# Efstathios Iosifidis <iefstathios@gmail.com>, 2013 +# Efstathios Iosifidis <iosifidis@opensuse.org>, 2012 +# xneo1 <vagelis@cyberdest.com>, 2013 +# Wasilis <m.wasilis@yahoo.de>, 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 <owncloud-bot@tmit.eu>\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 @@ # <petros.kyladitis@gmail.com>, 2011. # Petros Kyladitis <petros.kyladitis@gmail.com>, 2011-2012. # <vagelis@cyberdest.com>, 2013. +# Wasilis Mandratzis <m.wasilis@yahoo.de>, 2013. # Γιάννης Ανθυμίδης <yannanth@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 "ΕλÎγξτε ξανά τις <a href='%s'>οδηγίες εγκατά #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/el/user_ldap.po b/l10n/el/user_ldap.po index a2995398ea96ae2d93f506005b6f215372a1aceb..0685878dc0060c7349fd2415cbfd486f2d4d49b7 100644 --- a/l10n/el/user_ldap.po +++ b/l10n/el/user_ldap.po @@ -9,12 +9,13 @@ # Efstathios Iosifidis <iefstathios@gmail.com>, 2013. # Konstantinos Tzanidis <tzanidis@gmail.com>, 2012. # Marios Bekatoros <>, 2012. +# Wasilis Mandratzis <m.wasilis@yahoo.de>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <mstreet@kde.org.ar>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: +# <kristjan.schmidt@googlemail.com>, 2013. # Mariano <mstreet@kde.org.ar>, 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 <owncloud-bot@tmit.eu>\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 <mstreet@kde.org.ar>, 2012. +# Mariano <mstreet@kde.org.ar>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eo/user_ldap.po b/l10n/eo/user_ldap.po index 05c28a8824aef29e66feac8b8bc70aae18a6f492..ae0cd9b839265e89b2241d73e2c9e825feb96b4d 100644 --- a/l10n/eo/user_ldap.po +++ b/l10n/eo/user_ldap.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 <owncloud-bot@tmit.eu>\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 <mstreet@kde.org.ar>\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 <owncloud-bot@tmit.eu>\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 <felix.liberio@gmail.com>, 2013. -# <javierkaiser@gmail.com>, 2012. -# Javier Llorente <javier@opensuse.org>, 2012. -# <juanma@kde.org.ar>, 2013. -# <juanma@kde.org.ar>, 2011-2013. -# <malmirk@gmail.com>, 2012. -# oSiNaReF <>, 2012. -# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012. -# <rodrigo.calvo@gmail.com>, 2012. -# <rom1dep@gmail.com>, 2011. -# Rubén Trujillo <rubentrf@gmail.com>, 2012. -# <sergioballesterossolanas@gmail.com>, 2011-2012. -# <sergio@entrecables.com>, 2012. -# Vladimir Martinez Sierra <vladimirmartinezsierra@gmail.com>, 2013. +# felix.liberio <felix.liberio@gmail.com>, 2013 +# Javierkaiser <javierkaiser@gmail.com>, 2012 +# Javier Llorente <javier@opensuse.org>, 2012 +# juanman <juanma@kde.org.ar>, 2013 +# juanman <juanma@kde.org.ar>, 2011-2013 +# malmirk <malmirk@gmail.com>, 2012 +# oSiNaReF <>, 2012 +# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012 +# rodrigo.calvo <rodrigo.calvo@gmail.com>, 2012 +# Romain DEP. <rom1dep@gmail.com>, 2011 +# Rubén Trujillo <rubentrf@gmail.com>, 2012 +# xsergiolpx <sergioballesterossolanas@gmail.com>, 2011-2012 +# scambra <sergio@entrecables.com>, 2012 +# msvladimir <vladimirmartinezsierra@gmail.com>, 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 <juanma@kde.org.ar>\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 <owncloud-bot@tmit.eu>\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 <agustin.ferrario@hotmail.com.ar>, 2013. +# <davidlopez.david@gmail.com>, 2013. # <devianpctek@gmail.com>, 2012. # Javier Llorente <javier@opensuse.org>, 2012. # <juanma@kde.org.ar>, 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 <sergioballesterossolanas@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <djoser.horus@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Advertencia:</b> 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 "" "<b>Warning:</b> 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 <rubentrf@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <sergioballesterossolanas@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <vicentevrl@hotmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <agustin.ferrario@hotmail.com.ar>, 2013. -# <juanma@kde.org.ar>, 2013. -# <juanma@kde.org.ar>, 2012. -# Marcos <djoser.horus@gmail.com>, 2013. -# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012. -# Ricardo A. Hermosilla Carrillo <ra.hermosillac@gmail.com>, 2013. -# Rubén Trujillo <rubentrf@gmail.com>, 2012. -# <sergio@entrecables.com>, 2012. +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013 +# juanman <juanma@kde.org.ar>, 2013 +# juanman <juanma@kde.org.ar>, 2012 +# Marcos <djoser.horus@gmail.com>, 2013 +# Raul Fernandez Garcia <raulfg3@gmail.com>, 2012 +# Ricardo Hermosilla <ra.hermosillac@gmail.com>, 2013 +# Rubén Trujillo <rubentrf@gmail.com>, 2012 +# scambra <sergio@entrecables.com>, 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 <djoser.horus@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <juanma@kde.org.ar>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 998243e1cf7318a2eafb9fa7247aa2ba526c40dd..3043a993129dabb5d914f58ab2a90e980ba5f155 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.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:32+0000\n" -"Last-Translator: Raul Fernandez Garcia <raulfg3@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <agustin.ferrario@hotmail.com.ar>\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 <owncloud-bot@tmit.eu>\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 <claudio.tessone@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <agustin.ferrario@hotmail.com.ar>, 2012-2013. -# CJTess <claudio.tessone@gmail.com>, 2013. -# <claudio.tessone@gmail.com>, 2012-2013. -# Javier Victor Mariano Bruno <koryyyy@gmail.com>, 2013. +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2012-2013 +# cjtess <claudio.tessone@gmail.com>, 2013 +# cjtess <claudio.tessone@gmail.com>, 2012-2013 +# Javier Victor Mariano Bruno <koryyyy@gmail.com>, 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 <claudio.tessone@gmail.com>\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 <claudio.tessone@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <juliassantos5@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Advertencia:</b> 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 "" "<b>Warning:</b> 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 <claudio.tessone@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <juliassantos5@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <agustin.ferrario@hotmail.com.ar>, 2013. -# CJTess <claudio.tessone@gmail.com>, 2013. -# <claudio.tessone@gmail.com>, 2012. -# Javier Victor Mariano Bruno <koryyyy@gmail.com>, 2013. +# Agustin Ferrario <agustin.ferrario@hotmail.com.ar>, 2013 +# cjtess <claudio.tessone@gmail.com>, 2013 +# cjtess <claudio.tessone@gmail.com>, 2012 +# Javier Victor Mariano Bruno <koryyyy@gmail.com>, 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 <claudio.tessone@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <claudio.tessone@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/es_AR/user_ldap.po b/l10n/es_AR/user_ldap.po index 69b9d37f70c6f5d8de4f32a803abcf6a4a48cd87..a0f13250f4426e0f6d2ffe65d79f980a962534aa 100644 --- a/l10n/es_AR/user_ldap.po +++ b/l10n/es_AR/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: cjtess <claudio.tessone@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <claudio.tessone@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud kogukonda</a>." #: 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 <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." -msgstr "" +msgstr "Serveri korrektseks seadistuseks palun tutvu <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentatsiooniga</a>." #: templates/installation.php:44 msgid "Create an <strong>admin account</strong>" @@ -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: # <dagor.vint@hotmail.com>, 2012. +# Pisike Sipelgas <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 <eraser@eraser.ee>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Hoiatus:</b> \"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 "" "<b>Warning:</b> 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 "<b>Hoiatus:</b> 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 <eraser@eraser.ee>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 <eraser@eraser.ee>, 2012-2013. +# pisike.sipelgas <pisike.sipelgas@gmail.com>, 2013 +# Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>." #: 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: # <icewind1991@gmail.com>, 2012. +# Pisike Sipelgas <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -330,7 +335,7 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "" +msgstr "Arendatud <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kogukonna</a> poolt. <a href=\"https://github.com/owncloud\" target=\"_blank\">Lähtekood</a> on avaldatud ja kaetud <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 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 <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "" +msgstr "Kasutad <strong>%s</strong> saadavalolevast <strong>%s</strong>" #: 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 <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> 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 "<b>Hoiatus:</b> 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 "" "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Hoiatus:</b>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 <pisike.sipelgas@gmail.com>, 2013. # Rivo Zängov <eraser@eraser.ee>, 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 <eraser@eraser.ee>\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 <owncloud-bot@tmit.eu>\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 <asieriko@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Abisua:</b> \"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 "" "<b>Warning:</b> 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 <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <asieriko@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <asieriko@gmail.com>, 2013. -# <asieriko@gmail.com>, 2012. +# asieriko <asieriko@gmail.com>, 2013 +# asieriko <asieriko@gmail.com>, 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 <asieriko@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <asieriko@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/eu/user_ldap.po b/l10n/eu/user_ldap.po index 7b70c5469a61dcc80d036badf23dcc87a2717524..5dbd26541bcab3a5764735fce73ece2a60cfe867 100644 --- a/l10n/eu/user_ldap.po +++ b/l10n/eu/user_ldap.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 <asieriko@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <asieriko@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <miki_mika1362@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <miki_mika1362@yahoo.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <miki_mika1362@yahoo.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <amirreza.asadi@live.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <miki_mika1362@yahoo.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <amirreza.asadi@live.com>, 2013. -# mahdi Kereshteh <miki_mika1362@yahoo.com>, 2013. -# Mohammad Dashtizadeh <mohammad@dashtizadeh.net>, 2012. +# Amir Reza Asadi <amirreza.asadi@live.com>, 2013 +# miki_mika1362 <miki_mika1362@yahoo.com>, 2013 +# Mohammad Dashtizadeh <mohammad@dashtizadeh.net>, 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 <miki_mika1362@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "لطÙاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید." #: 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 <miki_mika1362@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "لطÙاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -334,7 +338,7 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "" +msgstr "توسعه یاÙته به وسیله ÛŒ <a href=\"http://ownCloud.org/contact\" target=\"_blank\">انجمن ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">کد اصلی</a> مجاز زیر گواهی <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: templates/apps.php:11 msgid "Add your App" @@ -354,7 +358,7 @@ msgstr "صÙØÙ‡ این اٌپ را در apps.owncloud.com ببینید" #: templates/apps.php:36 msgid "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-مجاز از طر٠<span class=\"author\"></span>" #: templates/apps.php:38 msgid "Update" @@ -387,11 +391,11 @@ msgstr "پشتیبانی تجاری" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "" +msgstr "شما استÙاده کردید از <strong>%s</strong> از میزان در دسترس <strong>%s</strong>" #: 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 <miki_mika1362@yahoo.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <thomas.mueller@tmit.eu>\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 <owncloud-bot@tmit.eu>\n" +"Language-Team: LANGUAGE <LL@li.org>\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 <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +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 <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:44 msgid "Create an <strong>admin account</strong>" 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. <br/>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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <thomas.mueller@tmit.eu>\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 <owncloud-bot@tmit.eu>\n" +"Language-Team: LANGUAGE <LL@li.org>\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 <a href='%s'>installation guides</a>." +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 <a href=\"%s\">more information</a>" 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 <jiri.gronroos@iki.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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Varoitus:</b> \"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 "" "<b>Warning:</b> 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 <jiri.gronroos@iki.fi>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <jiri.gronroos@iki.fi>, 2012-2013. +# Jiri Grönroos <jiri.gronroos@iki.fi>, 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 <jiri.gronroos@iki.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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -472,7 +476,7 @@ msgstr "Luo" #: templates/users.php:35 msgid "Default Storage" -msgstr "" +msgstr "Oletustallennustila" #: templates/users.php:41 templates/users.php:139 msgid "Unlimited" @@ -484,7 +488,7 @@ msgstr "Muu" #: templates/users.php:84 msgid "Storage" -msgstr "" +msgstr "Tallennustila" #: templates/users.php:95 msgid "change display name" diff --git a/l10n/fi_FI/user_ldap.po b/l10n/fi_FI/user_ldap.po index e3af6f3c3005f4a64da9376df83f4fce468fdb4b..a72be9f1640d517e2277a43d57c073a093fe7e48 100644 --- a/l10n/fi_FI/user_ldap.po +++ b/l10n/fi_FI/user_ldap.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:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <jiri.gronroos@iki.fi>\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 <owncloud-bot@tmit.eu>\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 <guillom.pom@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <kyriog@gmail.com>, 2012. # David Basquin <dba@alternalease.fr>, 2013. # <dba@alternalease.fr>, 2013. +# froozeify <froozeify@mail.com>, 2013. # Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. # <gp4004@arghh.org>, 2012. # <guiguidu31300@gmail.com>, 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 <zrk951@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <zrk951@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Attention : </b> \"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 "" "<b>Warning:</b> 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. <rom1dep@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <zrk951@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <skimpax@gmail.com>, 2013. -# Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012. -# Robert Di Rosa <>, 2013. -# Romain DEP. <rom1dep@gmail.com>, 2012-2013. +# Christophe Lherieau <skimpax@gmail.com>, 2013 +# Geoffrey Guerrier <geoffrey.guerrier@gmail.com>, 2012 +# Robert Di Rosa <>, 2013 +# Romain DEP. <rom1dep@gmail.com>, 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 <skimpax@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <skimpax@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/fr/user_ldap.po b/l10n/fr/user_ldap.po index f8a1920bec7086f9691cc9d7441ee5c090e4db60..dafca62301cb51e0235cb3ab7a8d79aca3b1bb23 100644 --- a/l10n/fr/user_ldap.po +++ b/l10n/fr/user_ldap.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:32+0000\n" -"Last-Translator: Zertrin <zrk951@gmail.com>\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 <owncloud-bot@tmit.eu>\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. <rom1dep@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <mbouzada@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Aviso:</b> «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 "" "<b>Warning:</b> 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 <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <mbouzada@gmail.com>, 2013. -# <mbouzada@gmail.com>, 2012. -# Miguel Branco <mgl.branco@gmail.com>, 2012. -# Xosé M. Lamas <correo.xmgz@gmail.com>, 2012-2013. +# mbouzada <mbouzada@gmail.com>, 2013 +# mbouzada <mbouzada@gmail.com>, 2012 +# Miguel Branco <mgl.branco@gmail.com>, 2012 +# Xosé M. Lamas <correo.xmgz@gmail.com>, 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 <mbouzada@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <mbouzada@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/gl/user_ldap.po b/l10n/gl/user_ldap.po index bb736687f60a8de6aa9e9be78590227673acdaac..44b41641e2b37fcbc5efcec608ca07633778025e 100644 --- a/l10n/gl/user_ldap.po +++ b/l10n/gl/user_ldap.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: mbouzada <mbouzada@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <mbouzada@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <tomerc+transifex.net@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <tomerc+transifex.net@gmail.com>, 2012. -# Yaron Shahrabani <sh.yaron@gmail.com>, 2012. +# Tomer Cohen <tomerc+transifex.net@gmail.com>, 2012 +# Yaron Shahrabani <sh.yaron@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/he/user_ldap.po b/l10n/he/user_ldap.po index 1a0fa0395458d0d07908ffaaa9ba1cf96da93bbd..c2c294c997abd5b0863e7d42887718be9912834a 100644 --- a/l10n/he/user_ldap.po +++ b/l10n/he/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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hi/user_ldap.po b/l10n/hi/user_ldap.po index b2f6a9761a59b3882ce94e2a43039315ea9825a9..7ed6220d5fae61aad6119573ee728063a33b1077 100644 --- a/l10n/hi/user_ldap.po +++ b/l10n/hi/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hr/user_ldap.po b/l10n/hr/user_ldap.po index fbc304add5da3d691768fb480edaf432acb7ac2c..5f2540a610662ad5c14ba1a0b81991050c60cee4 100644 --- a/l10n/hr/user_ldap.po +++ b/l10n/hr/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <torlasz@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Figyelem:</b> 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 "" "<b>Warning:</b> 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 <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <nagy.akos@libreoffice.ro>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <adazlord@gmail.com>, 2012. -# <gyonkibendeguz@gmail.com>, 2013. -# Laszlo Tornoci <torlasz@gmail.com>, 2013. +# Adam Toth <adazlord@gmail.com>, 2012 +# gyeben <gyonkibendeguz@gmail.com>, 2013 +# Laszlo Tornoci <torlasz@gmail.com>, 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 <torlasz@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <torlasz@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/hu_HU/user_ldap.po b/l10n/hu_HU/user_ldap.po index d7f7177ba7548424e3fe9d730fefbb9488d85b18..804a0fd48f7426b4c1560035ea197fb0a0afd392 100644 --- a/l10n/hu_HU/user_ldap.po +++ b/l10n/hu_HU/user_ldap.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: Laszlo Tornoci <torlasz@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <nagy.akos@libreoffice.ro>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: LANGUAGE <LL@li.org>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <owncloud-bot@tmit.eu>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <owncloud-bot@tmit.eu>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 6a4069f5db1bf98e54322406167ed3290528e64f..234d6e2961bce7eb231ee385f976fd80c7a22c8b 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -387,7 +391,7 @@ msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Obtene le apps (applicationes) pro synchronizar tu files" #: templates/personal.php:26 msgid "Show First Run Wizard again" diff --git a/l10n/ia/user_ldap.po b/l10n/ia/user_ldap.po index 602cde8f9a6ae544b591aa8b8d911182c86ca937..5098a66b476dca2759b277acb6789a6a2b140969 100644 --- a/l10n/ia/user_ldap.po +++ b/l10n/ia/user_ldap.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-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:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <yosanpro@gmail.com>, 2012. # Muhammad Panji <sumodirjo@gmail.com>, 2012. # Muhammad Radifar <m_radifar05@yahoo.com>, 2011. +# <romihardiyanto@gmail.com>, 2013. +# Widya Walesa <walecha99@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitas ownCloud</a>." #: 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 <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." -msgstr "" +msgstr "Untuk informasi lebih lanjut tentang pengaturan server yang benar, silakan lihat <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentasi</a>." #: templates/installation.php:44 msgid "Create an <strong>admin account</strong>" @@ -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 <yosanpro@gmail.com>, 2012. # Muhammad Panji <sumodirjo@gmail.com>, 2012. # Muhammad Radifar <m_radifar05@yahoo.com>, 2011. +# <romihardiyanto@gmail.com>, 2013. +# Widya Walesa <walecha99@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <walecha99@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: # <mr.pige_ina@yahoo.co.id>, 2012. +# <romihardiyanto@gmail.com>, 2013. # Widya Walesa <walecha99@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Peringatan:</b> \"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 "" "<b>Warning:</b> 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: # <mr.pige_ina@yahoo.co.id>, 2012. +# <romihardiyanto@gmail.com>, 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 <mr.pige_ina@yahoo.co.id>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: +# <romihardiyanto@gmail.com>, 2013. # Widya Walesa <walecha99@gmail.com>, 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 <owncloud-bot@tmit.eu>\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: # <mr.pige_ina@yahoo.co.id>, 2012. +# <romihardiyanto@gmail.com>, 2013. # Widya Walesa <walecha99@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <se7entime@gmail.com>, 2013. -# <mr.pige_ina@yahoo.co.id>, 2012. +# Mohamad Hasan Al Banna <se7entime@gmail.com>, 2013 +# elmakong <mr.pige_ina@yahoo.co.id>, 2012 +# rodin <romihardiyanto@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." #: 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 <a href=\"%s\">more information</a>" -msgstr "%s tersedia. dapatkan <a href=\"%s\"> info lebih lanjut</a>" +msgstr "%s tersedia. Dapatkan <a href=\"%s\">info lebih lanjut</a>" #: 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 <yosanpro@gmail.com>, 2012. # Muhammad Panji <sumodirjo@gmail.com>, 2012. # Muhammad Radifar <m_radifar05@yahoo.com>, 2011. +# <romihardiyanto@gmail.com>, 2013. +# Widya Walesa <walecha99@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Silakan periksa ulang <a href='%s'>panduan instalasi</a>." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -332,19 +338,19 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "" +msgstr "Dikembangkan oleh <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitas ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kode sumber</a> dilisensikan di bawah <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." #: 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 "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" -msgstr "" +msgstr "<span class=\"licence\"></span>-dilisensikan oleh <span class=\"author\"></span>" #: 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 <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "" +msgstr "Anda telah menggunakan <strong>%s</strong> dari total <strong>%s</strong>" #: 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: # <mr.pige_ina@yahoo.co.id>, 2012. +# <romihardiyanto@gmail.com>, 2013. # Widya Walesa <walecha99@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <walecha99@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Aðvörun:</b> \"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 "" "<b>Warning:</b> 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 <sveinng@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: -# <sveinng@gmail.com>, 2012. +# sveinn <sveinng@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/is/user_ldap.po b/l10n/is/user_ldap.po index 02d72b9058d087081d53d04e19577f4fa9c38305..fa68224263f60aed22cbec7e6f63a7fe9f30dd90 100644 --- a/l10n/is/user_ldap.po +++ b/l10n/is/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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <vinx.reale@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Avviso:</b> \"smbclient\" non è installato. Impossibile montare condivisioni CIFS/SMB. Chiedi all'amministratore di sistema di installarlo." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <vinx.reale@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <vinx.reale@gmail.com>, 2012-2013. +# Vincenzo Reale <vinx.reale@gmail.com>, 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 <vinx.reale@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <vinx.reale@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/it/user_ldap.po b/l10n/it/user_ldap.po index 36930d04bfbc89d9e72d4bda1bbd0546421e68a8..4cc1f4182669d77ba8232419e790313fa4617ece 100644 --- a/l10n/it/user_ldap.po +++ b/l10n/it/user_ldap.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 <vinx.reale@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <vinx.reale@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <ddeguchi@nagoya-u.jp>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>è¦å‘Š:</b> \"smbclient\" ã¯ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“。CIFS/SMB 共有ã®ãƒžã‚¦ãƒ³ãƒˆã¯ã§ãã¾ã›ã‚“。システム管ç†è€…ã«ã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã‚’ãŠé¡˜ã„ã—ã¦ä¸‹ã•ã„。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <ddeguchi@is.nagoya-u.ac.jp>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <tetuyano+transi@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2013. -# YANO Tetsu <tetuyano+transi@gmail.com>, 2013. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012 +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2013 +# tt yn <tetuyano+transi@gmail.com>, 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 <tetuyano+transi@gmail.com>\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 <owncloud-bot@tmit.eu>\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 "<a href='%s'>インストールガイド</a>をよã確èªã—ã¦ãã #: 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 <ddeguchi@is.nagoya-u.ac.jp>, 2012. -# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013. -# <tetuyano+transi@gmail.com>, 2012. -# <tetuyano+transi@gmail.com>, 2012. -# YANO Tetsu <tetuyano+transi@gmail.com>, 2013. +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012 +# Daisuke Deguchi <ddeguchi@nagoya-u.jp>, 2012-2013 +# tt yn <tetuyano+transi@gmail.com>, 2012 +# tt yn <tetuyano+transi@gmail.com>, 2012 +# tt yn <tetuyano+transi@gmail.com>, 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 <tetuyano+transi@gmail.com>\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 <ddeguchi@nagoya-u.jp>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -333,7 +337,7 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>ã«ã‚ˆã‚Šé–‹ç™ºã•ã‚Œã¦ã„ã¾ã™ã€<a href=\"https://github.com/owncloud\" target=\"_blank\">ソースコード</a>ライセンスã¯ã€<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ライセンスã«ã‚ˆã‚Šæä¾›ã•ã‚Œã¦ã„ã¾ã™ã€‚" +msgstr "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud コミュニティ</a>ã«ã‚ˆã‚Šé–‹ç™ºã•ã‚Œã¦ã„ã¾ã™ã€‚ <a href=\"https://github.com/owncloud\" target=\"_blank\">ソースコード</a>ã¯ã€<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ライセンスã®ä¸‹ã§æä¾›ã•ã‚Œã¦ã„ã¾ã™ã€‚" #: templates/apps.php:11 msgid "Add your App" @@ -390,11 +394,11 @@ msgstr "ç¾åœ¨ã€<strong>%s</strong> / <strong>%s</strong> を利用ã—ã¦ã„ã¾ #: 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 <ddeguchi@nagoya-u.jp>\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 <owncloud-bot@tmit.eu>\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 <ddeguchi@nagoya-u.jp>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <getto379@mail.ru>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <getto379@mail.ru>, 2013. +# GeoCybers <getto379@mail.ru>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ka/user_ldap.po b/l10n/ka/user_ldap.po index a49552a01fb6627be3a6f50d8f966c09fb51fd2c..1396bede36a683de742445703de6cf05df88f25b 100644 --- a/l10n/ka/user_ldap.po +++ b/l10n/ka/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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: -# <romeo@energo-pro.ge>, 2012. -# Romeo Pirtskhalava <romeo@energo-pro.ge>, 2013. +# drlinux64 <romeo@energo-pro.ge>, 2012 +# drlinux64 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "გáƒáƒœáƒáƒ®áƒšáƒ”ბრვერგáƒáƒœáƒ®áƒáƒ ციელდáƒ. გთხáƒáƒ•áƒ— შეგვáƒáƒ¢áƒ§áƒáƒ‘ინáƒáƒ— áƒáƒ› პრáƒáƒ‘ლემის შესáƒáƒ®áƒ”ბ áƒáƒ¥: <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud community</a>." #: 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 <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." -msgstr "" +msgstr "სერვერის კáƒáƒ ექტულáƒáƒ“ დáƒáƒ¡áƒáƒ™áƒáƒœáƒ¤áƒ˜áƒ’ურირებლáƒáƒ“, ნáƒáƒ®áƒ”თ შემდეგი <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ</a>." #: templates/installation.php:44 msgid "Create an <strong>admin account</strong>" @@ -513,43 +515,43 @@ msgstr "შექმენი <strong>áƒáƒ“მინ ექáƒáƒ£áƒœáƒ¢áƒ˜</str #: templates/installation.php:62 msgid "Advanced" -msgstr "Advanced" +msgstr "დáƒáƒ›áƒáƒ¢áƒ”ბითი ფუნქციები" #: templates/installation.php:64 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 "კáƒáƒœáƒ¤áƒ˜áƒ’ურáƒáƒªáƒ˜áƒ˜áƒ¡ დáƒáƒ¡áƒ ულებáƒ" @@ -569,11 +571,11 @@ msgstr "áƒáƒ•áƒ¢áƒáƒ›áƒáƒ¢áƒ£áƒ ი შესვლრუáƒáƒ ყáƒáƒ¤áƒ˜ msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "" +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?" @@ -589,7 +591,7 @@ msgstr "შესვლáƒ" #: templates/login.php:49 msgid "Alternative Logins" -msgstr "" +msgstr "áƒáƒšáƒ¢áƒ”რნáƒáƒ¢áƒ˜áƒ£áƒšáƒ˜ Login–ი" #: templates/part.pagenavi.php:3 msgid "prev" @@ -602,4 +604,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/ka_GE/files.po b/l10n/ka_GE/files.po index 2dc77744cc68d4a89d622217686a20aec92b18b4..8750ca1cf19a4843c2898e1d8a8edb8be8dfacca 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# <romeo@energo-pro.ge>, 2012. +# drlinux64 <romeo@energo-pro.ge>, 2012 +# drlinux64 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> \"smbclient\" áƒáƒ áƒáƒ ის ინსტáƒáƒšáƒ˜áƒ ებული. CIFS/SMB ზიáƒáƒ ების მáƒáƒœáƒ¢áƒ˜áƒ ებრშეუძლებელიáƒ. გთხáƒáƒ•áƒ— თხáƒáƒ•áƒáƒ— თქვენს სისტემურáƒáƒ“მინისტრáƒáƒ¢áƒáƒ ებს დáƒáƒáƒ˜áƒœáƒ¡áƒ¢áƒáƒšáƒ˜áƒ áƒáƒ¡ ის." -#: lib/config.php:424 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> 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: # <romeo@energo-pro.ge>, 2012. +# Romeo Pirtskhalava <romeo@energo-pro.ge>, 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 <romeo@energo-pro.ge>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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: -# <romeo@energo-pro.ge>, 2012. +# drlinux64 <romeo@energo-pro.ge>, 2012 +# drlinux64 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "გთხáƒáƒ•áƒ— გáƒáƒ“áƒáƒáƒ—ვáƒáƒšáƒ˜áƒ”რáƒáƒ— <a href='%s'>ინსტáƒáƒšáƒáƒªáƒ˜áƒ˜áƒ¡ გზáƒáƒ›áƒ™áƒ•áƒšáƒ”ვი</a>." #: 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 <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s ხელმისáƒáƒ¬áƒ•áƒ“áƒáƒ›áƒ˜áƒ. მიიღეთ <a href=\"%s\">უფრრმეტი ინფáƒáƒ მáƒáƒªáƒ˜áƒ</a>" #: 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: -# <romeo@energo-pro.ge>, 2012. +# drlinux64 <romeo@energo-pro.ge>, 2012 +# drlinux64 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "გთხáƒáƒ•áƒ— გáƒáƒ“áƒáƒáƒ—ვáƒáƒšáƒ˜áƒ”რáƒáƒ— <a href='%s'>ინსტáƒáƒšáƒáƒªáƒ˜áƒ˜áƒ¡ გზáƒáƒ›áƒ™áƒ•áƒšáƒ”ვი</a>." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -329,7 +334,7 @@ msgid "" "licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " "target=\"_blank\"><abbr title=\"Affero General Public " "License\">AGPL</abbr></a>." -msgstr "" +msgstr "წáƒáƒ მáƒáƒ”ბულირ<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>–ის მიერ. <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> ვრცელდებრ<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ლიცენზიის ფáƒáƒ გლებში." #: 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 <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "" +msgstr "თქვენ გáƒáƒ›áƒáƒ§áƒ”ნებული გáƒáƒ¥áƒ•áƒ— <strong>%s</strong> –ი –<strong>%s<strong>–დáƒáƒœ" #: 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 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> 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 "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ˜áƒ¡ user_ldap დრuser_webdavauth áƒáƒ áƒáƒ—áƒáƒ•áƒ¡áƒ”ბáƒáƒ“იáƒ. თქვენ შეიძლებრშეეჩეხáƒáƒ— მáƒáƒ£áƒšáƒáƒ“ნელ შშედეგებს. თხáƒáƒ•áƒ”თ თქვენს áƒáƒ“მინისტრáƒáƒ¢áƒáƒ ს ჩáƒáƒ—იშáƒáƒ¡ ერთერთი." #: templates/settings.php:11 msgid "" "<b>Warning:</b> The PHP LDAP module is not installed, the backend will not " "work. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>გáƒáƒ¤áƒ თხილებáƒ:</b> 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 <romeo@energo-pro.ge>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a " +"href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " +"community</a>." +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 <a " +"href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " +"target=\"_blank\">documentation</a>." +msgstr "" + +#: templates/installation.php:44 +msgid "Create an <strong>admin account</strong>" +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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" +"<b>Warning:</b> \"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 "" +"<b>Warning:</b> 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." +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 <a href=\"%s\">more information</a>" +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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." +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 <a href=\"http://ownCloud.org/contact\" " +"target=\"_blank\">ownCloud community</a>, the <a " +"href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is " +"licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" " +"target=\"_blank\"><abbr title=\"Affero General Public " +"License\">AGPL</abbr></a>." +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 "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" +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 <strong>%s</strong> of the available <strong>%s</strong>" +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 <owncloud-bot@tmit.eu>\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 "" +"<b>Warning:</b> 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 "" +"<b>Warning:</b> 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>ê²½ê³ :</b> \"smbclient\"ê°€ 설치ë˜ì§€ 않았습니다. CIFS/SMB ê³µìœ ìžì›ì— ì—°ê²°í• ìˆ˜ 없습니다. 시스템 관리ìžì—게 설치를 ìš”ì²í•˜ì‹ì‹œì˜¤." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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: # 남ìžì‚¬ëžŒ <cessnagi@gmail.com>, 2012. +# Park Shinjo <kde@peremen.name>, 2013. # Shinjo Park <kde@peremen.name>, 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 <kde@peremen.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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: # 남ìžì‚¬ëžŒ <cessnagi@gmail.com>, 2012. # Shinjo Park <kde@peremen.name>, 2012. +# Sung Jin Gang <potopro@gmail.com>, 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 <owncloud-bot@tmit.eu>\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: -# 남ìžì‚¬ëžŒ <cessnagi@gmail.com>, 2012. -# Park Shinjo <kde@peremen.name>, 2013. -# Shinjo Park <kde@peremen.name>, 2012. +# 남ìžì‚¬ëžŒ <cessnagi@gmail.com>, 2012 +# Shinjo Park <kde@peremen.name>, 2013 +# Shinjo Park <kde@peremen.name>, 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 <owncloud-bot@tmit.eu>\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 <fofwisdom@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -390,7 +394,7 @@ msgstr "현재 공간 <strong>%s</strong>/<strong>%s</strong>ì„(를) 사용 중 #: 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 <owncloud-bot@tmit.eu>\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 <kde@peremen.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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <hozhan@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ku_IQ/user_ldap.po b/l10n/ku_IQ/user_ldap.po index 0e3bf045fa26e14704dbcd29e8e616f93bef46c0..cc74bf7a4133a55df077bd55dbc9cd6084f27130 100644 --- a/l10n/ku_IQ/user_ldap.po +++ b/l10n/ku_IQ/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lb/user_ldap.po b/l10n/lb/user_ldap.po index 8e3b5b7e3124018ab5a2512710687c1401e596b4..43ff3ad1b162facb93a4905975fd84f6261aa86c 100644 --- a/l10n/lb/user_ldap.po +++ b/l10n/lb/user_ldap.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-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:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: # <andrejuszl@gmail.com>, 2012. # Dr. ROX <to.dr.rox@gmail.com>, 2012. +# Mindaugas <min2lizz@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Ä®spÄ—jimas:</b> \"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 "" "<b>Warning:</b> 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 "<b>Ä®spÄ—jimas:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: # <andrejuszl@gmail.com>, 2012. # Dr. ROX <to.dr.rox@gmail.com>, 2012. +# Mindaugas <min2lizz@gmail.com>, 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 <owncloud-bot@tmit.eu>\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: -# <andrejuszl@gmail.com>, 2012. -# Dr. ROX <to.dr.rox@gmail.com>, 2012. +# andrejuseu <andrejuszl@gmail.com>, 2012 +# Dr. ROX <to.dr.rox@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lt_LT/user_ldap.po b/l10n/lt_LT/user_ldap.po index 28684ff33e67f4a648a304edad45d4bac24105a9..a27f44400d61a6da76729aebace07583d4b5f15a 100644 --- a/l10n/lt_LT/user_ldap.po +++ b/l10n/lt_LT/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-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:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <min2lizz@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <rudolfs.mazurs@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <rudolfs.mazurs@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>BrÄ«dinÄjums:</b> 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 "" "<b>Warning:</b> 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 <rudolfs.mazurs@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <rudolfs.mazurs@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <rudolfs.mazurs@gmail.com>, 2013. +# RÅ«dolfs Mazurs <rudolfs.mazurs@gmail.com>, 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 <rudolfs.mazurs@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <rudolfs.mazurs@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/lv/user_ldap.po b/l10n/lv/user_ldap.po index 442b097a56783f20e00ba8dbeaa9cd40dd351441..d90ac74dcb74bb69904163b1e8e505a796fcdc05 100644 --- a/l10n/lv/user_ldap.po +++ b/l10n/lv/user_ldap.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 <rudolfs.mazurs@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <rudolfs.mazurs@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Внимание:</b> \"smbclient\" не е инÑталиран. Ðе е можно монтирање на CIFS/SMB диÑкови. Замолете го Вашиот ÑиÑтем админиÑтратор да го инÑталира." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <glisha@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <glisha@gmail.com>, 2012. +# Georgi Stanojevski <glisha@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/mk/user_ldap.po b/l10n/mk/user_ldap.po index e09b0f24403353ea58eba8d0878978735c6cefce..bf3591d3a7c145fd48b88e0b1c9b37fe0af02a17 100644 --- a/l10n/mk/user_ldap.po +++ b/l10n/mk/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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ms_MY/user_ldap.po b/l10n/ms_MY/user_ldap.po index 1fea18548a7ba79dfa3c6422022b2696192fb114..f99ce5db090470c962a7d13327fe91e7e0bf7719 100644 --- a/l10n/ms_MY/user_ldap.po +++ b/l10n/ms_MY/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <gipsyhnh@gmail.com>, 2013. +# Pyae Sone <gipsyhnh@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/my_MM/user_ldap.po b/l10n/my_MM/user_ldap.po index 14b74ed4d5cb327e6b1ef8edf2f2759bf5227296..11909d9de18402dcfdf4ba5bbe0e012c25ec0806 100644 --- a/l10n/my_MM/user_ldap.po +++ b/l10n/my_MM/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <oyvind.hojem@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <oyvind.hojem@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <hdalgrav@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <arvid.nornes@gmail.com>, 2012. -# <espenbye@me.com>, 2012. -# <hdalgrav@gmail.com>, 2012. -# <runesudden@gmail.com>, 2012. -# <sindre@haverstad.com>, 2012. +# Arvid Nornes <arvid.nornes@gmail.com>, 2012 +# espenbye <espenbye@me.com>, 2012 +# hdalgrav <hdalgrav@gmail.com>, 2012 +# runesudden <runesudden@gmail.com>, 2012 +# sindrejh <sindre@haverstad.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nb_NO/user_ldap.po b/l10n/nb_NO/user_ldap.po index 4ae7f1b6dded7d845a95f404c8fa3a42dcef8687..3102274ae54011984bff0f5c8efe0612cc355ce3 100644 --- a/l10n/nb_NO/user_ldap.po +++ b/l10n/nb_NO/user_ldap.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: MorphyNOR <ivar.bredesen@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." 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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ne/user_ldap.po b/l10n/ne/user_ldap.po index 57664ab3fc12ffa8efa1d0ef64d5f45834ac1965..a589c8483df666eb80d5731470ef82b01eaba757 100644 --- a/l10n/ne/user_ldap.po +++ b/l10n/ne/user_ldap.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:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <meneer@tken.net>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <meneer@tken.net>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Waarschuwing:</b> \"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 "" "<b>Warning:</b> 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 <radoeka@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <meneer@tken.net>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <meneer@tken.net>, 2013. -# <lenny@weijl.org>, 2012. -# Richard Bos <radoeka@gmail.com>, 2012. -# <transifex@thisnet.nl>, 2012. +# André Koot <meneer@tken.net>, 2013 +# Len <lenny@weijl.org>, 2012 +# Richard Bos <radoeka@gmail.com>, 2012 +# bartv <transifex@thisnet.nl>, 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 <meneer@tken.net>\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 <owncloud-bot@tmit.eu>\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 <meneer@tken.net>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 22dfb2ddcc90324b57793020c9d170fb9b8c4af7..2e4e387628ca2a7816bc22d120ea9d20a9958a02 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/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: André Koot <meneer@tken.net>\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 <owncloud-bot@tmit.eu>\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 <meneer@tken.net>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/nn_NO/user_ldap.po b/l10n/nn_NO/user_ldap.po index 33368c43791836fc463f16039f904bbc9615674d..f15d6449f3551269d23d0c3f94451effe6a86d13 100644 --- a/l10n/nn_NO/user_ldap.po +++ b/l10n/nn_NO/user_ldap.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-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:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: -# <d.chateau@laposte.net>, 2012. +# tartafione <d.chateau@laposte.net>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/oc/user_ldap.po b/l10n/oc/user_ldap.po index 3c1cdc754b3ef8856aa23fd0f259996db4500868..00048980bfd6b37261a6bb5ae24328ea3eeab3bc 100644 --- a/l10n/oc/user_ldap.po +++ b/l10n/oc/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <mplichta@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <bbartlomiej@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <maciej@tarmas.pl>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Ostrzeżenie:</b> \"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 "" "<b>Warning:</b> 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 <mplichta@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <maciej@tarmas.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <cyrylsochacki@gmail.com>, 2012-2013. -# Maciej Tarmas <maciej@tarmas.com>, 2013. -# Marcin MaÅ‚ecki <gerber@tkdami.net>, 2012-2013. +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012 +# Cyryl Sochacki <cyrylsochacki@gmail.com>, 2012-2013 +# Maciej Tarmas <maciej@tarmas.pl>, 2013 +# Marcin MaÅ‚ecki <gerber@tkdami.net>, 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 <maciej@tarmas.pl>\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 <owncloud-bot@tmit.eu>\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 <maciej@tarmas.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pl/user_ldap.po b/l10n/pl/user_ldap.po index da513b5614f0dff78fc38568d3f49ef3f32b7e04..48697cda32f070c24f590c26ecfd573792a9161a 100644 --- a/l10n/pl/user_ldap.po +++ b/l10n/pl/user_ldap.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: Maciej Tarmas <maciej@tarmas.pl>\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 <owncloud-bot@tmit.eu>\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 <bbartlomiej@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pl_PL/user_ldap.po b/l10n/pl_PL/user_ldap.po index 34b3f1b71578e51934807c738ba48da60dba6f69..9d3f142fb47f23ab1a2a6eb77d05b62812731ddc 100644 --- a/l10n/pl_PL/user_ldap.po +++ b/l10n/pl_PL/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 @@ # <henrique@meira.net>, 2012. # <philippi.sedir@gmail.com>, 2012. # Rodrigo Tavares <rodrigo.st23@hotmail.com>, 2013. +# Sedir G. Morais <philippi.sedir@gmail.com>, 2013. # Thiago Vicente <thiagovice@gmail.com>, 2012. # Unforgiving Fallout <>, 2012. # Van Der Fran <transifex@vanderland.com>, 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 <owncloud-bot@tmit.eu>\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 <guimalufb@gmail.com>, 2012. # <philippi.sedir@gmail.com>, 2012. # Rodrigo Tavares <rodrigo.st23@hotmail.com>, 2013. +# Sedir G. Morais <philippi.sedir@gmail.com>, 2013. # <targinosilveira@gmail.com>, 2012. # Thiago Vicente <thiagovice@gmail.com>, 2012. # Tulio Simoes Martins Padilha <tuliouel@gmail.com>, 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 <dudanogueira@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <rodrigo.st23@hotmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <dudanogueira@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Aviso:</b> \"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 "" "<b>Warning:</b> 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 <philippi.sedir@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <dudanogueira@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <dudanogueira@gmail.com>, 2012. -# Frederico Freire Boaventura <fboaventura@live.com>, 2013. -# <glauber.guimaraes@poli.ufrj.br>, 2012. -# <philippi.sedir@gmail.com>, 2012. -# Rodrigo Tavares <rodrigo.st23@hotmail.com>, 2013. +# dudanogueira <dudanogueira@gmail.com>, 2012 +# fboaventura <fboaventura@live.com>, 2013 +# Schopfer <glauber.guimaraes@poli.ufrj.br>, 2012 +# sedir <philippi.sedir@gmail.com>, 2012 +# Rodrigo Tavares <rodrigo.st23@hotmail.com>, 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 <fboaventura@live.com>\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 <owncloud-bot@tmit.eu>\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 <fboaventura@live.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_BR/user_ldap.po b/l10n/pt_BR/user_ldap.po index 8d7cd4367bf9e47b4462de8d86f8633b45b9b510..54d37d885bcc6874b96d18af5bee9b5a7353e928 100644 --- a/l10n/pt_BR/user_ldap.po +++ b/l10n/pt_BR/user_ldap.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: dudanogueira <dudanogueira@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <rodrigo.st23@hotmail.com>\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 <owncloud-bot@tmit.eu>\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 <helder.meneses@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <helder.meneses@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <daniel@mouxy.net>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <helder.meneses@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Atenção:</b> 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 "" "<b>Warning:</b> 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 <duartegrilo@gmail.com>, 2012. +# Helder Meneses <helder.meneses@gmail.com>, 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 <duartegrilo@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <daniel@mouxy.net>, 2013. +# Helder Meneses <helder.meneses@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <helder.meneses@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <daniel@mouxy.net>, 2012-2013. -# Daniel Pinto <daniel@mouxy.net>, 2013. -# Duarte Velez Grilo <duartegrilo@gmail.com>, 2012. -# Helder Meneses <helder.meneses@gmail.com>, 2013. +# Mouxy <daniel@mouxy.net>, 2012-2013 +# Mouxy <daniel@mouxy.net>, 2013 +# Duarte Velez Grilo <duartegrilo@gmail.com>, 2012 +# Helder Meneses <helder.meneses@gmail.com>, 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 <helder.meneses@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <helder.meneses@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/pt_PT/user_ldap.po b/l10n/pt_PT/user_ldap.po index 7a2318cd44f65e74a28d41f34a096f5494d27f1f..a5106e4055f1e23d4152141afbd8f87bd72ff9b1 100644 --- a/l10n/pt_PT/user_ldap.po +++ b/l10n/pt_PT/user_ldap.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: Helder Meneses <helder.meneses@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <daniel@mouxy.net>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>AtenÈ›ie:</b> \"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 "" "<b>Warning:</b> 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 <g.ciprian@osn.ro>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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. -# <g.ciprian@osn.ro>, 2012. -# <laur.cristescu@gmail.com>, 2012. +# Dimon Pockemon <>, 2013 +# g.ciprian <g.ciprian@osn.ro>, 2012 +# laurentiucristescu <laur.cristescu@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ro/user_ldap.po b/l10n/ro/user_ldap.po index 57370aee7d83dd2fb03a5f76c7281a260836b3c0..7d04a5cc4f090aa78b54445d3b4cb5be75640206 100644 --- a/l10n/ro/user_ldap.po +++ b/l10n/ro/user_ldap.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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <langaru@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <langaru@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Внимание:</b> \"smbclient\" не уÑтановлен. Подключение по CIFS/SMB невозможно. ПожалуйÑта, обратитеÑÑŒ к ÑиÑтемному админиÑтратору, чтобы уÑтановить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <skoptev@ukr.net>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <langaru@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <reg.transifex.net@demitel.ru>, 2013. -# Denis <reg.transifex.net@demitel.ru>, 2012. -# <k0ldbl00d@gmail.com>, 2012. -# Mihail Vasiliev <mickvav@gmail.com>, 2012. -# <mpolr21@gmail.com>, 2012. -# Sergey <sergey@markevich.ru>, 2013. -# <victor.dubiniuk@gmail.com>, 2012. -# Дмитрий <langaru@gmail.com>, 2013. +# Denis <reg.transifex.net@demitel.ru>, 2013 +# Denis <reg.transifex.net@demitel.ru>, 2012 +# k0ldbl00d <k0ldbl00d@gmail.com>, 2012 +# Mihail Vasiliev <mickvav@gmail.com>, 2012 +# mPolr <mpolr21@gmail.com>, 2012 +# m4rkell <sergey@markevich.ru>, 2013 +# VicDeo <victor.dubiniuk@gmail.com>, 2012 +# Langaru <langaru@gmail.com>, 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 <langaru@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <langaru@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ru/user_ldap.po b/l10n/ru/user_ldap.po index c58d7a5f3a7d0a39769c7bcba4cff4d49ef35701..96e71415b22c3d2b5d11a1328403c64da2e2729e 100644 --- a/l10n/ru/user_ldap.po +++ b/l10n/ru/user_ldap.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: Langaru <langaru@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <reg.transifex.net@demitel.ru>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Предупреждение:</b> \"smbclient\" не уÑтановлен. Подключение общих папок CIFS/SMB невозможно. ПожалуйÑта, обратитеÑÑŒ к ÑиÑтемному админиÑтратору, чтобы уÑтановить его." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <cdewqazxsqwe@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: -# <cdewqazxsqwe@gmail.com>, 2013. -# <cdewqazxsqwe@gmail.com>, 2012. -# Дмитрий <langaru@gmail.com>, 2013. +# AnnaSch <cdewqazxsqwe@gmail.com>, 2013 +# AnnaSch <cdewqazxsqwe@gmail.com>, 2012 +# Langaru <langaru@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po index 8ebddb604b8679141af9e06efba4e96f1b396647..3ee3d4714504a8c57098f550377073ce7b572dda 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/ru_RU/user_ldap.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:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <cdewqazxsqwe@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <anushke@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <anushke@gmail.com>, 2012. -# <awantha14@gmail.com>, 2012. +# Anushke Guneratne <anushke@gmail.com>, 2012 +# dinusha <awantha14@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/si_LK/user_ldap.po b/l10n/si_LK/user_ldap.po index bec52d2d4837d193ba68b8b354d5b18e8c9066a9..3fdeae7d3a3442593cae991b5b805a41a828ebc8 100644 --- a/l10n/si_LK/user_ldap.po +++ b/l10n/si_LK/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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk/user_ldap.po b/l10n/sk/user_ldap.po index a22107c718ce8de2310f3769d1bac920a21f2892..37edfc8d9f744874fdd44604a8cef30a17c4836a 100644 --- a/l10n/sk/user_ldap.po +++ b/l10n/sk/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <marian.hvolka@stuba.sk>\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 <owncloud-bot@tmit.eu>\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 @@ # <intense.feel@gmail.com>, 2012. # Marián Hvolka <marian.hvolka@stuba.sk>, 2013. # <martin.babik@gmail.com>, 2012. +# Martin Zatroch <zatroch.martin@gmail.com>, 2013. # Roman Priesol <roman@priesol.net>, 2012. # <zatroch.martin@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Upozornenie:</b> \"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 "" "<b>Warning:</b> 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 <martin.babik@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <marian.hvolka@stuba.sk>, 2013. -# <martin.babik@gmail.com>, 2012. -# Roman Priesol <roman@priesol.net>, 2012. -# <zatroch.martin@gmail.com>, 2012. +# mhh <marian.hvolka@stuba.sk>, 2013 +# martinb <martin.babik@gmail.com>, 2012 +# Roman Priesol <roman@priesol.net>, 2012 +# martin <zatroch.martin@gmail.com>, 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 <marian.hvolka@stuba.sk>\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 <owncloud-bot@tmit.eu>\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 <marian.hvolka@stuba.sk>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sk_SK/user_ldap.po b/l10n/sk_SK/user_ldap.po index 5c221f7f0731688ccc6056b0d260181371abf9f6..dcfe6e11b1dbd2171d8acacd5b2d561835549af8 100644 --- a/l10n/sk_SK/user_ldap.po +++ b/l10n/sk_SK/user_ldap.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: mhh <marian.hvolka@stuba.sk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <marian.hvolka@stuba.sk>\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 <owncloud-bot@tmit.eu>\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. -# <peter.perosa@gmail.com>, 2012. -# Peter PeroÅ¡a <peter.perosa@gmail.com>, 2012. -# <urossolar@hotmail.com>, 2012. +# mateju <>, 2013 +# mateju <>, 2012 +# mateju <>, 2013 +# Peter PeroÅ¡a <peter.perosa@gmail.com>, 2012 +# Peter PeroÅ¡a <peter.perosa@gmail.com>, 2012 +# urossolar <urossolar@hotmail.com>, 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 <owncloud-bot@tmit.eu>\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. -# <peter.perosa@gmail.com>, 2012. -# Peter PeroÅ¡a <peter.perosa@gmail.com>, 2012. -# <urossolar@hotmail.com>, 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter PeroÅ¡a <peter.perosa@gmail.com>, 2012 +# Peter PeroÅ¡a <peter.perosa@gmail.com>, 2012 +# urossolar <urossolar@hotmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Opozorilo:</b> paket \"smbclient\" ni nameÅ¡Äen. Priklapljanje pogonov CIFS/SMB ne bo mogoÄe." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <peter.perosa@gmail.com>, 2012. +# mateju <>, 2012 +# mateju <>, 2013 +# Peter PeroÅ¡a <peter.perosa@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sl/user_ldap.po b/l10n/sl/user_ldap.po index aaaefb8647c488c6dc4b83220cbb6e776ea4c1a2..d291effd8588d3deb8be81346eed37aef70180a5 100644 --- a/l10n/sl/user_ldap.po +++ b/l10n/sl/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: 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: +# <rapid_odeen@zoho.com>, 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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem <a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">komunitetin ownCloud</a>." #: 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 <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." -msgstr "" +msgstr "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni <a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">dokumentacionin</a>." #: templates/installation.php:44 msgid "Create an <strong>admin account</strong>" -msgstr "" +msgstr "Krijo një <strong>llogari administruesi</strong>" #: 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: +# <rapid_odeen@zoho.com>, 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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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: +# <rapid_odeen@zoho.com>, 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: +# <rapid_odeen@zoho.com>, 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <rapid_odeen@zoho.com>, 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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>." #: 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 <a href=\"%s\">more information</a>" -msgstr "" +msgstr "%s është i disponueshëm. <a href=\"%s\">Informohuni këtu</a>" #: 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: +# <rapid_odeen@zoho.com>, 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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -352,7 +357,7 @@ msgstr "" #: templates/apps.php:38 msgid "Update" -msgstr "" +msgstr "Azhurno" #: templates/help.php:4 msgid "User Documentation" @@ -385,7 +390,7 @@ msgstr "" #: templates/personal.php:15 msgid "Get the apps to sync your files" -msgstr "" +msgstr "Merrni app-et për sinkronizimin e skedarëve tuaj" #: templates/personal.php:26 msgid "Show First Run Wizard again" @@ -393,7 +398,7 @@ msgstr "" #: templates/personal.php:37 templates/users.php:23 templates/users.php:79 msgid "Password" -msgstr "" +msgstr "Kodi" #: templates/personal.php:38 msgid "Your password was changed" @@ -409,7 +414,7 @@ msgstr "" #: templates/personal.php:42 msgid "New password" -msgstr "" +msgstr "Kodi i ri" #: templates/personal.php:44 msgid "Change password" diff --git a/l10n/sq/user_ldap.po b/l10n/sq/user_ldap.po index 3c3c79ea758e69b31ceaff893d48ff2c40e289bf..ff91215d0aa566b0b76e6a3d54416f934842f38c 100644 --- a/l10n/sq/user_ldap.po +++ b/l10n/sq/user_ldap.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:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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ć <ivan@ipplusstudio.com>, 2012. # Slobodan Terzić <githzerai06@gmail.com>, 2011, 2012. +# <theranchcowboy@gmail.com>, 2013. # <theranchcowboy@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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ć <ivan@ipplusstudio.com>, 2012-2013. -# <theranchcowboy@gmail.com>, 2013. -# <theranchcowboy@gmail.com>, 2012. +# Ivan Petrović <ivan@ipplusstudio.com>, 2012-2013 +# Rancher <theranchcowboy@gmail.com>, 2013 +# Rancher <theranchcowboy@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Погледајте <a href='%s'>водиче за инÑталацију</a>." #: 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: # <marko@evizo.com>, 2012. # Slobodan Terzić <githzerai06@gmail.com>, 2011, 2012. +# <theranchcowboy@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "Погледајте <a href='%s'>водиче за инÑталацију</a>." #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -358,27 +363,27 @@ 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 @@ -387,7 +392,7 @@ msgstr "ИÑкориÑтили Ñте <strong>%s</strong> од дозвољен #: 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 <owncloud-bot@tmit.eu>\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 <theranchcowboy@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <thomas.mueller@tmit.eu>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sr@latin/user_ldap.po b/l10n/sr@latin/user_ldap.po index 05f0229b2ed08f15b2e965c1b2eb84a3a06ab4e8..19f25b81a026ea2b5233f9cbce8ca7eddcc79e5e 100644 --- a/l10n/sr@latin/user_ldap.po +++ b/l10n/sr@latin/user_ldap.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-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:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <lokal_profil@hotmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <lokal_profil@hotmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Varning:</b> \"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 "" "<b>Warning:</b> 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 <magnus@linux.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <magnus@linux.com>, 2012-2013. -# <magnus@linux.com>, 2012. +# Magnus Höglund <magnus@linux.com>, 2012-2013 +# Magnus Höglund <magnus@linux.com>, 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 <owncloud-bot@tmit.eu>\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 <lokal_profil@hotmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -394,7 +398,7 @@ msgstr "Du har använt <strong>%s</strong> av tillgängliga <strong>%s</strong>" #: 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 <lokal_profil@hotmail.com>\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 <owncloud-bot@tmit.eu>\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 <magnus@linux.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." 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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/sw_KE/user_ldap.po b/l10n/sw_KE/user_ldap.po index 4715c3b41d2d7bd65ba767488d155f233dc07e0c..7c6391cdc5ca6511e584ad762ae07ae9a320199d 100644 --- a/l10n/sw_KE/user_ldap.po +++ b/l10n/sw_KE/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <suganthi@nic.lk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: -# <suganthi@nic.lk>, 2012. +# suganthi <suganthi@nic.lk>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ta_LK/user_ldap.po b/l10n/ta_LK/user_ldap.po index ed69b01b568fcf288a70111e4b74aa2cad9da97f..6a582a0329e8af05d946cfec407a0c2acb036a48 100644 --- a/l10n/ta_LK/user_ldap.po +++ b/l10n/ta_LK/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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: వీవెనౠ<veeven@gmail.com>\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 <owncloud-bot@tmit.eu>\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: వీవెనౠ<veeven@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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: వీవెనౠ<veeven@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/te/user_ldap.po b/l10n/te/user_ldap.po index 0688209cb1673d3c377ff06d246c19cc27684937..4dceae35766685713f04fa93839046d163febbf8 100644 --- a/l10n/te/user_ldap.po +++ b/l10n/te/user_ldap.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:45+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -37,13 +37,13 @@ msgstr "" msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:423 +#: lib/config.php:424 msgid "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <a href='%s'>installation guides</a>." 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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <a href=\"http://ownCloud.org/contact\" target=\"_blank" "\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" " diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index e4557140b772f8bf336827e675e030d6ac7e6787..bdb389c0b305a8fd2e42dc51b3aa40d47ed40b34 100644 --- a/l10n/templates/user_ldap.pot +++ b/l10n/templates/user_ldap.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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>คำเตืà¸à¸™:</b> \"smbclient\" ยังไม่ได้ถูà¸à¸•à¸´à¸”ตั้ง. à¸à¸²à¸£à¸Šà¸µà¹‰ CIFS/SMB เพื่à¸à¹à¸Šà¸£à¹Œà¸‚้à¸à¸¡à¸¹à¸¥à¹„ม่สามารถà¸à¸£à¸°à¸—ำได้ à¸à¸£à¸¸à¸“าสà¸à¸šà¸–ามข้à¸à¸¡à¸¹à¸¥à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸•à¸´à¸¡à¸ˆà¸²à¸à¸œà¸¹à¹‰à¸”ูà¹à¸¥à¸£à¸°à¸šà¸šà¹€à¸žà¸·à¹ˆà¸à¸•à¸´à¸”ตั้ง." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <ariesanywhere@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <ariesanywhere@gmail.com>, 2012-2013. +# AriesAnywhere Anywhere <ariesanywhere@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/th_TH/user_ldap.po b/l10n/th_TH/user_ldap.po index f4b4608ec5e6b675de8f5014210894f8dd57c837..fdda463b0fb0751c984695f628a4beeacaba1af0 100644 --- a/l10n/th_TH/user_ldap.po +++ b/l10n/th_TH/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:22+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ariesanywhere@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <aranel@aranelsurion.org>, 2011, 2012. -# Caner BaÅŸaran <basaran.caner@gmail.com>, 2012. -# H.Oktay Tefenli <otefenli@gmail.com>, 2013. -# <info@beyboo.de>, 2012. -# ismail yenigul <ismail.yenigul@surgate.com>, 2013. -# Necdet Yücel <necdetyucel@gmail.com>, 2012. -# TayançKILIÇLI <tayancatakan@gmail.com>, 2013. +# Aranel Surion <aranel@aranelsurion.org>, 2011, 2012 +# Caner BaÅŸaran <basaran.caner@gmail.com>, 2012 +# otefenli <otefenli@gmail.com>, 2013 +# ifthenelse <ifthenelse@gmx.com>, 2013 +# alpere <info@beyboo.de>, 2012 +# ismail yenigül <ismail.yenigul@surgate.com>, 2013 +# Necdet Yücel <necdetyucel@gmail.com>, 2012 +# atakan96 <tayancatakan@gmail.com>, 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 <otefenli@gmail.com>\n" +"POT-Creation-Date: 2013-04-23 01:58+0200\n" +"PO-Revision-Date: 2013-04-22 07:40+0000\n" +"Last-Translator: ifthenelse <ifthenelse@gmx.com>\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 <ismail.yenigul@surgate.com>\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 <owncloud-bot@tmit.eu>\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 <tayancatakan@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <necdetyucel@gmail.com>, 2012. -# TayançKILIÇLI <tayancatakan@gmail.com>, 2013. +# Caner BaÅŸaran <basaran.caner@gmail.com>, 2013 +# Necdet Yücel <necdetyucel@gmail.com>, 2012 +# atakan96 <tayancatakan@gmail.com>, 2013 +# KAT.RAT12 <spanish.katerina@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <spanish.katerina@gmail.com>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>Uyari.</b>''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 "" "<b>Warning:</b> 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 "<Uyari.</b>. 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 <info@beyboo.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 <owncloud-bot@tmit.eu>\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 <otefenli@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <otefenli@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ismail.yenigul@surgate.com>, 2013. -# Necdet Yücel <necdetyucel@gmail.com>, 2012. +# ismail yenigül <ismail.yenigul@surgate.com>, 2013 +# Necdet Yücel <necdetyucel@gmail.com>, 2012 +# KAT.RAT12 <spanish.katerina@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <spanish.katerina@gmail.com>\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 <a href='%s'>installation guides</a>." msgstr "Lütfen <a href='%s'>kurulum kılavuzlarını</a> 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 <aranel@aranelsurion.org>, 2011-2013. # Caner BaÅŸaran <basaran.caner@gmail.com>, 2013. # Emre <emresaracoglu@live.com>, 2012. +# Fatih Aşıcı <fatih.asici@gmail.com>, 2013. # H.Oktay Tefenli <otefenli@gmail.com>, 2013. # <info@beyboo.de>, 2012. # ismail yenigul <ismail.yenigul@surgate.com>, 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 <basaran.caner@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -449,7 +454,7 @@ msgstr "Eposta adresiniz" #: templates/personal.php:73 msgid "Fill in an email address to enable password recovery" -msgstr "Parola sıfırlamayı aktifleÅŸtirmek için eposta adresi girin" +msgstr "Parola kurtarmayı etkinleÅŸtirmek için bir eposta adresi girin" #: templates/personal.php:79 templates/personal.php:80 msgid "Language" diff --git a/l10n/tr/user_ldap.po b/l10n/tr/user_ldap.po index 1cfb5d5aca8f3e506148c29dcac3c1704f040cd6..fa5df1f4636eda67fcde99902f5c6fbed6942e7c 100644 --- a/l10n/tr/user_ldap.po +++ b/l10n/tr/user_ldap.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Necdet Yücel <necdetyucel@gmail.com>, 2012. -# TayançKILIÇLI <tayancatakan@gmail.com>, 2013. +# Necdet Yücel <necdetyucel@gmail.com>, 2012 +# atakan96 <tayancatakan@gmail.com>, 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 <owncloud-bot@tmit.eu>\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: -# <info@beyboo.de>, 2012. -# Necdet Yücel <necdetyucel@gmail.com>, 2012. -# TayançKILIÇLI <tayancatakan@gmail.com>, 2013. +# alpere <info@beyboo.de>, 2012 +# Necdet Yücel <necdetyucel@gmail.com>, 2012 +# atakan96 <tayancatakan@gmail.com>, 2013 +# KAT.RAT12 <spanish.katerina@gmail.com>, 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 <tayancatakan@gmail.com>\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 <spanish.katerina@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <volodya327@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <volodya327@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <volodya327@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>ПопередженнÑ:</b> Клієнт \"smbclient\" не вÑтановлено. Під'єднанатиÑÑ Ð´Ð¾ CIFS/SMB тек неможливо. Попрохайте ÑиÑтемного адмініÑтратора вÑтановити його." -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <skoptev@ukr.net>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <volodya327@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <dzubchikd@gmail.com>, 2012. -# <skoptev@ukr.net>, 2012. -# <victor.dubiniuk@gmail.com>, 2012. -# <volodya327@gmail.com>, 2013. -# пан Володимир <volodya327@gmail.com>, 2013. +# Dmytro Dzubenko <dzubchikd@gmail.com>, 2012 +# skoptev <skoptev@ukr.net>, 2012 +# VicDeo <victor.dubiniuk@gmail.com>, 2012 +# volodya327 <volodya327@gmail.com>, 2013 +# volodya327 <volodya327@gmail.com>, 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 <volodya327@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <volodya327@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/uk/user_ldap.po b/l10n/uk/user_ldap.po index ef03d4d64b8bc26072e9554f27e2492930dc8e08..2f5feed2a8a17ccfd3c26f9fe97b784f50308505 100644 --- a/l10n/uk/user_ldap.po +++ b/l10n/uk/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: volodya327 <volodya327@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <volodya327@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/ur_PK/user_ldap.po b/l10n/ur_PK/user_ldap.po index 67a700b6057386b37f75e97af17d4b93e65513dc..70d82c44bdd4594957214c07a1b2497eb11ba142 100644 --- a/l10n/ur_PK/user_ldap.po +++ b/l10n/ur_PK/user_ldap.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-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 <owncloud-bot@tmit.eu>\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 <EMAIL@ADDRESS>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>Cảnh báo:</b> \"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 "" "<b>Warning:</b> 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 <sonnghit@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: -# <mattheu.9x@gmail.com>, 2012. -# <mattheu_9x@yahoo.com>, 2012. -# sao sang <saosangmo@yahoo.com>, 2013. -# SÆ¡n Nguyá»…n <sonnghit@gmail.com>, 2012. +# mattheu_9x <mattheu.9x@gmail.com>, 2012 +# mattheu_9x <mattheu.9x@gmail.com>, 2012 +# saosangm <saosangmo@yahoo.com>, 2013 +# SÆ¡n Nguyá»…n <sonnghit@gmail.com>, 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/vi/user_ldap.po b/l10n/vi/user_ldap.po index b74bd68ddc10f813cdcb3291300d4830ffbeff8e..49365ead0b679cf5b0b18414512da7ece346a63a 100644 --- a/l10n/vi/user_ldap.po +++ b/l10n/vi/user_ldap.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:23+0000\n" "Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <saosangmo@yahoo.com>\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 <owncloud-bot@tmit.eu>\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: # <bluehattree@126.com>, 2012. +# HO Gin Wang <kopisee@qq.com>, 2013. # marguerite su <i@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 <owncloud-bot@tmit.eu>\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 <a " "href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud " "community</a>." -msgstr "" +msgstr "å‡çº§å¤±è´¥ã€‚请å‘<a href=\"https://github.com/owncloud/core/issues\" target=\"_blank\">ownCloud社区</a>报告æ¤é—®é¢˜ã€‚" #: 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 <a " "href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" " "target=\"_blank\">documentation</a>." -msgstr "" +msgstr "è¦èŽ·å¾—大概如何é…置您的æœåŠ¡å™¨çš„相关信æ¯ï¼Œå‚è§<a href=\"http://doc.owncloud.org/server/5.0/admin_manual/installation.html\" target=\"_blank\">说明文档</a>。" #: templates/installation.php:44 msgid "Create an <strong>admin account</strong>" @@ -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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <kopisee@qq.com>, 2013. # marguerite su <i@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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." -msgstr "" +msgstr "<b>注æ„:</b>“SMB客户端â€æœªå®‰è£…。CIFS/SMB分享ä¸å¯ç”¨ã€‚请å‘您的系统管ç†å‘˜è¯·æ±‚安装该客户端。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 "<b>注æ„:</b>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 <i@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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <kopisee@qq.com>, 2013. # marguerite su <i@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 <owncloud-bot@tmit.eu>\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 <i@marguerite.su>, 2012. +# marguerite su <i@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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "请åŒå‡»<a href='%s'>安装å‘导</a>。" #: 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: # <bluehattree@126.com>, 2012. +# HO Gin Wang <kopisee@qq.com>, 2013. # marguerite su <i@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 <owncloud-bot@tmit.eu>\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 <a href='%s'>installation guides</a>." -msgstr "" +msgstr "请åŒå‡»<a href='%s'>安装å‘导</a>。" #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -358,40 +363,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 "Bug追踪者" #: templates/help.php:17 msgid "Commercial Support" -msgstr "" +msgstr "商业支æŒ" #: templates/personal.php:8 #, php-format msgid "You have used <strong>%s</strong> of the available <strong>%s</strong>" -msgstr "" +msgstr "您已使用<strong>%s</strong>/<strong>%s</strong>" #: 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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <wengxt@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <ccb3275@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <i@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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "<b>è¦å‘Šï¼š</b>“smbclient†尚未安装。CIFS/SMB åˆ†äº«æŒ‚è½½æ— æ³•å®žçŽ°ã€‚è¯·å’¨è¯¢ç³»ç»Ÿç®¡ç†å‘˜è¿›è¡Œå®‰è£…。" -#: lib/config.php:426 +#: lib/config.php:427 msgid "" "<b>Warning:</b> 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 <suiy02@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <ccb3275@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <cn.leoyang@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <appweb.cn@gmail.com>, 2012. -# marguerite su <i@marguerite.su>, 2013. -# <rainofchaos@gmail.com>, 2012. +# hanfeng <appweb.cn@gmail.com>, 2012 +# marguerite su <i@marguerite.su>, 2013 +# leonfeng <rainofchaos@gmail.com>, 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 <i@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 <owncloud-bot@tmit.eu>\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 <ccb3275@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_CN/user_ldap.po b/l10n/zh_CN/user_ldap.po index baa62ccec8b3561e3a53ad746b4828af150aeb5d..5b309314a96e57c0d1434b14967beb77bde90710 100644 --- a/l10n/zh_CN/user_ldap.po +++ b/l10n/zh_CN/user_ldap.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: marguerite su <i@marguerite.su>\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 <owncloud-bot@tmit.eu>\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 <wengxt@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <amanda.shuuemura@gmail.com>\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 <owncloud-bot@tmit.eu>\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 <dtsang29@hotmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <dtsang29@hotmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " diff --git a/l10n/zh_HK/user_ldap.po b/l10n/zh_HK/user_ldap.po index dfcf588c5748e6ef38fae06fcc4f5c5e9682b402..c939df9acc13a5ce24a5ee1b6e9d3cdd575f626c 100644 --- a/l10n/zh_HK/user_ldap.po +++ b/l10n/zh_HK/user_ldap.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-15 00:05+0100\n" -"PO-Revision-Date: 2013-03-14 02:50+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 <owncloud-bot@tmit.eu>\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 <owncloud-bot@tmit.eu>\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: -# <admin@alphacorp.tk>, 2013. -# Donahue Chuang <soshinwu@gmail.com>, 2012. -# <dw4dev@gmail.com>, 2012. -# Ming Yi Wu <mingi.wu@gmail.com>, 2012. -# <nfsmwlin@gmail.com>, 2013. -# Pellaeon Lin <nfsmwlin@gmail.com>, 2013. +# admachen <admachen@gmail.com>, 2013 +# Hydriz <admin@alphacorp.tk>, 2013 +# Donahue Chuang <soshinwu@gmail.com>, 2012 +# dw4dev <dw4dev@gmail.com>, 2012 +# Ming Yi Wu <mingi.wu@gmail.com>, 2012 +# pellaeon <nfsmwlin@gmail.com>, 2013 +# pellaeon <nfsmwlin@gmail.com>, 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 <admin@alphacorp.tk>\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen <admachen@gmail.com>\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: -# <admin@alphacorp.tk>, 2013. -# Donahue Chuang <soshinwu@gmail.com>, 2012. -# <dw4dev@gmail.com>, 2012. -# Eddy Chang <taiwanmambo@gmail.com>, 2012. -# <nfsmwlin@gmail.com>, 2013. -# Pellaeon Lin <nfsmwlin@gmail.com>, 2013. -# ywang <ywang1007@gmail.com>, 2012. +# admachen <admachen@gmail.com>, 2013 +# Hydriz <admin@alphacorp.tk>, 2013 +# Donahue Chuang <soshinwu@gmail.com>, 2012 +# dw4dev <dw4dev@gmail.com>, 2012 +# Eddy Chang <taiwanmambo@gmail.com>, 2012 +# pellaeon <nfsmwlin@gmail.com>, 2013 +# orinx <orinx@orinx.com>, 2013 +# pellaeon <nfsmwlin@gmail.com>, 2013 +# ywang <ywang1007@gmail.com>, 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 <admin@alphacorp.tk>\n" +"POT-Creation-Date: 2013-04-20 01:58+0200\n" +"PO-Revision-Date: 2013-04-19 04:10+0000\n" +"Last-Translator: admachen <admachen@gmail.com>\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 <admin@alphacorp.tk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <admin@alphacorp.tk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 "" "<b>Warning:</b> \"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 "" "<b>Warning:</b> 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 <nfsmwlin@gmail.com>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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: -# <admin@alphacorp.tk>, 2013. +# Hydriz <admin@alphacorp.tk>, 2013 +# pellaeon <nfsmwlin@gmail.com>, 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 <admin@alphacorp.tk>\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:10+0000\n" +"Last-Translator: pellaeon <nfsmwlin@gmail.com>\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 <admin@alphacorp.tk>\n" +"POT-Creation-Date: 2013-04-17 02:20+0200\n" +"PO-Revision-Date: 2013-04-17 00:22+0000\n" +"Last-Translator: I Robot <owncloud-bot@tmit.eu>\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 <admin@alphacorp.tk>, 2013. -# Pellaeon Lin <nfsmwlin@gmail.com>, 2013. -# <sofia168@livemail.tw>, 2012. -# <ywang1007+transifex@gmail.com>, 2012. -# ywang <ywang1007@gmail.com>, 2012. +# Hydriz <admin@alphacorp.tk>, 2013 +# pellaeon <nfsmwlin@gmail.com>, 2013 +# sofiasu <sofia168@livemail.tw>, 2012 +# ywang <ywang1007@gmail.com>, 2012 +# ywang <ywang1007@gmail.com>, 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 <admin@alphacorp.tk>\n" +"POT-Creation-Date: 2013-04-20 01:59+0200\n" +"PO-Revision-Date: 2013-04-19 09:00+0000\n" +"Last-Translator: pellaeon <nfsmwlin@gmail.com>\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: -# <admin@alphacorp.tk>, 2013. -# Donahue Chuang <soshinwu@gmail.com>, 2012. -# <dw4dev@gmail.com>, 2012. -# <nfsmwlin@gmail.com>, 2013. -# Pellaeon Lin <nfsmwlin@gmail.com>, 2013. -# <sy6614@yahoo.com.hk>, 2012. -# <tseronnie@ymail.com>, 2013. -# <weiyu871@ms14.url.com.tw>, 2012. -# <wu0809@msn.com>, 2012. -# ywang <ywang1007@gmail.com>, 2012. +# Hydriz <admin@alphacorp.tk>, 2013 +# Donahue Chuang <soshinwu@gmail.com>, 2012 +# dw4dev <dw4dev@gmail.com>, 2012 +# pellaeon <nfsmwlin@gmail.com>, 2013 +# orinx <orinx@orinx.com>, 2013 +# pellaeon <nfsmwlin@gmail.com>, 2013 +# sy6614 <sy6614@yahoo.com.hk>, 2012 +# ronnietse <tseronnie@ymail.com>, 2013 +# weiyu <weiyu871@ms14.url.com.tw>, 2012 +# Jeff5555 <wu0809@msn.com>, 2012 +# ywang <ywang1007@gmail.com>, 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 <admin@alphacorp.tk>\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 <owncloud-bot@tmit.eu>\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 "è«‹åƒè€ƒ<a href='%s'>安è£æŒ‡å—</a>。" #: 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 <a href=\"http://ownCloud.org/contact\" " "target=\"_blank\">ownCloud community</a>, the <a " @@ -411,7 +416,7 @@ msgstr "ä½ çš„å¯†ç¢¼å·²æ›´æ”¹" #: templates/personal.php:39 msgid "Unable to change your password" -msgstr "ç„¡æ³•è®Šæ›´ä½ çš„å¯†ç¢¼" +msgstr "無法變更您的密碼" #: templates/personal.php:40 msgid "Current password" @@ -447,7 +452,7 @@ msgstr "é›»å郵件" #: templates/personal.php:72 msgid "Your email address" -msgstr "ä½ çš„é›»å郵件信箱" +msgstr "您的電å郵件信箱" #: templates/personal.php:73 msgid "Fill in an email address to enable password recovery" @@ -475,7 +480,7 @@ msgstr "登入å稱" #: templates/users.php:32 msgid "Create" -msgstr "å‰µé€ " +msgstr "建立" #: templates/users.php:35 msgid "Default Storage" diff --git a/l10n/zh_TW/user_ldap.po b/l10n/zh_TW/user_ldap.po index e5f5c2a0e985e867587fe3680696f42f0c63b595..e777005a3cd0e442d6edb25ebe0453e92dadebfc 100644 --- a/l10n/zh_TW/user_ldap.po +++ b/l10n/zh_TW/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 <owncloud-bot@tmit.eu>\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 <admin@alphacorp.tk>\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 <owncloud-bot@tmit.eu>\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 @@ +<?php $TRANSLATIONS = array( +"Help" => "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 <a href='%s'>installation guides</a>." => "Gwiriwch y <a href='%s'>canllawiau gosod</a> 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 <a href=\"%s\">more information</a>" => "%s ar gael. <a href=\"%s\">Mwy o wybodaeth</a>", +"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 <a href='%s'>installation guides</a>." => "Bitte prüfe die <a href='%s'>Instalationsanleitungen</a>.", +"Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfe die <a href='%s'>Installationsanleitungen</a>.", "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 <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Instalationsanleitungen</a>.", +"Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.", "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 <a href='%s'>installation guides</a>." => "ΕλÎγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>.", "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 <a href='%s'>installation guides</a>." => "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.", "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 <a href=\"%s\">more information</a>" => "%s on saadaval. Vaata <a href=\"%s\">lisainfot</a>", "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 <a href='%s'>installation guides</a>." => "لطÙاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید.", "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 @@ +<?php $TRANSLATIONS = array( +"Settings" => "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 <a href='%s'>installation guides</a>." => "Lue tarkasti <a href='%s'>asennusohjeet</a>.", "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 @@ <?php $TRANSLATIONS = array( -"Help" => "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 <a href='%s'>installation guides</a>." => "Silakan periksa ulang <a href='%s'>panduan instalasi</a>.", "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 <a href=\"%s\">more information</a>" => "%s tersedia. dapatkan <a href=\"%s\"> info lebih lanjut</a>", +"%s is available. Get <a href=\"%s\">more information</a>" => "%s tersedia. Dapatkan <a href=\"%s\">info lebih lanjut</a>", "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 <a href='%s'>installation guides</a>." => "<a href='%s'>インストールガイド</a>をよã確èªã—ã¦ãã ã•ã„。", -"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 <a href='%s'>installation guides</a>." => "გთხáƒáƒ•áƒ— გáƒáƒ“áƒáƒáƒ—ვáƒáƒšáƒ˜áƒ”რáƒáƒ— <a href='%s'>ინსტáƒáƒšáƒáƒªáƒ˜áƒ˜áƒ¡ გზáƒáƒ›áƒ™áƒ•áƒšáƒ”ვი</a>.", "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 <a href=\"%s\">more information</a>" => "%s ხელმისáƒáƒ¬áƒ•áƒ“áƒáƒ›áƒ˜áƒ. მიიღეთ <a href=\"%s\">უფრრმეტი ინფáƒáƒ მáƒáƒªáƒ˜áƒ</a>", "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 <a href='%s'>installation guides</a>." => "Preverite <a href='%s'>navodila namestitve</a>.", "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 @@ +<?php $TRANSLATIONS = array( +"Help" => "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 <a href='%s'>installation guides</a>." => "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>.", +"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 <a href=\"%s\">more information</a>" => "%s është i disponueshëm. <a href=\"%s\">Informohuni këtu</a>", +"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 <a href='%s'>installation guides</a>." => "Погледајте <a href='%s'>водиче за инÑталацију</a>.", "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 <a href='%s'>installation guides</a>." => "Lütfen <a href='%s'>kurulum kılavuzlarını</a> 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 <a href='%s'>installation guides</a>." => "请åŒå‡»<a href='%s'>安装å‘导</a>。", "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 <a href='%s'>installation guides</a>." => "è«‹åƒè€ƒ<a href='%s'>安è£æŒ‡å—</a>。", "seconds ago" => "幾秒å‰", @@ -38,6 +50,6 @@ "years ago" => "幾年å‰", "%s is available. Get <a href=\"%s\">more information</a>" => "%s 已經å¯ç”¨ã€‚å–å¾— <a href=\"%s\">更多資訊</a>", "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 @@ +<?php +/** + * ownCloud - VObject String Property + * + * This class adds escaping of simple string properties. + * + * @author Thomas Tanghus + * @author Evert Pot (http://www.rooftopsolutions.nl/) + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + * + */ + +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= $('<img class="icon"/>').attr({ src: entry.icon}); var a=$('<a></a>').attr('href', entry.href); - a.text(entry.name); + var filename=$('<span></span>') + 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=$('<td/>'); - 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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "طوّر من قبل <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud مجتمع</a>, الـ <a href=\"https://github.com/owncloud\" target=\"_blank\">النص المصدري</a> مرخص بموجب <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">رخصة Ø£Ùيرو العمومية</abbr></a>.", "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 <a href='%s'>installation guides</a>." => "ÐœÐ¾Ð»Ñ Ð½Ð°Ð¿Ñ€Ð°Ð²ÐµÑ‚Ðµ повторна Ñправка Ñ <a href='%s'>ръководÑтвото за инÑталиране</a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "তৈলী করেছেন <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud সমà§à¦ªà§à¦°à¦¦à¦¾à§Ÿ</a>, যার <a href=\"https://github.com/owncloud\" target=\"_blank\"> উৎস কোডটি <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> à¦à¦° অধীনে লাইসেনà§à¦¸à¦•à§ƒà¦¤à¥¤", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desenvolupat per la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitat ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">codi font</a> té llicència <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Vyvinuto <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencován pod <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 @@ +<?php $TRANSLATIONS = array( +"Authentication error" => "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 <a href='%s'>installation guides</a>." => "Gwiriwch y <a href='%s'>canllawiau gosod</a> 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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Udviklet af <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownClouds community</a>, og <a href=\"https://github.com/owncloud\" target=\"_blank\">kildekoden</a> er underlagt licensen <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Instalationsanleitungen</a>.", +"Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>, der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 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 <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Instalationsanleitungen</a>.", +"Please double check the <a href='%s'>installation guides</a>." => "Bitte prüfen Sie die <a href='%s'>Installationsanleitungen</a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Entwickelt von der <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-Community</a>. Der <a href=\"https://github.com/owncloud\" target=\"_blank\">Quellcode</a> ist unter der <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 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 <a href='%s'>installation guides</a>." => "ΕλÎγξτε ξανά τις <a href='%s'>οδηγίες εγκατάστασης</a>.", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "ΑναπτÏχθηκε από την <a href=\"http://ownCloud.org/contact\" target=\"_blank\">κοινότητα ownCloud</a>, ο <a href=\"https://github.com/owncloud\" target=\"_blank\">πηγαίος κώδικας</a> είναι υπό άδεια χÏήσης <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Ellaborita de la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunumo de ownCloud</a>, la <a href=\"https://github.com/owncloud\" target=\"_blank\">fontokodo</a> publikas laÅ la permesilo <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desarrollado por la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidad ownCloud</a>, el <a href=\"https://github.com/owncloud\" target=\"_blank\">código fuente</a> está bajo licencia <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "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 <a href='%s'>installation guides</a>." => "Palun tutvu veelkord <a href='%s'>paigalduse juhenditega</a>.", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Arendatud <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kogukonna</a> poolt. <a href=\"https://github.com/owncloud\" target=\"_blank\">Lähtekood</a> on avaldatud ja kaetud <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 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 <strong>%s</strong> of the available <strong>%s</strong>" => "Kasutad <strong>%s</strong> saadavalolevast <strong>%s</strong>", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud komunitateak</a> garatuta, <a href=\"https://github.com/owncloud\" target=\"_blank\">itubruru kodea</a><a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr> lizentziarekin banatzen da</a>.", "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 <a href='%s'>installation guides</a>." => "لطÙاً دوباره <a href='%s'>راهنمای نصب</a>را بررسی کنید.", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "توسعه یاÙته به وسیله ÛŒ <a href=\"http://ownCloud.org/contact\" target=\"_blank\">انجمن ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">کد اصلی</a> مجاز زیر گواهی <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Add your App" => "برنامه خود را بیاÙزایید", "More Apps" => "برنامه های بیشتر", "Select an App" => "یک برنامه انتخاب کنید", "See application page at apps.owncloud.com" => "صÙØÙ‡ این اٌپ را در apps.owncloud.com ببینید", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-مجاز از طر٠<span class=\"author\"></span>", "Update" => "به روز رسانی", "User Documentation" => "مستندات کاربر", "Administrator Documentation" => "مستندات مدیر", @@ -53,6 +74,8 @@ "Forum" => "انجمن", "Bugtracker" => "ردیاب باگ ", "Commercial Support" => "پشتیبانی تجاری", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "شما استÙاده کردید از <strong>%s</strong> از میزان در دسترس <strong>%s</strong>", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Kehityksestä on vastannut <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud-yhteisö</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">lähdekoodi</a> on julkaistu lisenssin <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Développé par la <a href=\"http://ownCloud.org/contact\" target=\"_blank\">communauté ownCloud</a>, le <a href=\"https://github.com/owncloud\" target=\"_blank\">code source</a> est publié sous license <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desenvolvido pola <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está baixo a licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "פותח על די <a href=\"http://ownCloud.org/contact\" target=\"_blank\">קהילתownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">קוד המקור</a> מוגן ברישיון <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "A programot az <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud közösség</a> fejleszti. A <a href=\"https://github.com/owncloud\" target=\"_blank\">forráskód</a> az <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 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 @@ <?php $TRANSLATIONS = array( -"Authentication error" => "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 <a href='%s'>installation guides</a>." => "Silakan periksa ulang <a href='%s'>panduan instalasi</a>.", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Dikembangkan oleh <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitas ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kode sumber</a> dilisensikan di bawah <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", +"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", +"<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-dilisensikan oleh <span class=\"author\"></span>", +"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 <strong>%s</strong> of the available <strong>%s</strong>" => "Anda telah menggunakan <strong>%s</strong> dari total <strong>%s</strong>", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Þróað af <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud samfélaginu</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">forrita kóðinn</a> er skráðu með <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Sviluppato dalla <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunità di ownCloud</a>, il <a href=\"https://github.com/owncloud\" target=\"_blank\">codice sorgente</a> è rilasciato nei termini della licenza <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>ã«ã‚ˆã‚Šé–‹ç™ºã•ã‚Œã¦ã„ã¾ã™ã€<a href=\"https://github.com/owncloud\" target=\"_blank\">ソースコード</a>ライセンスã¯ã€<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ライセンスã«ã‚ˆã‚Šæä¾›ã•ã‚Œã¦ã„ã¾ã™ã€‚", +"Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud コミュニティ</a>ã«ã‚ˆã‚Šé–‹ç™ºã•ã‚Œã¦ã„ã¾ã™ã€‚ <a href=\"https://github.com/owncloud\" target=\"_blank\">ソースコード</a>ã¯ã€<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ライセンスã®ä¸‹ã§æä¾›ã•ã‚Œã¦ã„ã¾ã™ã€‚", "Add your App" => "ã‚¢ãƒ—ãƒªã‚’è¿½åŠ ", "More Apps" => "ã•ã‚‰ã«ã‚¢ãƒ—リを表示", "Select an App" => "アプリをé¸æŠžã—ã¦ãã ã•ã„", @@ -81,8 +82,8 @@ "Bugtracker" => "ãƒã‚°ãƒˆãƒ©ãƒƒã‚«ãƒ¼", "Commercial Support" => "コマーシャルサãƒãƒ¼ãƒˆ", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "ç¾åœ¨ã€<strong>%s</strong> / <strong>%s</strong> を利用ã—ã¦ã„ã¾ã™", -"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 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ”ბის სირვერჩáƒáƒ›áƒáƒ˜áƒ¢áƒ•áƒ˜áƒ თრ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 <a href='%s'>installation guides</a>." => "გთხáƒáƒ•áƒ— გáƒáƒ“áƒáƒáƒ—ვáƒáƒšáƒ˜áƒ”რáƒáƒ— <a href='%s'>ინსტáƒáƒšáƒáƒªáƒ˜áƒ˜áƒ¡ გზáƒáƒ›áƒ™áƒ•áƒšáƒ”ვი</a>.", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "წáƒáƒ მáƒáƒ”ბულირ<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>–ის მიერ. <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> ვრცელდებრ<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> ლიცენზიის ფáƒáƒ გლებში.", "Add your App" => "დáƒáƒáƒ›áƒáƒ¢áƒ” შენი áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ", "More Apps" => "უფრრმეტი áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ”ბი", "Select an App" => "áƒáƒ˜áƒ ჩიეთ áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ", "See application page at apps.owncloud.com" => "ნáƒáƒ®áƒ”თ áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ˜áƒ¡ გვერდი apps.owncloud.com –ზე", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-ლიცენსირებულირ<span class=\"author\"></span>", "Update" => "გáƒáƒœáƒáƒ®áƒšáƒ”ბáƒ", +"User Documentation" => "მáƒáƒ›áƒ®áƒ›áƒáƒ ებლის დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ", +"Administrator Documentation" => "áƒáƒ“მინისტრáƒáƒ¢áƒáƒ ის დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ", +"Online Documentation" => "áƒáƒœáƒšáƒáƒ˜áƒœ დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ", +"Forum" => "ფáƒáƒ უმი", +"Bugtracker" => "ბáƒáƒ’თრექერი", +"Commercial Support" => "კáƒáƒ›áƒ”რციული მხáƒáƒ დáƒáƒáƒ”რáƒ", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "თქვენ გáƒáƒ›áƒáƒ§áƒ”ნებული გáƒáƒ¥áƒ•áƒ— <strong>%s</strong> –ი –<strong>%s<strong>–დáƒáƒœ", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 커뮤니티</a>ì— ì˜í•´ì„œ 개발ë˜ì—ˆìŠµë‹ˆë‹¤. <a href=\"https://github.com/owncloud\" target=\"_blank\">ì›ë³¸ 코드</a>는 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>ì— ë”°ë¼ ì‚¬ìš©ì´ í—ˆê°€ë©ë‹ˆë‹¤.", "Add your App" => "앱 추가", @@ -42,6 +43,7 @@ "Bugtracker" => "버그 트래커", "Commercial Support" => "ìƒì—…ìš© 지ì›", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "현재 공간 <strong>%s</strong>/<strong>%s</strong>ì„(를) 사용 중입니다", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "IzstrÄdÄjusi<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kopiena</a>,<a href=\"https://github.com/owncloud\" target=\"_blank\">pirmkodu</a>kurÅ¡ ir licencÄ“ts zem <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Развој од <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud заедницата</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">изворниот код</a> е лиценциран Ñо<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Ontwikkeld door de <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud gemeenschap</a>, de <a href=\"https://github.com/owncloud\" target=\"_blank\">bron code</a> is gelicenseerd onder de <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Stworzone przez <a href=\"http://ownCloud.org/contact\" target=\"_blank\">spoÅ‚eczność ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">kod źródÅ‚owy</a> na licencji <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desenvolvido pela <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o <a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está licenciado sob <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Desenvolvido pela <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunidade ownCloud</a>, o<a href=\"https://github.com/owncloud\" target=\"_blank\">código fonte</a> está licenciado sob a <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Dezvoltat de the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">comunitatea ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">codul sursă</a> este licenÈ›iat sub <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "РазрабатываетÑÑ <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ÑообщеÑтвом ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">иÑходный код</a> доÑтупен под лицензией <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href='%s'>installation guides</a>." => "ПожалуйÑта проверте дважды <a href='%s'>гиды по уÑтановке</a>.", "More" => "Подробнее", +"Less" => "Меньше", "Version" => "ВерÑиÑ", "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Разработанный <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "නිපදන ලද්දේ <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud සමà·à¶¢à¶ºà·™à¶±à·Š</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">මුල් කේà¶à¶º </a>ලයිසන්ස් කර ඇà¶à·Šà¶à·š <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> යටà¶à·š.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Vyvinuté <a href=\"http://ownCloud.org/contact\" target=\"_blank\">komunitou ownCloud</a>,<a href=\"https://github.com/owncloud\" target=\"_blank\">zdrojový kód</a> je licencovaný pod <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href='%s'>installation guides</a>." => "Preverite <a href='%s'>navodila namestitve</a>.", @@ -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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Programski paket razvija <a href=\"http://ownCloud.org/contact\" target=\"_blank\">skupnost ownCloud</a>. <a href=\"https://github.com/owncloud\" target=\"_blank\">Izvorna koda</a> je objavljena pod pogoji <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"SploÅ¡nega javnega dovoljenja Affero\">AGPL</abbr></a>.", "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 @@ +<?php $TRANSLATIONS = array( +"Authentication error" => "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 <a href='%s'>installation guides</a>." => "Ju lutemi kontrolloni mirë <a href='%s'>shoqëruesin e instalimit</a>.", +"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 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "Грешка приликом учитавања ÑпиÑка из Складишта Програма", "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 <a href='%s'>installation guides</a>." => "Погледајте <a href='%s'>водиче за инÑталацију</a>.", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Развијају <a href=\"http://ownCloud.org/contact\" target=\"_blank\">Оунклауд (ownCloud) заједница</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">изворни код</a> је издат под <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Ðферо Јавном Лиценцом (Affero General Public License)\">ÐГПЛ лиценцом</abbr></a>.", "Add your App" => "Додајте ваш програм", "More Apps" => "Више програма", @@ -31,7 +69,14 @@ "See application page at apps.owncloud.com" => "Погледајте Ñтраницу Ñа програмима на apps.owncloud.com", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>-лиценцирао <span class=\"author\"></span>", "Update" => "Ðжурирај", +"User Documentation" => "КориÑничка документација", +"Administrator Documentation" => "ÐдминиÑтраторÑка документација", +"Online Documentation" => "Мрежна документација", +"Forum" => "Форум", +"Bugtracker" => "Праћење грешака", +"Commercial Support" => "Комерцијална подршка", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "ИÑкориÑтили Ñте <strong>%s</strong> од дозвољених <strong>%s</strong>", +"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 <a href='%s'>installation guides</a>." => "Var god kontrollera <a href='%s'>installationsguiden</a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Utvecklad av <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud kommunity</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">källkoden</a> är licenserad under <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "Add your App" => "Lägg till din applikation", @@ -63,6 +67,7 @@ "Bugtracker" => "Bugtracker", "Commercial Support" => "Kommersiell support", "You have used <strong>%s</strong> of the available <strong>%s</strong>" => "Du har använt <strong>%s</strong> av tillgängliga <strong>%s</strong>", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Developed by the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "พัฒนาโดย the <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ชุมชนผู้ใช้งาน ownCloud</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">ซà¸à¸£à¹Œà¸ªà¹‚ค้ด</a>à¸à¸¢à¸¹à¹ˆà¸ ายใต้สัà¸à¸à¸²à¸à¸™à¸¸à¸à¸²à¸•à¸‚à¸à¸‡ <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "GeliÅŸtirilen Taraf<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is altında lisanslanmıştır <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Розроблено <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud громадою</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">вихідний код</a> має ліцензію <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 @@ <?php $TRANSLATIONS = array( +"Error" => "ایرر", "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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "Äược phát triển bởi <a href=\"http://ownCloud.org/contact\" target=\"_blank\">cá»™ng đồng ownCloud</a>, <a href=\"https://github.com/owncloud\" target=\"_blank\">mã nguồn </a> đã được cấp phép theo chuẩn <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>.", "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 @@ <?php $TRANSLATIONS = array( "Unable to load list from App Store" => "ä¸èƒ½ä»Ž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 <a href='%s'>installation guides</a>." => "请åŒå‡»<a href='%s'>安装å‘导</a>。", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "ç”± <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社区</a>å¼€å‘,<a href=\"https://github.com/owncloud\" target=\"_blank\">sæºä»£ç </a> 以 <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a> 许å¯åè®®å‘布。", "Add your App" => "æ·»åŠ ä½ çš„åº”ç”¨ç¨‹åº", "More Apps" => "更多应用", @@ -32,17 +64,39 @@ "See application page at apps.owncloud.com" => "在owncloud.com上查看应用程åº", "<span class=\"licence\"></span>-licensed by <span class=\"author\"></span>" => "<span class=\"licence\"></span>授æƒåè®® <span class=\"author\"></span>", "Update" => "æ›´æ–°", +"User Documentation" => "用户文档", +"Administrator Documentation" => "管ç†å‘˜æ–‡æ¡£", +"Online Documentation" => "在线说明文档", +"Forum" => "论å›", +"Bugtracker" => "Bug追踪者", +"Commercial Support" => "商业支æŒ", +"You have used <strong>%s</strong> of the available <strong>%s</strong>" => "您已使用<strong>%s</strong>/<strong>%s</strong>", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "ç”±<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud社区</a>å¼€å‘, <a href=\"https://github.com/owncloud\" target=\"_blank\">æºä»£ç </a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>许å¯è¯ä¸‹å‘布。", "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 <a href='%s'>installation guides</a>." => "è«‹åƒè€ƒ<a href='%s'>安è£æŒ‡å—</a>。", +"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 <a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud community</a>, the <a href=\"https://github.com/owncloud\" target=\"_blank\">source code</a> is licensed under the <a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>." => "ç”±<a href=\"http://ownCloud.org/contact\" target=\"_blank\">ownCloud 社å€</a>開發,<a href=\"https://github.com/owncloud\" target=\"_blank\">æºä»£ç¢¼</a>在<a href=\"http://www.gnu.org/licenses/agpl-3.0.html\" target=\"_blank\"><abbr title=\"Affero General Public License\">AGPL</abbr></a>許å¯è‰ä¸‹ç™¼å¸ƒã€‚", "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;?> <?php p($entry->message);?> </td> <td> - <?php p(OC_Util::formatDate($entry->time));?> + <?php if(is_int($entry->time)){ + p(OC_Util::formatDate($entry->time)); + } else { + p($entry->time); + }?> </td> </tr> <?php endforeach;?> @@ -230,7 +234,7 @@ endfor;?> <fieldset class="personalblock"> <legend><strong><?php p($l->t('Version'));?></strong></legend> <strong>ownCloud</strong> <?php p(OC_Util::getVersionString()); ?> <?php p(OC_Util::getEditionString()); ?> - (<?php p(OC_Updater::ShowUpdatingHint()); ?>)<br/> + (<?php print_unescaped(OC_Updater::ShowUpdatingHint()); ?>)<br/> <?php print_unescaped($l->t('Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.')); ?> </fieldset> 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']) { <div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div> <div id="passworderror"><?php echo $l->t('Unable to change your password');?></div> <input type="password" id="pass1" name="oldpassword" placeholder="<?php echo $l->t('Current password');?>" /> - <input type="password" id="pass2" name="password" + <input type="password" id="pass2" name="new-password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#personal-show" /> <input type="checkbox" id="personal-show" name="show" /><label for="personal-show"></label> <input id="passwordbutton" type="submit" value="<?php echo $l->t('Change 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); <?php p($_['default_quota']);?> </option> <?php endif;?> - <option value='other'> + <option data-new value='other'> <?php p($l->t('Other'));?> ... </option> 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 @@ +<?php +/** + * Copyright (c) 2013 Thomas Tanghus (thomas@tanghus.net) + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_VObject extends PHPUnit_Framework_TestCase { + + public function setUp() { + Sabre\VObject\Property::$classMap['SUMMARY'] = 'OC\VObject\StringProperty'; + } + + function testStringProperty() { + $property = Sabre\VObject\Property::create('SUMMARY', 'Escape;this,please'); + $this->assertEquals("SUMMARY:Escape\;this\,please\r\n", $property->serialize()); + } +} \ No newline at end of file