diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 8548fc95dd..d224e79d01 100644 --- a/apps/files/ajax/newfile.php +++ b/apps/files/ajax/newfile.php @@ -54,6 +54,8 @@ function progress($notification_code, $severity, $message, $message_code, $bytes } } +$target = $dir.'/'.$filename; + if($source) { if(substr($source, 0, 8)!='https://' and substr($source, 0, 7)!='http://') { OCP\JSON::error(array("data" => array( "message" => "Not a valid source" ))); @@ -62,7 +64,6 @@ if($source) { $ctx = stream_context_create(null, array('notification' =>'progress')); $sourceStream=fopen($source, 'rb', false, $ctx); - $target=$dir.'/'.$filename; $result=\OC\Files\Filesystem::file_put_contents($target, $sourceStream); if($result) { $meta = \OC\Files\Filesystem::getFileInfo($target); @@ -75,20 +76,32 @@ if($source) { $eventSource->close(); exit(); } else { + $success = false; + if (!$content) { + $templateManager = OC_Helper::getFileTemplateManager(); + $mimeType = OC_Helper::getMimeType($target); + $content = $templateManager->getTemplate($mimeType); + } + if($content) { - if(\OC\Files\Filesystem::file_put_contents($dir.'/'.$filename, $content)) { - $meta = \OC\Files\Filesystem::getFileInfo($dir.'/'.$filename); - $id = $meta['fileid']; - OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id))); - exit(); - } - }elseif(\OC\Files\Filesystem::touch($dir . '/' . $filename)) { - $meta = \OC\Files\Filesystem::getFileInfo($dir.'/'.$filename); + $success = \OC\Files\Filesystem::file_put_contents($target, $content); + } else { + $success = \OC\Files\Filesystem::touch($target); + } + + if($success) { + $meta = \OC\Files\Filesystem::getFileInfo($target); $id = $meta['fileid']; - OCP\JSON::success(array("data" => array('content'=>$content, 'id' => $id, 'mime' => $meta['mimetype']))); + $mime = $meta['mimetype']; + $size = $meta['size']; + OCP\JSON::success(array('data' => array( + 'id' => $id, + 'mime' => $mime, + 'size' => $size, + 'content' => $content, + ))); exit(); } } - OCP\JSON::error(array("data" => array( "message" => "Error when creating the file" ))); diff --git a/apps/files/appinfo/app.php b/apps/files/appinfo/app.php index 99739cb4ce..aa839b81d1 100644 --- a/apps/files/appinfo/app.php +++ b/apps/files/appinfo/app.php @@ -5,11 +5,11 @@ $l = OC_L10N::get('files'); OCP\App::registerAdmin('files', 'admin'); -OCP\App::addNavigationEntry( array( "id" => "files_index", - "order" => 0, - "href" => OCP\Util::linkTo( "files", "index.php" ), - "icon" => OCP\Util::imagePath( "core", "places/files.svg" ), - "name" => $l->t("Files") )); +OCP\App::addNavigationEntry(array("id" => "files_index", + "order" => 0, + "href" => OCP\Util::linkTo("files", "index.php"), + "icon" => OCP\Util::imagePath("core", "places/files.svg"), + "name" => $l->t("Files"))); OC_Search::registerProvider('OC_Search_Provider_File'); @@ -21,3 +21,7 @@ OC_Search::registerProvider('OC_Search_Provider_File'); \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook'); \OCP\BackgroundJob::addRegularTask('\OC\Files\Cache\BackgroundWatcher', 'checkNext'); + +$templateManager = OC_Helper::getFileTemplateManager(); +$templateManager->registerTemplate('text/html', 'core/templates/filetemplates/template.html'); + diff --git a/apps/files/css/files.css b/apps/files/css/files.css index 86fb0dc604..50aa58b53d 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -147,14 +147,14 @@ a.action>img { max-height:16px; max-width:16px; vertical-align:text-bottom; } display:none; } #fileList tr:hover a.action, #fileList a.action.permanent { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=.5)"; - filter: alpha(opacity=.5); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=50); opacity: .5; display:inline; } #fileList tr:hover a.action:hover { - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)"; - filter: alpha(opacity=1); + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100); opacity: 1; display:inline; } diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 942a07dfcc..0eddd7e9cd 100644 --- a/apps/files/js/file-upload.js +++ b/apps/files/js/file-upload.js @@ -1,343 +1,345 @@ $(document).ready(function() { - file_upload_param = { - 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) { + file_upload_param = { + 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 - } - - var totalSize=0; - $.each(data.originalFiles, function(i,file){ - totalSize+=file.size; - }); - - 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 - } - - // 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] = {}; - } - 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 { - // HTTP connection problem - $('#notification').text(data.errorThrown); - } - $('#notification').fadeIn(); - //hide notification after 5 sec - setTimeout(function() { - $('#notification').fadeOut(); - }, 5000); - } - 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 { - delete uploadingFiles[filename]; - } - - }, - /** - * 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(); - } - } - var file_upload_handler = function() { - $('#file_upload_start').fileupload(file_upload_param); - }; - - - - if ( document.getElementById('data-upload-form') ) { - $(file_upload_handler); - } - $.assocArraySize = function(obj) { - // http://stackoverflow.com/a/6700/11236 - var size = 0, key; - for (key in obj) { - if (obj.hasOwnProperty(key)) size++; - } - return size; - }; - - // warn user not to leave the page while upload is in progress - $(window).bind('beforeunload', function(e) { - if ($.assocArraySize(uploadingFiles) > 0) - return t('files','File upload is in progress. Leaving the page now will cancel the upload.'); - }); - - //add multiply file upload attribute to all browsers except konqueror (which crashes when it's used) - if(navigator.userAgent.search(/konqueror/i)==-1){ - $('#file_upload_start').attr('multiple','multiple') - } - - //if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder - var crumb=$('div.crumb').first(); - while($('div.controls').height()>40 && crumb.next('div.crumb').length>0){ - crumb.children('a').text('...'); - crumb=crumb.next('div.crumb'); - } - //if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent - var crumb=$('div.crumb').first(); - var next=crumb.next('div.crumb'); - while($('div.controls').height()>40 && next.next('div.crumb').length>0){ - crumb.remove(); - crumb=next; - next=crumb.next('div.crumb'); - } - //still not enough, start shorting down the current folder name - var crumb=$('div.crumb>a').last(); - while($('div.controls').height()>40 && crumb.text().length>6){ - var text=crumb.text() - text=text.substr(0,text.length-6)+'...'; - crumb.text(text); - } - - $(document).click(function(){ - $('#new>ul').hide(); - $('#new').removeClass('active'); - $('#new li').each(function(i,element){ - if($(element).children('p').length==0){ - $(element).children('form').remove(); - $(element).append('

'+$(element).data('text')+'

'); - } - }); - }); - $('#new li').click(function(){ - if($(this).children('p').length==0){ - return; - } - - $('#new li').each(function(i,element){ - if($(element).children('p').length==0){ - $(element).children('form').remove(); - $(element).append('

'+$(element).data('text')+'

'); - } - }); - - var type=$(this).data('type'); - var text=$(this).children('p').text(); - $(this).data('text',text); - $(this).children('p').remove(); - var form=$('
'); - var input=$(''); - form.append(input); - $(this).append(form); - input.focus(); - form.submit(function(event){ - event.stopPropagation(); - event.preventDefault(); - var newname=input.val(); - if(type == 'web' && newname.length == 0) { - OC.Notification.show(t('files', 'URL cannot be empty.')); - return false; - } else if (type != 'web' && !Files.isFileNameValid(newname)) { - return false; - } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { - OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by ownCloud')); - return false; - } - if (FileList.lastAction) { - FileList.lastAction(); - } - var name = getUniqueName(newname); - if (newname != name) { - FileList.checkName(name, newname, true); - var hidden = true; - } else { - var hidden = false; - } - switch(type){ - case 'file': - $.post( - OC.filePath('files','ajax','newfile.php'), - {dir:$('#dir').val(),filename:name}, - function(result){ - if (result.status == 'success') { - var date=new Date(); - FileList.addFile(name,0,date,false,hidden); - var tr=$('tr').filterAttr('data-file',name); - tr.attr('data-mime',result.data.mime); - tr.attr('data-id', result.data.id); - getMimeIcon(result.data.mime,function(path){ - tr.find('td.filename').attr('style','background-image:url('+path+')'); - }); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + 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 } - } - ); - break; - case 'folder': - $.post( - OC.filePath('files','ajax','newfolder.php'), - {dir:$('#dir').val(),foldername:name}, - function(result){ - if (result.status == 'success') { - var date=new Date(); - FileList.addDir(name,0,date,hidden); - var tr=$('tr').filterAttr('data-file',name); - tr.attr('data-id', result.data.id); - } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); - } - } - ); - break; - case 'web': - if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ - name='http://'+name; - } - var localName=name; - if(localName.substr(localName.length-1,1)=='/'){//strip / - localName=localName.substr(0,localName.length-1) - } - if(localName.indexOf('/')){//use last part of url - localName=localName.split('/').pop(); - } else { //or the domain - localName=(localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.',''); - } - localName = getUniqueName(localName); - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - } else { - $('#uploadprogressbar').progressbar({value:0}); - $('#uploadprogressbar').fadeIn(); - } - var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); - eventSource.listen('progress',function(progress){ - //IE < 10 does not fire the necessary events for the progress bar. - if($('html.lte9').length > 0) { - } else { + var totalSize=0; + $.each(data.originalFiles, function(i,file){ + totalSize+=file.size; + }); + + 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 + } + + // 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] = {}; + } + 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 { + // HTTP connection problem + $('#notification').text(data.errorThrown); + } + $('#notification').fadeIn(); + //hide notification after 5 sec + setTimeout(function() { + $('#notification').fadeOut(); + }, 5000); + } + 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); - } - }); - eventSource.listen('success',function(data){ - var mime=data.mime; - var size=data.size; - var id=data.id; - $('#uploadprogressbar').fadeOut(); - var date=new Date(); - FileList.addFile(localName,size,date,false,hidden); - var tr=$('tr').filterAttr('data-file',localName); - tr.data('mime',mime).data('id',id); - tr.attr('data-id', id); - getMimeIcon(mime,function(path){ - tr.find('td.filename').attr('style','background-image:url('+path+')'); - }); - }); - eventSource.listen('error',function(error){ - $('#uploadprogressbar').fadeOut(); - alert(error); - }); - break; - } - var li=form.parent(); - form.remove(); - li.append('

'+li.data('text')+'

'); - $('#new>a').click(); + }, + /** + * 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 { + delete uploadingFiles[filename]; + } + + }, + /** + * 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(); + } + } + var file_upload_handler = function() { + $('#file_upload_start').fileupload(file_upload_param); + }; + + + + if ( document.getElementById('data-upload-form') ) { + $(file_upload_handler); + } + $.assocArraySize = function(obj) { + // http://stackoverflow.com/a/6700/11236 + var size = 0, key; + for (key in obj) { + if (obj.hasOwnProperty(key)) size++; + } + return size; + }; + + // warn user not to leave the page while upload is in progress + $(window).bind('beforeunload', function(e) { + if ($.assocArraySize(uploadingFiles) > 0) + return t('files','File upload is in progress. Leaving the page now will cancel the upload.'); + }); + + //add multiply file upload attribute to all browsers except konqueror (which crashes when it's used) + if(navigator.userAgent.search(/konqueror/i)==-1){ + $('#file_upload_start').attr('multiple','multiple') + } + + //if the breadcrumb is to long, start by replacing foldernames with '...' except for the current folder + var crumb=$('div.crumb').first(); + while($('div.controls').height()>40 && crumb.next('div.crumb').length>0){ + crumb.children('a').text('...'); + crumb=crumb.next('div.crumb'); + } + //if that isn't enough, start removing items from the breacrumb except for the current folder and it's parent + var crumb=$('div.crumb').first(); + var next=crumb.next('div.crumb'); + while($('div.controls').height()>40 && next.next('div.crumb').length>0){ + crumb.remove(); + crumb=next; + next=crumb.next('div.crumb'); + } + //still not enough, start shorting down the current folder name + var crumb=$('div.crumb>a').last(); + while($('div.controls').height()>40 && crumb.text().length>6){ + var text=crumb.text() + text=text.substr(0,text.length-6)+'...'; + crumb.text(text); + } + + $(document).click(function(){ + $('#new>ul').hide(); + $('#new').removeClass('active'); + $('#new li').each(function(i,element){ + if($(element).children('p').length==0){ + $(element).children('form').remove(); + $(element).append('

'+$(element).data('text')+'

'); + } + }); + }); + $('#new li').click(function(){ + if($(this).children('p').length==0){ + return; + } + + $('#new li').each(function(i,element){ + if($(element).children('p').length==0){ + $(element).children('form').remove(); + $(element).append('

'+$(element).data('text')+'

'); + } + }); + + var type=$(this).data('type'); + var text=$(this).children('p').text(); + $(this).data('text',text); + $(this).children('p').remove(); + var form=$('
'); + var input=$(''); + form.append(input); + $(this).append(form); + input.focus(); + form.submit(function(event){ + event.stopPropagation(); + event.preventDefault(); + var newname=input.val(); + if(type == 'web' && newname.length == 0) { + OC.Notification.show(t('files', 'URL cannot be empty.')); + return false; + } else if (type != 'web' && !Files.isFileNameValid(newname)) { + return false; + } else if( type == 'folder' && $('#dir').val() == '/' && newname == 'Shared') { + OC.Notification.show(t('files','Invalid folder name. Usage of \'Shared\' is reserved by ownCloud')); + return false; + } + if (FileList.lastAction) { + FileList.lastAction(); + } + var name = getUniqueName(newname); + if (newname != name) { + FileList.checkName(name, newname, true); + var hidden = true; + } else { + var hidden = false; + } + switch(type){ + case 'file': + $.post( + OC.filePath('files','ajax','newfile.php'), + {dir:$('#dir').val(),filename:name}, + function(result){ + if (result.status == 'success') { + var date=new Date(); + FileList.addFile(name,0,date,false,hidden); + var tr=$('tr').filterAttr('data-file',name); + tr.attr('data-size',result.data.size); + tr.attr('data-mime',result.data.mime); + tr.attr('data-id', result.data.id); + tr.find('.filesize').text(humanFileSize(result.data.size)); + getMimeIcon(result.data.mime,function(path){ + tr.find('td.filename').attr('style','background-image:url('+path+')'); + }); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + } + ); + break; + case 'folder': + $.post( + OC.filePath('files','ajax','newfolder.php'), + {dir:$('#dir').val(),foldername:name}, + function(result){ + if (result.status == 'success') { + var date=new Date(); + FileList.addDir(name,0,date,hidden); + var tr=$('tr').filterAttr('data-file',name); + tr.attr('data-id', result.data.id); + } else { + OC.dialogs.alert(result.data.message, t('core', 'Error')); + } + } + ); + break; + case 'web': + if(name.substr(0,8)!='https://' && name.substr(0,7)!='http://'){ + name='http://'+name; + } + var localName=name; + if(localName.substr(localName.length-1,1)=='/'){//strip / + localName=localName.substr(0,localName.length-1) + } + if(localName.indexOf('/')){//use last part of url + localName=localName.split('/').pop(); + } else { //or the domain + localName=(localName.match(/:\/\/(.[^\/]+)/)[1]).replace('www.',''); + } + localName = getUniqueName(localName); + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + } else { + $('#uploadprogressbar').progressbar({value:0}); + $('#uploadprogressbar').fadeIn(); + } + + var eventSource=new OC.EventSource(OC.filePath('files','ajax','newfile.php'),{dir:$('#dir').val(),source:name,filename:localName}); + eventSource.listen('progress',function(progress){ + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + } else { + $('#uploadprogressbar').progressbar('value',progress); + } + }); + eventSource.listen('success',function(data){ + var mime=data.mime; + var size=data.size; + var id=data.id; + $('#uploadprogressbar').fadeOut(); + var date=new Date(); + FileList.addFile(localName,size,date,false,hidden); + var tr=$('tr').filterAttr('data-file',localName); + tr.data('mime',mime).data('id',id); + tr.attr('data-id', id); + getMimeIcon(mime,function(path){ + tr.find('td.filename').attr('style','background-image:url('+path+')'); + }); + }); + eventSource.listen('error',function(error){ + $('#uploadprogressbar').fadeOut(); + alert(error); + }); + break; + } + var li=form.parent(); + form.remove(); + li.append('

'+li.data('text')+'

'); + $('#new>a').click(); + }); }); - }); }); diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js index aa66a57a7b..5027211b53 100644 --- a/apps/files/js/fileactions.js +++ b/apps/files/js/fileactions.js @@ -65,7 +65,7 @@ var FileActions = { FileActions.currentFile = parent; var actions = FileActions.get(FileActions.getCurrentMimeType(), FileActions.getCurrentType(), FileActions.getCurrentPermissions()); var file = FileActions.getCurrentFile(); - if ($('tr').filterAttr('data-file', file).data('renaming')) { + if ($('tr[data-file="'+file+'"]').data('renaming')) { return; } parent.children('a.name').append(''); @@ -123,14 +123,11 @@ var FileActions = { img = img(file); } if (typeof trashBinApp !== 'undefined' && trashBinApp) { - var html = ''; + var html = ''; } else { - var html = ''; + var html = ''; } var element = $(html); - if (img) { - element.append($('')); - } element.data('action', actions['Delete']); element.on('click', {a: null, elem: parent, actionFunc: actions['Delete']}, actionHandler); parent.parent().children().last().append(element); @@ -164,10 +161,11 @@ $(document).ready(function () { window.location = OC.filePath('files', 'ajax', 'download.php') + '?files=' + encodeURIComponent(filename) + '&dir=' + encodeURIComponent($('#dir').val()); }); } - $('#fileList tr').each(function () { FileActions.display($(this).children('td.filename')); }); + + $('#fileList').trigger(jQuery.Event("fileActionsReady")); }); diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index b858e2580e..10801af3ea 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -15,7 +15,7 @@ var FileList={ // filename td td = $('').attr({ "class": "filename", - "style": 'background-image:url('+iconurl+')' + "style": 'background-image:url('+iconurl+'); background-size: 16px;' }); td.append(''); var link_elem = $('').attr({ @@ -371,9 +371,7 @@ var FileList={ } for (var i=0; i'; - deleteAction.html(newHTML); + deleteAction.removeClass('delete-icon').addClass('progress-icon'); } // Finish any existing actions if (FileList.lastAction) { @@ -395,8 +393,8 @@ var FileList={ checkTrashStatus(); } else { $.each(files,function(index,file) { - var deleteAction = $('tr').filterAttr('data-file',file).children("td.date").children(".move2trash"); - deleteAction.html(oldHTML); + var deleteAction = $('tr').filterAttr('data-file',files[i]).children("td.date").children(".action.delete"); + deleteAction.removeClass('progress-icon').addClass('delete-icon'); }); } }); @@ -452,13 +450,14 @@ $(document).ready(function(){ var currentUploads = parseInt(uploadtext.attr('currentUploads')); currentUploads += 1; uploadtext.attr('currentUploads', currentUploads); + var translatedText = n('files', 'Uploading %n file', 'Uploading %n files', 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.text(translatedText); uploadtext.show(); } else { - uploadtext.text(currentUploads + ' ' + t('files', 'files uploading')); + uploadtext.text(translatedText); } } else { // add as stand-alone row to filelist diff --git a/apps/files/js/files.js b/apps/files/js/files.js index 3fad3fae7d..e1c53184dd 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -365,7 +365,9 @@ $(document).ready(function() { FileList.addFile(name,0,date,false,hidden); var tr=$('tr').filterAttr('data-file',name); tr.attr('data-mime',result.data.mime); + tr.attr('data-size',result.data.size); tr.attr('data-id', result.data.id); + tr.find('.filesize').text(humanFileSize(result.data.size)); getMimeIcon(result.data.mime,function(path){ tr.find('td.filename').attr('style','background-image:url('+path+')'); }); @@ -759,21 +761,13 @@ function procesSelection(){ $('#headerSize').text(humanFileSize(totalSize)); var selection=''; if(selectedFolders.length>0){ - if(selectedFolders.length==1){ - selection+=t('files','1 folder'); - }else{ - selection+=t('files','{count} folders',{count: selectedFolders.length}); - } + selection += n('files', '%n folder', '%n folders', selectedFolders.length); if(selectedFiles.length>0){ selection+=' & '; } } if(selectedFiles.length>0){ - if(selectedFiles.length==1){ - selection+=t('files','1 file'); - }else{ - selection+=t('files','{count} files',{count: selectedFiles.length}); - } + selection += n('files', '%n file', '%n files', selectedFiles.length); } $('#headerName>span.name').text(selection); $('#modified').text(''); @@ -852,4 +846,4 @@ function checkTrashStatus() { $("input[type=button][id=trash]").removeAttr("disabled"); } }); -} \ No newline at end of file +} diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index 878bb2eefb..7161e49a96 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "Error" => "خطأ", "Share" => "شارك", "Delete permanently" => "حذف بشكل دائم", -"Delete" => "إلغاء", "Rename" => "إعادة تسميه", "Pending" => "قيد الانتظار", "{new_name} already exists" => "{new_name} موجود مسبقا", @@ -29,8 +28,7 @@ $TRANSLATIONS = array( "cancel" => "إلغاء", "replaced {new_name} with {old_name}" => "استبدل {new_name} بـ {old_name}", "undo" => "تراجع", -"perform delete operation" => "جاري تنفيذ عملية الحذف", -"1 file uploading" => "جاري رفع 1 ملف", +"_Uploading %n file_::_Uploading %n files_" => array("","","","","",""), "'.' is an invalid file name." => "\".\" اسم ملف غير صحيح.", "File name cannot be empty." => "اسم الملف لا يجوز أن يكون فارغا", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", @@ -41,10 +39,8 @@ $TRANSLATIONS = array( "Name" => "اسم", "Size" => "حجم", "Modified" => "معدل", -"1 folder" => "مجلد عدد 1", -"{count} folders" => "{count} مجلدات", -"1 file" => "ملف واحد", -"{count} files" => "{count} ملفات", +"_%n folder_::_%n folders_" => array("","","","","",""), +"_%n file_::_%n files_" => array("","","","","",""), "Upload" => "رفع", "File handling" => "التعامل مع الملف", "Maximum upload size" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", @@ -64,6 +60,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "لا يوجد شيء هنا. إرفع بعض الملفات!", "Download" => "تحميل", "Unshare" => "إلغاء مشاركة", +"Delete" => "إلغاء", "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." => "يرجى الانتظار , جاري فحص الملفات .", diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index 47f7320679..1e2104370b 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -12,19 +12,17 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Share" => "Споделяне", "Delete permanently" => "Изтриване завинаги", -"Delete" => "Изтриване", "Rename" => "Преименуване", "Pending" => "Чакащо", "replace" => "препокриване", "cancel" => "отказ", "undo" => "възтановяване", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Име", "Size" => "Размер", "Modified" => "Променено", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 файл", -"{count} files" => "{count} файла", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Качване", "Maximum upload size" => "Максимален размер за качване", "0 is unlimited" => "Ползвайте 0 за без ограничения", @@ -35,6 +33,7 @@ $TRANSLATIONS = array( "Cancel upload" => "Спри качването", "Nothing in here. Upload something!" => "Няма нищо тук. Качете нещо.", "Download" => "Изтегляне", +"Delete" => "Изтриване", "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." => "Файловете се претърсват, изчакайте.", diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 288b1477bf..2f05a3eccf 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", "Error" => "সমস্যা", "Share" => "ভাগাভাগি কর", -"Delete" => "মুছে", "Rename" => "পূনঃনামকরণ", "Pending" => "মুলতুবি", "{new_name} already exists" => "{new_name} টি বিদ্যমান", @@ -28,7 +27,7 @@ $TRANSLATIONS = array( "cancel" => "বাতিল", "replaced {new_name} with {old_name}" => "{new_name} কে {old_name} নামে প্রতিস্থাপন করা হয়েছে", "undo" => "ক্রিয়া প্রত্যাহার", -"1 file uploading" => "১টি ফাইল আপলোড করা হচ্ছে", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "'.' is an invalid file name." => "টি একটি অননুমোদিত নাম।", "File name cannot be empty." => "ফাইলের নামটি ফাঁকা রাখা যাবে না।", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", @@ -36,10 +35,8 @@ $TRANSLATIONS = array( "Name" => "রাম", "Size" => "আকার", "Modified" => "পরিবর্তিত", -"1 folder" => "১টি ফোল্ডার", -"{count} folders" => "{count} টি ফোল্ডার", -"1 file" => "১টি ফাইল", -"{count} files" => "{count} টি ফাইল", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "আপলোড", "File handling" => "ফাইল হ্যার্ডলিং", "Maximum upload size" => "আপলোডের সর্বোচ্চ আকার", @@ -57,6 +54,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "এখানে কিছুই নেই। কিছু আপলোড করুন !", "Download" => "ডাউনলোড", "Unshare" => "ভাগাভাগি বাতিল ", +"Delete" => "মুছে", "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." => "ফাইলগুলো স্ক্যান করা হচ্ছে, দয়া করে অপেক্ষা করুন।", diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8d8469fbea..3ce9a41777 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Share" => "Comparteix", "Delete permanently" => "Esborra permanentment", -"Delete" => "Esborra", "Rename" => "Reanomena", "Pending" => "Pendent", "{new_name} already exists" => "{new_name} ja existeix", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "cancel·la", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Mida", "Modified" => "Modificat", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetes", -"1 file" => "1 fitxer", -"{count} files" => "{count} fitxers", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s no es pot canviar el nom", "Upload" => "Puja", "File handling" => "Gestió de fitxers", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Res per aquí. Pugeu alguna cosa!", "Download" => "Baixa", "Unshare" => "Deixa de compartir", +"Delete" => "Esborra", "Upload too large" => "La pujada és massa gran", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor", "Files are being scanned, please wait." => "S'estan escanejant els fitxers, espereu", diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index ba94b9c5ac..2fe09db1f9 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Chyba", "Share" => "Sdílet", "Delete permanently" => "Trvale odstranit", -"Delete" => "Smazat", "Rename" => "Přejmenovat", "Pending" => "Nevyřízené", "{new_name} already exists" => "{new_name} již existuje", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "zrušit", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", "undo" => "vrátit zpět", -"perform delete operation" => "provést smazání", -"1 file uploading" => "odesílá se 1 soubor", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", -"1 folder" => "1 složka", -"{count} folders" => "{count} složek", -"1 file" => "1 soubor", -"{count} files" => "{count} souborů", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nemůže být přejmenován", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Žádný obsah. Nahrajte něco.", "Download" => "Stáhnout", "Unshare" => "Zrušit sdílení", +"Delete" => "Smazat", "Upload too large" => "Odesílaný soubor je příliš velký", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru.", "Files are being scanned, please wait." => "Soubory se prohledávají, prosím čekejte.", diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index dc50b9cc3f..01c4613a8c 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Gwall", "Share" => "Rhannu", "Delete permanently" => "Dileu'n barhaol", -"Delete" => "Dileu", "Rename" => "Ailenwi", "Pending" => "I ddod", "{new_name} already exists" => "{new_name} yn bodoli'n barod", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "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", +"_Uploading %n file_::_Uploading %n files_" => array("","","",""), "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.", @@ -43,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "Enw", "Size" => "Maint", "Modified" => "Addaswyd", -"1 folder" => "1 blygell", -"{count} folders" => "{count} plygell", -"1 file" => "1 ffeil", -"{count} files" => "{count} ffeil", +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "Upload" => "Llwytho i fyny", "File handling" => "Trafod ffeiliau", "Maximum upload size" => "Maint mwyaf llwytho i fyny", @@ -66,6 +62,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!", "Download" => "Llwytho i lawr", "Unshare" => "Dad-rannu", +"Delete" => "Dileu", "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.", diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index f066b702b3..0491eefb7f 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Fejl", "Share" => "Del", "Delete permanently" => "Slet permanent", -"Delete" => "Slet", "Rename" => "Omdøb", "Pending" => "Afventer", "{new_name} already exists" => "{new_name} eksisterer allerede", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "fortryd", "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", +"_Uploading %n file_::_Uploading %n files_" => array("Uploader %n fil","Uploader %n filer"), "files uploading" => "uploader filer", "'.' is an invalid file name." => "'.' er et ugyldigt filnavn.", "File name cannot be empty." => "Filnavnet kan ikke stå tomt.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Ændret", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), +"_%n file_::_%n files_" => array("%n fil","%n filer"), "%s could not be renamed" => "%s kunne ikke omdøbes", "Upload" => "Upload", "File handling" => "Filhåndtering", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Her er tomt. Upload noget!", "Download" => "Download", "Unshare" => "Fjern deling", +"Delete" => "Slet", "Upload too large" => "Upload er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server.", "Files are being scanned, please wait." => "Filerne bliver indlæst, vent venligst.", diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index c89294bc09..c6c76dbf46 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", -"Delete" => "Löschen", "Rename" => "Umbenennen", "Pending" => "Ausstehend", "{new_name} already exists" => "{new_name} existiert bereits", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "abbrechen", "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" => "1 Datei wird hochgeladen", +"_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hochgeladen","%n Dateien werden 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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), +"_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Alles leer. Lade etwas hoch!", "Download" => "Herunterladen", "Unshare" => "Freigabe aufheben", +"Delete" => "Löschen", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 6a4cbcef06..e4d622d6ca 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Share" => "Teilen", "Delete permanently" => "Endgültig löschen", -"Delete" => "Löschen", "Rename" => "Umbenennen", "Pending" => "Ausstehend", "{new_name} already exists" => "{new_name} existiert bereits", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "abbrechen", "replaced {new_name} with {old_name}" => "{old_name} wurde ersetzt durch {new_name}", "undo" => "rückgängig machen", -"perform delete operation" => "Löschvorgang ausführen", -"1 file uploading" => "1 Datei wird hochgeladen", +"_Uploading %n file_::_Uploading %n files_" => array("%n Datei wird hoch geladen","%n Dateien werden 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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Name", "Size" => "Größe", "Modified" => "Geändert", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), +"_%n file_::_%n files_" => array("%n Datei","%n Dateien"), "%s could not be renamed" => "%s konnte nicht umbenannt werden", "Upload" => "Hochladen", "File handling" => "Dateibehandlung", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Alles leer. Laden Sie etwas hoch!", "Download" => "Herunterladen", "Unshare" => "Freigabe aufheben", +"Delete" => "Löschen", "Upload too large" => "Der Upload ist zu groß", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server.", "Files are being scanned, please wait." => "Dateien werden gescannt, bitte warten.", diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 0246ba2a89..e1d0052bc0 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Σφάλμα", "Share" => "Διαμοιρασμός", "Delete permanently" => "Μόνιμη διαγραφή", -"Delete" => "Διαγραφή", "Rename" => "Μετονομασία", "Pending" => "Εκκρεμεί", "{new_name} already exists" => "{new_name} υπάρχει ήδη", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "ακύρωση", "replaced {new_name} with {old_name}" => "αντικαταστάθηκε το {new_name} με {old_name}", "undo" => "αναίρεση", -"perform delete operation" => "εκτέλεση της διαδικασίας διαγραφής", -"1 file uploading" => "1 αρχείο ανεβαίνει", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "αρχεία ανεβαίνουν", "'.' is an invalid file name." => "'.' είναι μη έγκυρο όνομα αρχείου.", "File name cannot be empty." => "Το όνομα αρχείου δεν μπορεί να είναι κενό.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Όνομα", "Size" => "Μέγεθος", "Modified" => "Τροποποιήθηκε", -"1 folder" => "1 φάκελος", -"{count} folders" => "{count} φάκελοι", -"1 file" => "1 αρχείο", -"{count} files" => "{count} αρχεία", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "Αδυναμία μετονομασίας του %s", "Upload" => "Μεταφόρτωση", "File handling" => "Διαχείριση αρχείων", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Δεν υπάρχει τίποτα εδώ. Ανεβάστε κάτι!", "Download" => "Λήψη", "Unshare" => "Σταμάτημα διαμοιρασμού", +"Delete" => "Διαγραφή", "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." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.", diff --git a/apps/files/l10n/en@pirate.php b/apps/files/l10n/en@pirate.php index 339f94ae97..83351f265f 100644 --- a/apps/files/l10n/en@pirate.php +++ b/apps/files/l10n/en@pirate.php @@ -1,5 +1,8 @@ array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Download" => "Download" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eo.php b/apps/files/l10n/eo.php index 726abb1334..0f404fa29f 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -22,7 +22,6 @@ $TRANSLATIONS = array( "Error" => "Eraro", "Share" => "Kunhavigi", "Delete permanently" => "Forigi por ĉiam", -"Delete" => "Forigi", "Rename" => "Alinomigi", "Pending" => "Traktotaj", "{new_name} already exists" => "{new_name} jam ekzistas", @@ -31,8 +30,7 @@ $TRANSLATIONS = array( "cancel" => "nuligi", "replaced {new_name} with {old_name}" => "anstataŭiĝis {new_name} per {old_name}", "undo" => "malfari", -"perform delete operation" => "plenumi forigan operacion", -"1 file uploading" => "1 dosiero estas alŝutata", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "dosieroj estas alŝutataj", "'.' is an invalid file name." => "'.' ne estas valida dosiernomo.", "File name cannot be empty." => "Dosiernomo devas ne malpleni.", @@ -44,10 +42,8 @@ $TRANSLATIONS = array( "Name" => "Nomo", "Size" => "Grando", "Modified" => "Modifita", -"1 folder" => "1 dosierujo", -"{count} folders" => "{count} dosierujoj", -"1 file" => "1 dosiero", -"{count} files" => "{count} dosierujoj", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Alŝuti", "File handling" => "Dosieradministro", "Maximum upload size" => "Maksimuma alŝutogrando", @@ -67,6 +63,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Nenio estas ĉi tie. Alŝutu ion!", "Download" => "Elŝuti", "Unshare" => "Malkunhavigi", +"Delete" => "Forigi", "Upload too large" => "Alŝuto tro larĝa", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo.", "Files are being scanned, please wait." => "Dosieroj estas skanataj, bonvolu atendi.", diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 407a783a85..2672b16954 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", -"Delete" => "Eliminar", "Rename" => "Renombrar", "Pending" => "Pendiente", "{new_name} already exists" => "{new_name} ya existe", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "cancelar", "replaced {new_name} with {old_name}" => "reemplazado {new_name} con {old_name}", "undo" => "deshacer", -"perform delete operation" => "Realizar operación de borrado", -"1 file uploading" => "subiendo 1 archivo", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "subiendo archivos", "'.' is an invalid file name." => "'.' no es un nombre de archivo válido.", "File name cannot be empty." => "El nombre de archivo no puede estar vacío.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetas", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s no se pudo renombrar", "Upload" => "Subir", "File handling" => "Manejo de archivos", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "No hay nada aquí. ¡Suba algo!", "Download" => "Descargar", "Unshare" => "Dejar de compartir", +"Delete" => "Eliminar", "Upload too large" => "Subida demasido grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor.", "Files are being scanned, please wait." => "Los archivos están siendo escaneados, por favor espere.", diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index fd422ab1d9..5e94da3c43 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Error", "Share" => "Compartir", "Delete permanently" => "Borrar permanentemente", -"Delete" => "Borrar", "Rename" => "Cambiar nombre", "Pending" => "Pendientes", "{new_name} already exists" => "{new_name} ya existe", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "cancelar", "replaced {new_name} with {old_name}" => "se reemplazó {new_name} con {old_name}", "undo" => "deshacer", -"perform delete operation" => "Llevar a cabo borrado", -"1 file uploading" => "Subiendo 1 archivo", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nombre", "Size" => "Tamaño", "Modified" => "Modificado", -"1 folder" => "1 directorio", -"{count} folders" => "{count} directorios", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "No se pudo renombrar %s", "Upload" => "Subir", "File handling" => "Tratamiento de archivos", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "No hay nada. ¡Subí contenido!", "Download" => "Descargar", "Unshare" => "Dejar de compartir", +"Delete" => "Borrar", "Upload too large" => "El tamaño del archivo que querés subir es demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los archivos que intentás subir sobrepasan el tamaño máximo ", "Files are being scanned, please wait." => "Se están escaneando los archivos, por favor esperá.", diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index e6a643fbad..468f72e9d7 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Viga", "Share" => "Jaga", "Delete permanently" => "Kustuta jäädavalt", -"Delete" => "Kustuta", "Rename" => "Nimeta ümber", "Pending" => "Ootel", "{new_name} already exists" => "{new_name} on juba olemas", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "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 fail üleslaadimisel", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "faili üleslaadimisel", "'.' is an invalid file name." => "'.' on vigane failinimi.", "File name cannot be empty." => "Faili nimi ei saa olla tühi.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Suurus", "Modified" => "Muudetud", -"1 folder" => "1 kaust", -"{count} folders" => "{count} kausta", -"1 file" => "1 fail", -"{count} files" => "{count} faili", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s ümbernimetamine ebaõnnestus", "Upload" => "Lae üles", "File handling" => "Failide käsitlemine", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Siin pole midagi. Lae midagi üles!", "Download" => "Lae alla", "Unshare" => "Lõpeta jagamine", +"Delete" => "Kustuta", "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.", diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 740f53d4e9..fe6e117a93 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Errorea", "Share" => "Elkarbanatu", "Delete permanently" => "Ezabatu betirako", -"Delete" => "Ezabatu", "Rename" => "Berrizendatu", "Pending" => "Zain", "{new_name} already exists" => "{new_name} dagoeneko existitzen da", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "ezeztatu", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fitxategiak igotzen", "'.' is an invalid file name." => "'.' ez da fitxategi izen baliogarria.", "File name cannot be empty." => "Fitxategi izena ezin da hutsa izan.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Izena", "Size" => "Tamaina", "Modified" => "Aldatuta", -"1 folder" => "karpeta bat", -"{count} folders" => "{count} karpeta", -"1 file" => "fitxategi bat", -"{count} files" => "{count} fitxategi", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s ezin da berrizendatu", "Upload" => "Igo", "File handling" => "Fitxategien kudeaketa", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Ez dago ezer. Igo zerbait!", "Download" => "Deskargatu", "Unshare" => "Ez elkarbanatu", +"Delete" => "Ezabatu", "Upload too large" => "Igoera handiegia da", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira.", "Files are being scanned, please wait." => "Fitxategiak eskaneatzen ari da, itxoin mezedez.", diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 9670afdd05..96332921cf 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "خطا", "Share" => "اشتراک‌گذاری", "Delete permanently" => "حذف قطعی", -"Delete" => "حذف", "Rename" => "تغییرنام", "Pending" => "در انتظار", "{new_name} already exists" => "{نام _جدید} در حال حاضر وجود دارد.", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "لغو", "replaced {new_name} with {old_name}" => "{نام_جدید} با { نام_قدیمی} جایگزین شد.", "undo" => "بازگشت", -"perform delete operation" => "انجام عمل حذف", -"1 file uploading" => "1 پرونده آپلود شد.", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "بارگذاری فایل ها", "'.' is an invalid file name." => "'.' یک نام پرونده نامعتبر است.", "File name cannot be empty." => "نام پرونده نمی تواند خالی باشد.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "نام", "Size" => "اندازه", "Modified" => "تاریخ", -"1 folder" => "1 پوشه", -"{count} folders" => "{ شمار} پوشه ها", -"1 file" => "1 پرونده", -"{count} files" => "{ شمار } فایل ها", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "%s نمیتواند تغییر نام دهد.", "Upload" => "بارگزاری", "File handling" => "اداره پرونده ها", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "اینجا هیچ چیز نیست.", "Download" => "دانلود", "Unshare" => "لغو اشتراک", +"Delete" => "حذف", "Upload too large" => "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد", "Files are being scanned, please wait." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 2d1bf8c4e3..b48f44665b 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Virhe", "Share" => "Jaa", "Delete permanently" => "Poista pysyvästi", -"Delete" => "Poista", "Rename" => "Nimeä uudelleen", "Pending" => "Odottaa", "{new_name} already exists" => "{new_name} on jo olemassa", @@ -29,7 +28,7 @@ $TRANSLATIONS = array( "suggest name" => "ehdota nimeä", "cancel" => "peru", "undo" => "kumoa", -"perform delete operation" => "suorita poistotoiminto", +"_Uploading %n file_::_Uploading %n files_" => array("Lähetetään %n tiedosto","Lähetetään %n tiedostoa"), "'.' is an invalid file name." => "'.' on virheellinen nimi tiedostolle.", "File name cannot be empty." => "Tiedoston nimi ei voi olla tyhjä.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Virheellinen nimi, merkit '\\', '/', '<', '>', ':', '\"', '|', '?' ja '*' eivät ole sallittuja.", @@ -39,10 +38,8 @@ $TRANSLATIONS = array( "Name" => "Nimi", "Size" => "Koko", "Modified" => "Muokattu", -"1 folder" => "1 kansio", -"{count} folders" => "{count} kansiota", -"1 file" => "1 tiedosto", -"{count} files" => "{count} tiedostoa", +"_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), +"_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "Upload" => "Lähetä", "File handling" => "Tiedostonhallinta", "Maximum upload size" => "Lähetettävän tiedoston suurin sallittu koko", @@ -62,6 +59,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Täällä ei ole mitään. Lähetä tänne jotakin!", "Download" => "Lataa", "Unshare" => "Peru jakaminen", +"Delete" => "Poista", "Upload too large" => "Lähetettävä tiedosto on liian suuri", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan.", "Files are being scanned, please wait." => "Tiedostoja tarkistetaan, odota hetki.", diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index ad79a9f499..6006413449 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Erreur", "Share" => "Partager", "Delete permanently" => "Supprimer de façon définitive", -"Delete" => "Supprimer", "Rename" => "Renommer", "Pending" => "En attente", "{new_name} already exists" => "{new_name} existe déjà", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "annuler", "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 d'envoi", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fichiers en cours d'envoi", "'.' 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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nom", "Size" => "Taille", "Modified" => "Modifié", -"1 folder" => "1 dossier", -"{count} folders" => "{count} dossiers", -"1 file" => "1 fichier", -"{count} files" => "{count} fichiers", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s ne peut être renommé", "Upload" => "Envoyer", "File handling" => "Gestion des fichiers", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Il n'y a rien ici ! Envoyez donc quelque chose :)", "Download" => "Télécharger", "Unshare" => "Ne plus partager", +"Delete" => "Supprimer", "Upload too large" => "Téléversement trop volumineux", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur.", "Files are being scanned, please wait." => "Les fichiers sont en cours d'analyse, veuillez patienter.", diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index 02bbad53e4..5c8132926b 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Erro", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", -"Delete" => "Eliminar", "Rename" => "Renomear", "Pending" => "Pendentes", "{new_name} already exists" => "Xa existe un {new_name}", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "cancelar", "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", +"_Uploading %n file_::_Uploading %n files_" => array("Cargando %n ficheiro","Cargando %n ficheiros"), "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", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamaño", "Modified" => "Modificado", -"1 folder" => "1 cartafol", -"{count} folders" => "{count} cartafoles", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), +"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "%s could not be renamed" => "%s non pode cambiar de nome", "Upload" => "Enviar", "File handling" => "Manexo de ficheiro", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Aquí non hai nada. Envíe algo.", "Download" => "Descargar", "Unshare" => "Deixar de compartir", +"Delete" => "Eliminar", "Upload too large" => "Envío demasiado grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor", "Files are being scanned, please wait." => "Estanse analizando os ficheiros. Agarde.", diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 8af6b0852e..ef98e2d218 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "Error" => "שגיאה", "Share" => "שתף", "Delete permanently" => "מחק לצמיתות", -"Delete" => "מחיקה", "Rename" => "שינוי שם", "Pending" => "ממתין", "{new_name} already exists" => "{new_name} כבר קיים", @@ -29,17 +28,14 @@ $TRANSLATIONS = array( "cancel" => "ביטול", "replaced {new_name} with {old_name}" => "{new_name} הוחלף ב־{old_name}", "undo" => "ביטול", -"perform delete operation" => "ביצוע פעולת מחיקה", -"1 file uploading" => "קובץ אחד נשלח", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "קבצים בהעלאה", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "השם שגוי, אסור להשתמש בתווים '\\', '/', '<', '>', ':', '\"', '|', '?' ו־'*'.", "Name" => "שם", "Size" => "גודל", "Modified" => "זמן שינוי", -"1 folder" => "תיקייה אחת", -"{count} folders" => "{count} תיקיות", -"1 file" => "קובץ אחד", -"{count} files" => "{count} קבצים", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "העלאה", "File handling" => "טיפול בקבצים", "Maximum upload size" => "גודל העלאה מקסימלי", @@ -57,6 +53,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "אין כאן שום דבר. אולי ברצונך להעלות משהו?", "Download" => "הורדה", "Unshare" => "הסר שיתוף", +"Delete" => "מחיקה", "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." => "הקבצים נסרקים, נא להמתין.", diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index 48e2194256..7fb5a5b09d 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Error" => "त्रुटि", "Share" => "साझा करें", +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Save" => "सहेजें" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hr.php b/apps/files/l10n/hr.php index 6bc6904041..8f74dea092 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -12,18 +12,19 @@ $TRANSLATIONS = array( "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", "Share" => "Podijeli", -"Delete" => "Obriši", "Rename" => "Promjeni ime", "Pending" => "U tijeku", "replace" => "zamjeni", "suggest name" => "predloži ime", "cancel" => "odustani", "undo" => "vrati", -"1 file uploading" => "1 datoteka se učitava", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "datoteke se učitavaju", "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja promjena", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Učitaj", "File handling" => "datoteka za rukovanje", "Maximum upload size" => "Maksimalna veličina prijenosa", @@ -40,6 +41,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Nema ničega u ovoj mapi. Pošalji nešto!", "Download" => "Preuzimanje", "Unshare" => "Makni djeljenje", +"Delete" => "Obriši", "Upload too large" => "Prijenos je preobiman", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju.", "Files are being scanned, please wait." => "Datoteke se skeniraju, molimo pričekajte.", diff --git a/apps/files/l10n/hu_HU.php b/apps/files/l10n/hu_HU.php index 061fb27f0f..63efe031da 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Hiba", "Share" => "Megosztás", "Delete permanently" => "Végleges törlés", -"Delete" => "Törlés", "Rename" => "Átnevezés", "Pending" => "Folyamatban", "{new_name} already exists" => "{new_name} már létezik", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "mégse", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Név", "Size" => "Méret", "Modified" => "Módosítva", -"1 folder" => "1 mappa", -"{count} folders" => "{count} mappa", -"1 file" => "1 fájl", -"{count} files" => "{count} fájl", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s átnevezése nem sikerült", "Upload" => "Feltöltés", "File handling" => "Fájlkezelés", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Itt nincs semmi. Töltsön fel valamit!", "Download" => "Letöltés", "Unshare" => "A megosztás visszavonása", +"Delete" => "Törlés", "Upload too large" => "A feltöltés túl nagy", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet.", "Files are being scanned, please wait." => "A fájllista ellenőrzése zajlik, kis türelmet!", diff --git a/apps/files/l10n/hy.php b/apps/files/l10n/hy.php index 101734c01d..a419a74cc9 100644 --- a/apps/files/l10n/hy.php +++ b/apps/files/l10n/hy.php @@ -1,7 +1,10 @@ "Ջնջել", +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Save" => "Պահպանել", -"Download" => "Բեռնել" +"Download" => "Բեռնել", +"Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ia.php b/apps/files/l10n/ia.php index 2ccd559469..202375636a 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -6,10 +6,12 @@ $TRANSLATIONS = array( "Files" => "Files", "Error" => "Error", "Share" => "Compartir", -"Delete" => "Deler", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Nomine", "Size" => "Dimension", "Modified" => "Modificate", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Incargar", "Maximum upload size" => "Dimension maxime de incargamento", "Save" => "Salveguardar", @@ -18,6 +20,7 @@ $TRANSLATIONS = array( "Folder" => "Dossier", "Nothing in here. Upload something!" => "Nihil hic. Incarga alcun cosa!", "Download" => "Discargar", +"Delete" => "Deler", "Upload too large" => "Incargamento troppo longe" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/id.php b/apps/files/l10n/id.php index 4b6bf8a32b..0f7aac5a22 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Galat", "Share" => "Bagikan", "Delete permanently" => "Hapus secara permanen", -"Delete" => "Hapus", "Rename" => "Ubah nama", "Pending" => "Menunggu", "{new_name} already exists" => "{new_name} sudah ada", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "cancel" => "batalkan", "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", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "berkas diunggah", "'.' is an invalid file name." => "'.' bukan nama berkas yang valid.", "File name cannot be empty." => "Nama berkas tidak boleh kosong.", @@ -43,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "Nama", "Size" => "Ukuran", "Modified" => "Dimodifikasi", -"1 folder" => "1 folder", -"{count} folders" => "{count} folder", -"1 file" => "1 berkas", -"{count} files" => "{count} berkas", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "Unggah", "File handling" => "Penanganan berkas", "Maximum upload size" => "Ukuran pengunggahan maksimum", @@ -66,6 +62,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Tidak ada apa-apa di sini. Unggah sesuatu!", "Download" => "Unduh", "Unshare" => "Batalkan berbagi", +"Delete" => "Hapus", "Upload too large" => "Yang diunggah terlalu besar", "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.", diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 8a131b20c8..aee213691e 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -19,7 +19,6 @@ $TRANSLATIONS = array( "URL cannot be empty." => "Vefslóð má ekki vera tóm.", "Error" => "Villa", "Share" => "Deila", -"Delete" => "Eyða", "Rename" => "Endurskýra", "Pending" => "Bíður", "{new_name} already exists" => "{new_name} er þegar til", @@ -28,7 +27,7 @@ $TRANSLATIONS = array( "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "'.' 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ð.", @@ -36,10 +35,8 @@ $TRANSLATIONS = array( "Name" => "Nafn", "Size" => "Stærð", "Modified" => "Breytt", -"1 folder" => "1 mappa", -"{count} folders" => "{count} möppur", -"1 file" => "1 skrá", -"{count} files" => "{count} skrár", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Senda inn", "File handling" => "Meðhöndlun skrár", "Maximum upload size" => "Hámarks stærð innsendingar", @@ -57,6 +54,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Ekkert hér. Settu eitthvað inn!", "Download" => "Niðurhal", "Unshare" => "Hætta deilingu", +"Delete" => "Eyða", "Upload too large" => "Innsend skrá er of stór", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni.", "Files are being scanned, please wait." => "Verið er að skima skrár, vinsamlegast hinkraðu.", diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index e5e4bd03bb..3220a3efb6 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Errore", "Share" => "Condividi", "Delete permanently" => "Elimina definitivamente", -"Delete" => "Elimina", "Rename" => "Rinomina", "Pending" => "In corso", "{new_name} already exists" => "{new_name} esiste già", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "annulla", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Dimensione", "Modified" => "Modificato", -"1 folder" => "1 cartella", -"{count} folders" => "{count} cartelle", -"1 file" => "1 file", -"{count} files" => "{count} file", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s non può essere rinominato", "Upload" => "Carica", "File handling" => "Gestione file", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Non c'è niente qui. Carica qualcosa!", "Download" => "Scarica", "Unshare" => "Rimuovi condivisione", +"Delete" => "Elimina", "Upload too large" => "Caricamento troppo grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "I file che stai provando a caricare superano la dimensione massima consentita su questo server.", "Files are being scanned, please wait." => "Scansione dei file in corso, attendi", diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index 0902353a17..0733f0e792 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "エラー", "Share" => "共有", "Delete permanently" => "完全に削除する", -"Delete" => "削除", "Rename" => "名前の変更", "Pending" => "中断", "{new_name} already exists" => "{new_name} はすでに存在しています", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "キャンセル", "replaced {new_name} with {old_name}" => "{old_name} を {new_name} に置換", "undo" => "元に戻す", -"perform delete operation" => "削除を実行", -"1 file uploading" => "ファイルを1つアップロード中", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "ファイルをアップロード中", "'.' is an invalid file name." => "'.' は無効なファイル名です。", "File name cannot be empty." => "ファイル名を空にすることはできません。", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "名前", "Size" => "サイズ", "Modified" => "変更", -"1 folder" => "1 フォルダ", -"{count} folders" => "{count} フォルダ", -"1 file" => "1 ファイル", -"{count} files" => "{count} ファイル", +"_%n folder_::_%n folders_" => array("%n個のフォルダ"), +"_%n file_::_%n files_" => array("%n個のファイル"), "%s could not be renamed" => "%sの名前を変更できませんでした", "Upload" => "アップロード", "File handling" => "ファイル操作", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "ここには何もありません。何かアップロードしてください。", "Download" => "ダウンロード", "Unshare" => "共有解除", +"Delete" => "削除", "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." => "ファイルをスキャンしています、しばらくお待ちください。", diff --git a/apps/files/l10n/ka.php b/apps/files/l10n/ka.php index bbc70614cf..527a2c49b1 100644 --- a/apps/files/l10n/ka.php +++ b/apps/files/l10n/ka.php @@ -1,6 +1,9 @@ "ფაილები", +"_Uploading %n file_::_Uploading %n files_" => array(""), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Download" => "გადმოწერა" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ka_GE.php b/apps/files/l10n/ka_GE.php index f6bf618106..3205255e39 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "შეცდომა", "Share" => "გაზიარება", "Delete permanently" => "სრულად წაშლა", -"Delete" => "წაშლა", "Rename" => "გადარქმევა", "Pending" => "მოცდის რეჟიმში", "{new_name} already exists" => "{new_name} უკვე არსებობს", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "cancel" => "უარყოფა", "replaced {new_name} with {old_name}" => "{new_name} შეცვლილია {old_name}–ით", "undo" => "დაბრუნება", -"perform delete operation" => "მიმდინარეობს წაშლის ოპერაცია", -"1 file uploading" => "1 ფაილის ატვირთვა", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "ფაილები იტვირთება", "'.' is an invalid file name." => "'.' არის დაუშვებელი ფაილის სახელი.", "File name cannot be empty." => "ფაილის სახელი არ შეიძლება იყოს ცარიელი.", @@ -43,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "სახელი", "Size" => "ზომა", "Modified" => "შეცვლილია", -"1 folder" => "1 საქაღალდე", -"{count} folders" => "{count} საქაღალდე", -"1 file" => "1 ფაილი", -"{count} files" => "{count} ფაილი", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "ატვირთვა", "File handling" => "ფაილის დამუშავება", "Maximum upload size" => "მაქსიმუმ ატვირთის ზომა", @@ -66,6 +62,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "აქ არაფერი არ არის. ატვირთე რამე!", "Download" => "ჩამოტვირთვა", "Unshare" => "გაუზიარებადი", +"Delete" => "წაშლა", "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." => "მიმდინარეობს ფაილების სკანირება, გთხოვთ დაელოდოთ.", diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index d68fb162d0..7839ad3bd9 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "오류", "Share" => "공유", "Delete permanently" => "영원히 삭제", -"Delete" => "삭제", "Rename" => "이름 바꾸기", "Pending" => "대기 중", "{new_name} already exists" => "{new_name}이(가) 이미 존재함", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "cancel" => "취소", "replaced {new_name} with {old_name}" => "{old_name}이(가) {new_name}(으)로 대체됨", "undo" => "되돌리기", -"perform delete operation" => "삭제 작업중", -"1 file uploading" => "파일 1개 업로드 중", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "파일 업로드중", "'.' is an invalid file name." => "'.' 는 올바르지 않은 파일 이름 입니다.", "File name cannot be empty." => "파일 이름이 비어 있을 수 없습니다.", @@ -43,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "이름", "Size" => "크기", "Modified" => "수정됨", -"1 folder" => "폴더 1개", -"{count} folders" => "폴더 {count}개", -"1 file" => "파일 1개", -"{count} files" => "파일 {count}개", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "업로드", "File handling" => "파일 처리", "Maximum upload size" => "최대 업로드 크기", @@ -66,6 +62,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "내용이 없습니다. 업로드할 수 있습니다!", "Download" => "다운로드", "Unshare" => "공유 해제", +"Delete" => "삭제", "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." => "파일을 검색하고 있습니다. 기다려 주십시오.", diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index ad85edaa0d..81177f9bea 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -2,7 +2,10 @@ $TRANSLATIONS = array( "URL cannot be empty." => "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Error" => "هه‌ڵه", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "ناو", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 762d9189fb..c57eebd9e7 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -12,13 +12,15 @@ $TRANSLATIONS = array( "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", "Share" => "Deelen", -"Delete" => "Läschen", "replace" => "ersetzen", "cancel" => "ofbriechen", "undo" => "réckgängeg man", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "Numm", "Size" => "Gréisst", "Modified" => "Geännert", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Eroplueden", "File handling" => "Fichier handling", "Maximum upload size" => "Maximum Upload Gréisst ", @@ -35,6 +37,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Hei ass näischt. Lued eppes rop!", "Download" => "Download", "Unshare" => "Net méi deelen", +"Delete" => "Läschen", "Upload too large" => "Upload ze grouss", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Déi Dateien déi Dir probéiert erop ze lueden sinn méi grouss wei déi Maximal Gréisst déi op dësem Server erlaabt ass.", "Files are being scanned, please wait." => "Fichieren gi gescannt, war weg.", diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index c2d0fee6e6..cae9660ab6 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -22,7 +22,6 @@ $TRANSLATIONS = array( "Error" => "Klaida", "Share" => "Dalintis", "Delete permanently" => "Ištrinti negrįžtamai", -"Delete" => "Ištrinti", "Rename" => "Pervadinti", "Pending" => "Laukiantis", "{new_name} already exists" => "{new_name} jau egzistuoja", @@ -31,8 +30,7 @@ $TRANSLATIONS = array( "cancel" => "atšaukti", "replaced {new_name} with {old_name}" => "pakeiskite {new_name} į {old_name}", "undo" => "anuliuoti", -"perform delete operation" => "ištrinti", -"1 file uploading" => "įkeliamas 1 failas", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "įkeliami failai", "'.' is an invalid file name." => "'.' yra neleidžiamas failo pavadinime.", "File name cannot be empty." => "Failo pavadinimas negali būti tuščias.", @@ -44,10 +42,8 @@ $TRANSLATIONS = array( "Name" => "Pavadinimas", "Size" => "Dydis", "Modified" => "Pakeista", -"1 folder" => "1 aplankalas", -"{count} folders" => "{count} aplankalai", -"1 file" => "1 failas", -"{count} files" => "{count} failai", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Įkelti", "File handling" => "Failų tvarkymas", "Maximum upload size" => "Maksimalus įkeliamo failo dydis", @@ -67,6 +63,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Čia tuščia. Įkelkite ką nors!", "Download" => "Atsisiųsti", "Unshare" => "Nebesidalinti", +"Delete" => "Ištrinti", "Upload too large" => "Įkėlimui failas per didelis", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje", "Files are being scanned, please wait." => "Skenuojami failai, prašome palaukti.", diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index 24161cb2a6..0eeff3a590 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Kļūda", "Share" => "Dalīties", "Delete permanently" => "Dzēst pavisam", -"Delete" => "Dzēst", "Rename" => "Pārsaukt", "Pending" => "Gaida savu kārtu", "{new_name} already exists" => "{new_name} jau eksistē", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "cancel" => "atcelt", "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", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "'.' 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 '*'.", @@ -42,10 +40,8 @@ $TRANSLATIONS = array( "Name" => "Nosaukums", "Size" => "Izmērs", "Modified" => "Mainīts", -"1 folder" => "1 mape", -"{count} folders" => "{count} mapes", -"1 file" => "1 datne", -"{count} files" => "{count} datnes", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Augšupielādēt", "File handling" => "Datņu pārvaldība", "Maximum upload size" => "Maksimālais datņu augšupielādes apjoms", @@ -65,6 +61,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!", "Download" => "Lejupielādēt", "Unshare" => "Pārtraukt dalīšanos", +"Delete" => "Dzēst", "Upload too large" => "Datne ir par lielu, lai to augšupielādētu", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu", "Files are being scanned, please wait." => "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet.", diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index a922876553..20fed43ab2 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -15,7 +15,6 @@ $TRANSLATIONS = array( "URL cannot be empty." => "Адресата неможе да биде празна.", "Error" => "Грешка", "Share" => "Сподели", -"Delete" => "Избриши", "Rename" => "Преименувај", "Pending" => "Чека", "{new_name} already exists" => "{new_name} веќе постои", @@ -24,15 +23,13 @@ $TRANSLATIONS = array( "cancel" => "откажи", "replaced {new_name} with {old_name}" => "заменета {new_name} со {old_name}", "undo" => "врати", -"1 file uploading" => "1 датотека се подига", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Неправилно име. , '\\', '/', '<', '>', ':', '\"', '|', '?' и '*' не се дозволени.", "Name" => "Име", "Size" => "Големина", "Modified" => "Променето", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеки", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Подигни", "File handling" => "Ракување со датотеки", "Maximum upload size" => "Максимална големина за подигање", @@ -50,6 +47,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Тука нема ништо. Снимете нешто!", "Download" => "Преземи", "Unshare" => "Не споделувај", +"Delete" => "Избриши", "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." => "Се скенираат датотеки, ве молам почекајте.", diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index 48ef8587ca..86b70faefd 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -12,13 +12,15 @@ $TRANSLATIONS = array( "Upload cancelled." => "Muatnaik dibatalkan.", "Error" => "Ralat", "Share" => "Kongsi", -"Delete" => "Padam", "Pending" => "Dalam proses", "replace" => "ganti", "cancel" => "Batal", +"_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "Nama", "Size" => "Saiz", "Modified" => "Dimodifikasi", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "Muat naik", "File handling" => "Pengendalian fail", "Maximum upload size" => "Saiz maksimum muat naik", @@ -34,6 +36,7 @@ $TRANSLATIONS = array( "Cancel upload" => "Batal muat naik", "Nothing in here. Upload something!" => "Tiada apa-apa di sini. Muat naik sesuatu!", "Download" => "Muat turun", +"Delete" => "Padam", "Upload too large" => "Muatnaik terlalu besar", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server", "Files are being scanned, please wait." => "Fail sedang diimbas, harap bersabar.", diff --git a/apps/files/l10n/my_MM.php b/apps/files/l10n/my_MM.php index c94cc5fd6f..4dc63ffee2 100644 --- a/apps/files/l10n/my_MM.php +++ b/apps/files/l10n/my_MM.php @@ -1,6 +1,9 @@ "ဖိုင်များ", +"_Uploading %n file_::_Uploading %n files_" => array(""), +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Download" => "ဒေါင်းလုတ်" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/nb_NO.php b/apps/files/l10n/nb_NO.php index 15104914fd..5e43740cc2 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -23,7 +23,6 @@ $TRANSLATIONS = array( "Error" => "Feil", "Share" => "Del", "Delete permanently" => "Slett permanent", -"Delete" => "Slett", "Rename" => "Omdøp", "Pending" => "Ventende", "{new_name} already exists" => "{new_name} finnes allerede", @@ -32,8 +31,7 @@ $TRANSLATIONS = array( "cancel" => "avbryt", "replaced {new_name} with {old_name}" => "erstatt {new_name} med {old_name}", "undo" => "angre", -"perform delete operation" => "utfør sletting", -"1 file uploading" => "1 fil lastes opp", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "filer lastes opp", "'.' is an invalid file name." => "'.' er et ugyldig filnavn.", "File name cannot be empty." => "Filnavn kan ikke være tomt.", @@ -45,10 +43,8 @@ $TRANSLATIONS = array( "Name" => "Navn", "Size" => "Størrelse", "Modified" => "Endret", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Last opp", "File handling" => "Filhåndtering", "Maximum upload size" => "Maksimum opplastingsstørrelse", @@ -68,6 +64,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Ingenting her. Last opp noe!", "Download" => "Last ned", "Unshare" => "Avslutt deling", +"Delete" => "Slett", "Upload too large" => "Filen er for stor", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å laste opp er for store for å laste opp til denne serveren.", "Files are being scanned, please wait." => "Skanner etter filer, vennligst vent.", diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index d0f6542f1f..adaf07a378 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Fout", "Share" => "Delen", "Delete permanently" => "Verwijder definitief", -"Delete" => "Verwijder", "Rename" => "Hernoem", "Pending" => "In behandeling", "{new_name} already exists" => "{new_name} bestaat al", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "annuleren", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Naam", "Size" => "Grootte", "Modified" => "Aangepast", -"1 folder" => "1 map", -"{count} folders" => "{count} mappen", -"1 file" => "1 bestand", -"{count} files" => "{count} bestanden", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s kon niet worden hernoemd", "Upload" => "Uploaden", "File handling" => "Bestand", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Er bevindt zich hier niets. Upload een bestand!", "Download" => "Downloaden", "Unshare" => "Stop met delen", +"Delete" => "Verwijder", "Upload too large" => "Upload is te groot", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server.", "Files are being scanned, please wait." => "Bestanden worden gescand, even wachten.", diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index 2e1a5a5cfc..0f0ad31874 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -22,7 +22,6 @@ $TRANSLATIONS = array( "Error" => "Feil", "Share" => "Del", "Delete permanently" => "Slett for godt", -"Delete" => "Slett", "Rename" => "Endra namn", "Pending" => "Under vegs", "{new_name} already exists" => "{new_name} finst allereie", @@ -31,8 +30,7 @@ $TRANSLATIONS = array( "cancel" => "avbryt", "replaced {new_name} with {old_name}" => "bytte ut {new_name} med {old_name}", "undo" => "angre", -"perform delete operation" => "utfør sletting", -"1 file uploading" => "1 fil lastar opp", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "filer lastar opp", "'.' is an invalid file name." => "«.» er eit ugyldig filnamn.", "File name cannot be empty." => "Filnamnet kan ikkje vera tomt.", @@ -44,10 +42,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storleik", "Modified" => "Endra", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Last opp", "File handling" => "Filhandtering", "Maximum upload size" => "Maksimal opplastingsstorleik", @@ -67,6 +63,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Ingenting her. Last noko opp!", "Download" => "Last ned", "Unshare" => "Udel", +"Delete" => "Slett", "Upload too large" => "For stor opplasting", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren.", "Files are being scanned, please wait." => "Skannar filer, ver venleg og vent.", diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 382a4b2158..552d72bef5 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -12,18 +12,19 @@ $TRANSLATIONS = array( "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", "Share" => "Parteja", -"Delete" => "Escafa", "Rename" => "Torna nomenar", "Pending" => "Al esperar", "replace" => "remplaça", "suggest name" => "nom prepausat", "cancel" => "anulla", "undo" => "defar", -"1 file uploading" => "1 fichièr al amontcargar", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "fichièrs al amontcargar", "Name" => "Nom", "Size" => "Talha", "Modified" => "Modificat", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Amontcarga", "File handling" => "Manejament de fichièr", "Maximum upload size" => "Talha maximum d'amontcargament", @@ -40,6 +41,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Pas res dedins. Amontcarga qualquaren", "Download" => "Avalcarga", "Unshare" => "Pas partejador", +"Delete" => "Escafa", "Upload too large" => "Amontcargament tròp gròs", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor.", "Files are being scanned, please wait." => "Los fiichièrs son a èsser explorats, ", diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index fc37234fc6..813d2ee8e7 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Błąd", "Share" => "Udostępnij", "Delete permanently" => "Trwale usuń", -"Delete" => "Usuń", "Rename" => "Zmień nazwę", "Pending" => "Oczekujące", "{new_name} already exists" => "{new_name} już istnieje", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "anuluj", "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", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nazwa", "Size" => "Rozmiar", "Modified" => "Modyfikacja", -"1 folder" => "1 folder", -"{count} folders" => "Ilość folderów: {count}", -"1 file" => "1 plik", -"{count} files" => "Ilość plików: {count}", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nie można zmienić nazwy", "Upload" => "Wyślij", "File handling" => "Zarządzanie plikami", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Pusto. Wyślij coś!", "Download" => "Pobierz", "Unshare" => "Zatrzymaj współdzielenie", +"Delete" => "Usuń", "Upload too large" => "Ładowany plik jest za duży", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.", "Files are being scanned, please wait." => "Skanowanie plików, proszę czekać.", diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 421de07c2b..575df89111 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Erro", "Share" => "Compartilhar", "Delete permanently" => "Excluir permanentemente", -"Delete" => "Excluir", "Rename" => "Renomear", "Pending" => "Pendente", "{new_name} already exists" => "{new_name} já existe", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "cancelar", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 arquivo", -"{count} files" => "{count} arquivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s não pode ser renomeado", "Upload" => "Upload", "File handling" => "Tratamento de Arquivo", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Nada aqui.Carrege alguma coisa!", "Download" => "Baixar", "Unshare" => "Descompartilhar", +"Delete" => "Excluir", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor.", "Files are being scanned, please wait." => "Arquivos sendo escaneados, por favor aguarde.", diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index c9b98bbed4..64110f6704 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Erro", "Share" => "Partilhar", "Delete permanently" => "Eliminar permanentemente", -"Delete" => "Eliminar", "Rename" => "Renomear", "Pending" => "Pendente", "{new_name} already exists" => "O nome {new_name} já existe", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "cancelar", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nome", "Size" => "Tamanho", "Modified" => "Modificado", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s não pode ser renomeada", "Upload" => "Carregar", "File handling" => "Manuseamento de ficheiros", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Vazio. Envie alguma coisa!", "Download" => "Transferir", "Unshare" => "Deixar de partilhar", +"Delete" => "Eliminar", "Upload too large" => "Upload muito grande", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor.", "Files are being scanned, please wait." => "Os ficheiros estão a ser analisados, por favor aguarde.", diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index c9b340ff9b..85805cf562 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Eroare", "Share" => "Partajează", "Delete permanently" => "Stergere permanenta", -"Delete" => "Șterge", "Rename" => "Redenumire", "Pending" => "În așteptare", "{new_name} already exists" => "{new_name} deja exista", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "anulare", "replaced {new_name} with {old_name}" => "{new_name} inlocuit cu {old_name}", "undo" => "Anulează ultima acțiune", -"perform delete operation" => "efectueaza operatiunea de stergere", -"1 file uploading" => "un fișier se încarcă", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "fișiere 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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Nume", "Size" => "Dimensiune", "Modified" => "Modificat", -"1 folder" => "1 folder", -"{count} folders" => "{count} foldare", -"1 file" => "1 fisier", -"{count} files" => "{count} fisiere", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nu a putut fi redenumit", "Upload" => "Încărcare", "File handling" => "Manipulare fișiere", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Nimic aici. Încarcă ceva!", "Download" => "Descarcă", "Unshare" => "Anulare partajare", +"Delete" => "Șterge", "Upload too large" => "Fișierul încărcat este prea mare", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server.", "Files are being scanned, please wait." => "Fișierele sunt scanate, te rog așteptă.", diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 4d3bec0274..c4f9342a3f 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Ошибка", "Share" => "Открыть доступ", "Delete permanently" => "Удалено навсегда", -"Delete" => "Удалить", "Rename" => "Переименовать", "Pending" => "Ожидание", "{new_name} already exists" => "{new_name} уже существует", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "отмена", "replaced {new_name} with {old_name}" => "заменено {new_name} на {old_name}", "undo" => "отмена", -"perform delete operation" => "выполнить операцию удаления", -"1 file uploading" => "загружается 1 файл", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "файлы загружаются", "'.' is an invalid file name." => "'.' - неправильное имя файла.", "File name cannot be empty." => "Имя файла не может быть пустым.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Имя", "Size" => "Размер", "Modified" => "Изменён", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлов", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s не может быть переименован", "Upload" => "Загрузка", "File handling" => "Управление файлами", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Здесь ничего нет. Загрузите что-нибудь!", "Download" => "Скачать", "Unshare" => "Закрыть общий доступ", +"Delete" => "Удалить", "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." => "Подождите, файлы сканируются.", diff --git a/apps/files/l10n/ru_RU.php b/apps/files/l10n/ru_RU.php deleted file mode 100644 index bbc06fe1a5..0000000000 --- a/apps/files/l10n/ru_RU.php +++ /dev/null @@ -1,18 +0,0 @@ - "Файл не был загружен. Неизвестная ошибка", -"There is no error, the file uploaded with success" => "Ошибки нет, файл успешно загружен", -"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" => "Недостаточно места в хранилище", -"Share" => "Сделать общим", -"Delete" => "Удалить", -"Error" => "Ошибка", -"Name" => "Имя", -"Save" => "Сохранить", -"Download" => "Загрузка" -); -$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);"; diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 4f576af17e..ffb28e0958 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -13,18 +13,17 @@ $TRANSLATIONS = array( "URL cannot be empty." => "යොමුව හිස් විය නොහැක", "Error" => "දෝෂයක්", "Share" => "බෙදා හදා ගන්න", -"Delete" => "මකා දමන්න", "Rename" => "නැවත නම් කරන්න", "replace" => "ප්‍රතිස්ථාපනය කරන්න", "suggest name" => "නමක් යෝජනා කරන්න", "cancel" => "අත් හරින්න", "undo" => "නිෂ්ප්‍රභ කරන්න", -"1 file uploading" => "1 ගොනුවක් උඩගත කෙරේ", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "නම", "Size" => "ප්‍රමාණය", "Modified" => "වෙනස් කළ", -"1 folder" => "1 ෆොල්ඩරයක්", -"1 file" => "1 ගොනුවක්", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "උඩුගත කරන්න", "File handling" => "ගොනු පරිහරණය", "Maximum upload size" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය", @@ -42,6 +41,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "මෙහි කිසිවක් නොමැත. යමක් උඩුගත කරන්න", "Download" => "බාන්න", "Unshare" => "නොබෙදු", +"Delete" => "මකා දමන්න", "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." => "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න", diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index f0220822d0..d28368cc48 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Chyba", "Share" => "Zdieľať", "Delete permanently" => "Zmazať trvalo", -"Delete" => "Zmazať", "Rename" => "Premenovať", "Pending" => "Prebieha", "{new_name} already exists" => "{new_name} už existuje", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "zrušiť", "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 ", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "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", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Názov", "Size" => "Veľkosť", "Modified" => "Upravené", -"1 folder" => "1 priečinok", -"{count} folders" => "{count} priečinkov", -"1 file" => "1 súbor", -"{count} files" => "{count} súborov", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "%s could not be renamed" => "%s nemohol byť premenovaný", "Upload" => "Odoslať", "File handling" => "Nastavenie správania sa k súborom", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Žiadny súbor. Nahrajte niečo!", "Download" => "Sťahovanie", "Unshare" => "Zrušiť zdieľanie", +"Delete" => "Zmazať", "Upload too large" => "Nahrávanie je príliš veľké", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server.", "Files are being scanned, please wait." => "Čakajte, súbory sú prehľadávané.", diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index 85daabf6cf..9922a0be7e 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Napaka", "Share" => "Souporaba", "Delete permanently" => "Izbriši dokončno", -"Delete" => "Izbriši", "Rename" => "Preimenuj", "Pending" => "V čakanju ...", "{new_name} already exists" => "{new_name} že obstaja", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "prekliči", "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", +"_Uploading %n file_::_Uploading %n files_" => array("","","",""), "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.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Ime", "Size" => "Velikost", "Modified" => "Spremenjeno", -"1 folder" => "1 mapa", -"{count} folders" => "{count} map", -"1 file" => "1 datoteka", -"{count} files" => "{count} datotek", +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "%s could not be renamed" => "%s ni bilo mogoče preimenovati", "Upload" => "Pošlji", "File handling" => "Upravljanje z datotekami", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!", "Download" => "Prejmi", "Unshare" => "Prekliči souporabo", +"Delete" => "Izbriši", "Upload too large" => "Prekoračenje omejitve velikosti", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku.", "Files are being scanned, please wait." => "Poteka preučevanje datotek, počakajte ...", diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 91f53fc00b..34250b56c3 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Veprim i gabuar", "Share" => "Nda", "Delete permanently" => "Elimino përfundimisht", -"Delete" => "Elimino", "Rename" => "Riemërto", "Pending" => "Pezulluar", "{new_name} already exists" => "{new_name} ekziston", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "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.", @@ -43,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "Emri", "Size" => "Dimensioni", "Modified" => "Modifikuar", -"1 folder" => "1 dosje", -"{count} folders" => "{count} dosje", -"1 file" => "1 skedar", -"{count} files" => "{count} skedarë", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "Ngarko", "File handling" => "Trajtimi i skedarit", "Maximum upload size" => "Dimensioni maksimal i ngarkimit", @@ -66,6 +62,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Këtu nuk ka asgjë. Ngarkoni diçka!", "Download" => "Shkarko", "Unshare" => "Hiq ndarjen", +"Delete" => "Elimino", "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.", diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 09d1683a91..d73188d483 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Share" => "Дели", "Delete permanently" => "Обриши за стално", -"Delete" => "Обриши", "Rename" => "Преименуј", "Pending" => "На чекању", "{new_name} already exists" => "{new_name} већ постоји", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "cancel" => "откажи", "replaced {new_name} with {old_name}" => "замењено {new_name} са {old_name}", "undo" => "опозови", -"perform delete operation" => "обриши", -"1 file uploading" => "Отпремам 1 датотеку", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "датотеке се отпремају", "'.' is an invalid file name." => "Датотека „.“ је неисправног имена.", "File name cannot be empty." => "Име датотеке не може бити празно.", @@ -43,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "Име", "Size" => "Величина", "Modified" => "Измењено", -"1 folder" => "1 фасцикла", -"{count} folders" => "{count} фасцикле/и", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеке/а", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Отпреми", "File handling" => "Управљање датотекама", "Maximum upload size" => "Највећа величина датотеке", @@ -66,6 +62,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Овде нема ничег. Отпремите нешто!", "Download" => "Преузми", "Unshare" => "Укини дељење", +"Delete" => "Обриши", "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." => "Скенирам датотеке…", diff --git a/apps/files/l10n/sr@latin.php b/apps/files/l10n/sr@latin.php index 5b425aaa96..bc7b11b8c5 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -6,15 +6,18 @@ $TRANSLATIONS = array( "No file was uploaded" => "Nijedan fajl nije poslat", "Missing a temporary folder" => "Nedostaje privremena fascikla", "Files" => "Fajlovi", -"Delete" => "Obriši", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "Name" => "Ime", "Size" => "Veličina", "Modified" => "Zadnja izmena", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Upload" => "Pošalji", "Maximum upload size" => "Maksimalna veličina pošiljke", "Save" => "Snimi", "Nothing in here. Upload something!" => "Ovde nema ničeg. Pošaljite nešto!", "Download" => "Preuzmi", +"Delete" => "Obriši", "Upload too large" => "Pošiljka je prevelika", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." ); diff --git a/apps/files/l10n/sv.php b/apps/files/l10n/sv.php index 41206423cf..5251e2ade2 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Fel", "Share" => "Dela", "Delete permanently" => "Radera permanent", -"Delete" => "Radera", "Rename" => "Byt namn", "Pending" => "Väntar", "{new_name} already exists" => "{new_name} finns redan", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "avbryt", "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", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "files uploading" => "filer laddas upp", "'.' is an invalid file name." => "'.' är ett ogiltigt filnamn.", "File name cannot be empty." => "Filnamn kan inte vara tomt.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "Namn", "Size" => "Storlek", "Modified" => "Ändrad", -"1 folder" => "1 mapp", -"{count} folders" => "{count} mappar", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "%s could not be renamed" => "%s kunde inte namnändras", "Upload" => "Ladda upp", "File handling" => "Filhantering", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Ingenting här. Ladda upp något!", "Download" => "Ladda ner", "Unshare" => "Sluta dela", +"Delete" => "Radera", "Upload too large" => "För stor uppladdning", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern.", "Files are being scanned, please wait." => "Filer skannas, var god vänta", diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index 616248d87b..eb39218e48 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -14,7 +14,6 @@ $TRANSLATIONS = array( "URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", "Error" => "வழு", "Share" => "பகிர்வு", -"Delete" => "நீக்குக", "Rename" => "பெயர்மாற்றம்", "Pending" => "நிலுவையிலுள்ள", "{new_name} already exists" => "{new_name} ஏற்கனவே உள்ளது", @@ -23,15 +22,13 @@ $TRANSLATIONS = array( "cancel" => "இரத்து செய்க", "replaced {new_name} with {old_name}" => "{new_name} ஆனது {old_name} இனால் மாற்றப்பட்டது", "undo" => "முன் செயல் நீக்கம் ", -"1 file uploading" => "1 கோப்பு பதிவேற்றப்படுகிறது", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "செல்லுபடியற்ற பெயர்,'\\', '/', '<', '>', ':', '\"', '|', '?' மற்றும் '*' ஆகியன அனுமதிக்கப்படமாட்டாது.", "Name" => "பெயர்", "Size" => "அளவு", "Modified" => "மாற்றப்பட்டது", -"1 folder" => "1 கோப்புறை", -"{count} folders" => "{எண்ணிக்கை} கோப்புறைகள்", -"1 file" => "1 கோப்பு", -"{count} files" => "{எண்ணிக்கை} கோப்புகள்", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "பதிவேற்றுக", "File handling" => "கோப்பு கையாளுதல்", "Maximum upload size" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", @@ -49,6 +46,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "இங்கு ஒன்றும் இல்லை. ஏதாவது பதிவேற்றுக!", "Download" => "பதிவிறக்குக", "Unshare" => "பகிரப்படாதது", +"Delete" => "நீக்குக", "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." => "கோப்புகள் வருடப்படுகின்றன, தயவுசெய்து காத்திருங்கள்.", diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index bb729b0187..5a108274dd 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -2,11 +2,14 @@ $TRANSLATIONS = array( "Error" => "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", -"Delete" => "తొలగించు", "cancel" => "రద్దుచేయి", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "పేరు", "Size" => "పరిమాణం", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Save" => "భద్రపరచు", -"Folder" => "సంచయం" +"Folder" => "సంచయం", +"Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/th_TH.php b/apps/files/l10n/th_TH.php index b480237008..c101398918 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -20,7 +20,6 @@ $TRANSLATIONS = array( "URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", "Error" => "ข้อผิดพลาด", "Share" => "แชร์", -"Delete" => "ลบ", "Rename" => "เปลี่ยนชื่อ", "Pending" => "อยู่ระหว่างดำเนินการ", "{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ", @@ -29,8 +28,7 @@ $TRANSLATIONS = array( "cancel" => "ยกเลิก", "replaced {new_name} with {old_name}" => "แทนที่ {new_name} ด้วย {old_name} แล้ว", "undo" => "เลิกทำ", -"perform delete operation" => "ดำเนินการตามคำสั่งลบ", -"1 file uploading" => "กำลังอัพโหลดไฟล์ 1 ไฟล์", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "การอัพโหลดไฟล์", "'.' is an invalid file name." => "'.' เป็นชื่อไฟล์ที่ไม่ถูกต้อง", "File name cannot be empty." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", @@ -42,10 +40,8 @@ $TRANSLATIONS = array( "Name" => "ชื่อ", "Size" => "ขนาด", "Modified" => "แก้ไขแล้ว", -"1 folder" => "1 โฟลเดอร์", -"{count} folders" => "{count} โฟลเดอร์", -"1 file" => "1 ไฟล์", -"{count} files" => "{count} ไฟล์", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "อัพโหลด", "File handling" => "การจัดกาไฟล์", "Maximum upload size" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", @@ -63,6 +59,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "ยังไม่มีไฟล์ใดๆอยู่ที่นี่ กรุณาอัพโหลดไฟล์!", "Download" => "ดาวน์โหลด", "Unshare" => "ยกเลิกการแชร์", +"Delete" => "ลบ", "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." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.", diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 351b23cb95..725bebfa7d 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "Hata", "Share" => "Paylaş", "Delete permanently" => "Kalıcı olarak sil", -"Delete" => "Sil", "Rename" => "İsim değiştir.", "Pending" => "Bekliyor", "{new_name} already exists" => "{new_name} zaten mevcut", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "iptal", "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", +"_Uploading %n file_::_Uploading %n files_" => array("%n dosya yükleniyor","%n dosya yükleniyor"), "files uploading" => "Dosyalar yükleniyor", "'.' is an invalid file name." => "'.' geçersiz dosya adı.", "File name cannot be empty." => "Dosya adı boş olamaz.", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "İsim", "Size" => "Boyut", "Modified" => "Değiştirilme", -"1 folder" => "1 dizin", -"{count} folders" => "{count} dizin", -"1 file" => "1 dosya", -"{count} files" => "{count} dosya", +"_%n folder_::_%n folders_" => array("%n dizin","%n dizin"), +"_%n file_::_%n files_" => array("%n dosya","%n dosya"), "%s could not be renamed" => "%s yeniden adlandırılamadı", "Upload" => "Yükle", "File handling" => "Dosya taşıma", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Burada hiçbir şey yok. Birşeyler yükleyin!", "Download" => "İndir", "Unshare" => "Paylaşılmayan", +"Delete" => "Sil", "Upload too large" => "Yükleme çok büyük", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor.", "Files are being scanned, please wait." => "Dosyalar taranıyor, lütfen bekleyin.", diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index 819b46c50c..2eceeea44a 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -13,7 +13,6 @@ $TRANSLATIONS = array( "Error" => "خاتالىق", "Share" => "ھەمبەھىر", "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", -"Delete" => "ئۆچۈر", "Rename" => "ئات ئۆزگەرت", "Pending" => "كۈتۈۋاتىدۇ", "{new_name} already exists" => "{new_name} مەۋجۇت", @@ -21,14 +20,13 @@ $TRANSLATIONS = array( "suggest name" => "تەۋسىيە ئات", "cancel" => "ۋاز كەچ", "undo" => "يېنىۋال", -"1 file uploading" => "1 ھۆججەت يۈكلىنىۋاتىدۇ", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "ھۆججەت يۈكلىنىۋاتىدۇ", "Name" => "ئاتى", "Size" => "چوڭلۇقى", "Modified" => "ئۆزگەرتكەن", -"1 folder" => "1 قىسقۇچ", -"1 file" => "1 ھۆججەت", -"{count} files" => "{count} ھۆججەت", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "يۈكلە", "Save" => "ساقلا", "New" => "يېڭى", @@ -39,6 +37,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "بۇ جايدا ھېچنېمە يوق. Upload something!", "Download" => "چۈشۈر", "Unshare" => "ھەمبەھىرلىمە", +"Delete" => "ئۆچۈر", "Upload too large" => "يۈكلەندىغىنى بەك چوڭ", "Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" ); diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 3cb4f00029..f34383d969 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Помилка", "Share" => "Поділитися", "Delete permanently" => "Видалити назавжди", -"Delete" => "Видалити", "Rename" => "Перейменувати", "Pending" => "Очікування", "{new_name} already exists" => "{new_name} вже існує", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "cancel" => "відміна", "replaced {new_name} with {old_name}" => "замінено {new_name} на {old_name}", "undo" => "відмінити", -"perform delete operation" => "виконати операцію видалення", -"1 file uploading" => "1 файл завантажується", +"_Uploading %n file_::_Uploading %n files_" => array("","",""), "files uploading" => "файли завантажуються", "'.' is an invalid file name." => "'.' це невірне ім'я файлу.", "File name cannot be empty." => " Ім'я файлу не може бути порожнім.", @@ -43,10 +41,9 @@ $TRANSLATIONS = array( "Name" => "Ім'я", "Size" => "Розмір", "Modified" => "Змінено", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлів", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), +"%s could not be renamed" => "%s не може бути перейменований", "Upload" => "Вивантажити", "File handling" => "Робота з файлами", "Maximum upload size" => "Максимальний розмір відвантажень", @@ -66,10 +63,13 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Тут нічого немає. Відвантажте що-небудь!", "Download" => "Завантажити", "Unshare" => "Закрити доступ", +"Delete" => "Видалити", "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" => "Поточне сканування", +"directory" => "каталог", +"directories" => "каталоги", "file" => "файл", "files" => "файли", "Upgrading filesystem cache..." => "Оновлення кеша файлової системи..." diff --git a/apps/files/l10n/ur_PK.php b/apps/files/l10n/ur_PK.php index 1f08345536..15c24700df 100644 --- a/apps/files/l10n/ur_PK.php +++ b/apps/files/l10n/ur_PK.php @@ -1,6 +1,9 @@ "ایرر", +"_Uploading %n file_::_Uploading %n files_" => array("",""), +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Unshare" => "شئیرنگ ختم کریں" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/vi.php b/apps/files/l10n/vi.php index 4d0240c9ba..ae5b152ed0 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -21,7 +21,6 @@ $TRANSLATIONS = array( "Error" => "Lỗi", "Share" => "Chia sẻ", "Delete permanently" => "Xóa vĩnh vễn", -"Delete" => "Xóa", "Rename" => "Sửa tên", "Pending" => "Đang chờ", "{new_name} already exists" => "{new_name} đã tồn tại", @@ -30,8 +29,7 @@ $TRANSLATIONS = array( "cancel" => "hủy", "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", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "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", @@ -43,10 +41,8 @@ $TRANSLATIONS = array( "Name" => "Tên", "Size" => "Kích cỡ", "Modified" => "Thay đổi", -"1 folder" => "1 thư mục", -"{count} folders" => "{count} thư mục", -"1 file" => "1 tập tin", -"{count} files" => "{count} tập tin", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "Tải lên", "File handling" => "Xử lý tập tin", "Maximum upload size" => "Kích thước tối đa ", @@ -66,6 +62,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "Không có gì ở đây .Hãy tải lên một cái gì đó !", "Download" => "Tải về", "Unshare" => "Bỏ chia sẻ", +"Delete" => "Xóa", "Upload too large" => "Tập tin tải lên quá lớn", "The files you are trying to upload exceed the maximum size for file uploads on this server." => "Các tập tin bạn đang tải lên vượt quá kích thước tối đa cho phép trên máy chủ .", "Files are being scanned, please wait." => "Tập tin đang được quét ,vui lòng chờ.", diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 9b08b5dda2..d031a1e5a5 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "出错", "Share" => "分享", "Delete permanently" => "永久删除", -"Delete" => "删除", "Rename" => "重命名", "Pending" => "等待中", "{new_name} already exists" => "{new_name} 已存在", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "取消", "replaced {new_name} with {old_name}" => "已用 {old_name} 替换 {new_name}", "undo" => "撤销", -"perform delete operation" => "执行删除", -"1 file uploading" => "1 个文件正在上传", +"_Uploading %n file_::_Uploading %n files_" => array("正在上传 %n 个文件"), "files uploading" => "个文件正在上传", "'.' is an invalid file name." => "'.' 文件名不正确", "File name cannot be empty." => "文件名不能为空", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"1 folder" => "1 个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", +"_%n folder_::_%n folders_" => array("%n 个文件夹"), +"_%n file_::_%n files_" => array("%n 个文件"), "%s could not be renamed" => "不能重命名 %s", "Upload" => "上传", "File handling" => "文件处理中", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "这里没有东西.上传点什么!", "Download" => "下载", "Unshare" => "取消分享", +"Delete" => "删除", "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." => "正在扫描文件,请稍候.", diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index d4bf220590..ddd3955c2f 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "错误", "Share" => "分享", "Delete permanently" => "永久删除", -"Delete" => "删除", "Rename" => "重命名", "Pending" => "等待", "{new_name} already exists" => "{new_name} 已存在", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "取消", "replaced {new_name} with {old_name}" => "已将 {old_name}替换成 {new_name}", "undo" => "撤销", -"perform delete operation" => "进行删除操作", -"1 file uploading" => "1个文件上传中", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "文件上传中", "'.' is an invalid file name." => "'.' 是一个无效的文件名。", "File name cannot be empty." => "文件名不能为空。", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "名称", "Size" => "大小", "Modified" => "修改日期", -"1 folder" => "1个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "%s 不能被重命名", "Upload" => "上传", "File handling" => "文件处理", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "这里还什么都没有。上传些东西吧!", "Download" => "下载", "Unshare" => "取消共享", +"Delete" => "删除", "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." => "文件正在被扫描,请稍候。", diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 1f309d9b2f..a9064fa7f7 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -3,12 +3,14 @@ $TRANSLATIONS = array( "Files" => "文件", "Error" => "錯誤", "Share" => "分享", -"Delete" => "刪除", +"_Uploading %n file_::_Uploading %n files_" => array(""), "Name" => "名稱", -"{count} folders" => "{}文件夾", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Upload" => "上傳", "Save" => "儲存", "Download" => "下載", -"Unshare" => "取消分享" +"Unshare" => "取消分享", +"Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_TW.php b/apps/files/l10n/zh_TW.php index 6e0dd54fdd..b96b02e5d9 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -24,7 +24,6 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Share" => "分享", "Delete permanently" => "永久刪除", -"Delete" => "刪除", "Rename" => "重新命名", "Pending" => "等候中", "{new_name} already exists" => "{new_name} 已經存在", @@ -33,8 +32,7 @@ $TRANSLATIONS = array( "cancel" => "取消", "replaced {new_name} with {old_name}" => "使用 {new_name} 取代 {old_name}", "undo" => "復原", -"perform delete operation" => "進行刪除動作", -"1 file uploading" => "1 個檔案正在上傳", +"_Uploading %n file_::_Uploading %n files_" => array(""), "files uploading" => "檔案正在上傳中", "'.' is an invalid file name." => "'.' 是不合法的檔名。", "File name cannot be empty." => "檔名不能為空。", @@ -46,10 +44,8 @@ $TRANSLATIONS = array( "Name" => "名稱", "Size" => "大小", "Modified" => "修改", -"1 folder" => "1 個資料夾", -"{count} folders" => "{count} 個資料夾", -"1 file" => "1 個檔案", -"{count} files" => "{count} 個檔案", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "%s could not be renamed" => "無法重新命名 %s", "Upload" => "上傳", "File handling" => "檔案處理", @@ -70,6 +66,7 @@ $TRANSLATIONS = array( "Nothing in here. Upload something!" => "這裡什麼也沒有,上傳一些東西吧!", "Download" => "下載", "Unshare" => "取消共享", +"Delete" => "刪除", "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." => "正在掃描檔案,請稍等。", diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index f93c67d920..2dd27257ab 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -1,6 +1,6 @@ "No s'ha pogut actualitzar la contrasenya de la clau privada. Potser la contrasenya anterior no era correcta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La clau privada no és vàlida! Probablement la contrasenya va ser canviada des de fora del sistema ownCloud (per exemple, en el directori de l'empresa). Vostè pot actualitzar la contrasenya de clau privada en la seva configuració personal per poder recuperar l'accés en els arxius xifrats.", "Missing requirements." => "Manca de requisits.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat.", "Following users are not set up for encryption:" => "Els usuaris següents no estan configurats per a l'encriptació:", "Saving..." => "Desant...", "Your private key is not valid! Maybe the your password was changed from outside." => "La vostra clau privada no és vàlida! Potser la vostra contrasenya ha canviat des de fora.", diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 8bd4723938..89f63cc1cd 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Nelze aktualizovat heslo soukromého klíče. Možná nebylo staré heslo správně.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Váš soukromý klíč není platný! Pravděpodobně bylo heslo změněno vně systému ownCloud (např. ve vašem firemním adresáři). Heslo vašeho soukromého klíče můžete změnit ve svém osobním nastavení pro obnovení přístupu k vašim zašifrovaným souborům.", "Missing requirements." => "Nesplněné závislosti.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta.", "Following users are not set up for encryption:" => "Následující uživatelé nemají nastavené šifrování:", "Saving..." => "Ukládám...", "Your private key is not valid! Maybe the your password was changed from outside." => "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí.", diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 19e6b1d2e8..1b7069b678 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din private nøgle er gyldig! Sandsynligvis blev dit kodeord ændre uden for ownCloud systemet (f.eks. dit firmas register). Du kan opdatere dit private nøgle kodeord under personlige indstillinger, for at generhverve adgang til dine krypterede filer.", "Missing requirements." => "Manglende betingelser.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret.", +"Following users are not set up for encryption:" => "Følgende brugere er ikke sat op til kryptering:", "Saving..." => "Gemmer...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra.", "You can unlock your private key in your " => "Du kan låse din private nøgle op i din ", diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index 53c7984001..4c36d31ed6 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Eventuell war das alte Passwort falsch.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Dein privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Dein Passwort geändert (z.B. in deinem gemeinsamen Verzeichnis). Du kannst das Passwort deines privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an deine Dateien zu gelangen.", "Missing requirements." => "Fehlende Vorraussetzungen", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Eventuell wurde Ihr Passwort von außerhalb geändert.", diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 5773c35c0c..200001e6eb 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von außerhalb Ihr Passwort geändert (z.B. in Ihrem gemeinsamen Verzeichnis). Sie können das Passwort Ihres privaten Schlüssels in den persönlichen Einstellungen aktualisieren, um wieder an Ihre Dateien zu gelangen.", "Missing requirements." => "Fehlende Voraussetzungen", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", "Following users are not set up for encryption:" => "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:", "Saving..." => "Speichern...", "Your private key is not valid! Maybe the your password was changed from outside." => "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von außerhalb geändert.", diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index fd36a6fb9d..3edb7299c2 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Ei suutnud uuendada privaatse võtme parooli. Võib-olla polnud vana parool õige.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sinu privaatne võti pole toimiv! Tõenäoliselt on sinu parool muutunud väljaspool ownCloud süsteemi (näiteks ettevõtte keskhaldus). Sa saad uuendada oma privaatse võtme parooli seadete all taastamaks ligipääsu oma krüpteeritud failidele.", "Missing requirements." => "Nõutavad on puudu.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud.", +"Following users are not set up for encryption:" => "Järgmised kasutajad pole seadistatud krüpteeringuks:", "Saving..." => "Salvestamine...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sinu privaatne võti ei ole õige. Võib-olla on parool vahetatud süsteemi väliselt.", "You can unlock your private key in your " => "Saad avada oma privaatse võtme oma", diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index 63f111bd65..abf12d73d5 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Non foi posíbel actualizar o contrasinal da chave privada. É probábel que o contrasinal antigo non sexa correcto.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior (p.ex. o seu directorio corporativo). Vostede pode actualizar o contrasinal da súa chave privada nos seus axustes persoais para recuperar o acceso aos seus ficheiros", "Missing requirements." => "Non se cumpren os requisitos.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", "Following users are not set up for encryption:" => "Os seguintes usuarios non teñen configuración para o cifrado:", "Saving..." => "Gardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "A chave privada non é correcta! É probábel que o seu contrasinal teña sido cambiado desde o exterior. ", diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 09a562a64b..f9534d7eca 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Impossibile aggiornare la password della chiave privata. Forse la vecchia password non era corretta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "La chiave privata non è valida! Forse la password è stata cambiata esternamente al sistema di ownCloud (ad es. la directory aziendale). Puoi aggiornare la password della chiave privata nelle impostazioni personali per ottenere nuovamente l'accesso ai file.", "Missing requirements." => "Requisiti mancanti.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata.", "Following users are not set up for encryption:" => "I seguenti utenti non sono configurati per la cifratura:", "Saving..." => "Salvataggio in corso...", "Your private key is not valid! Maybe the your password was changed from outside." => "La tua chiave privata non è valida! Forse è stata modifica dall'esterno.", diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index 4490fcddfc..d1f8303bda 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "秘密鍵のパスワードを更新できませんでした。古いパスワードが正確でない場合があります。", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "秘密鍵が有効ではありません。パスワードがownCloudシステムの外部(例えば、企業ディレクトリ)から変更された恐れがあります。個人設定で秘密鍵のパスワードを更新して、暗号化されたファイルを回復出来ます。", "Missing requirements." => "必要要件が満たされていません。", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。", "Following users are not set up for encryption:" => "以下のユーザーは、暗号化設定がされていません:", "Saving..." => "保存中...", "Your private key is not valid! Maybe the your password was changed from outside." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 8a94b806ac..e37ccf54d6 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Kon het wachtwoord van de privésleutel niet wijzigen. Misschien was het oude wachtwoord onjuist.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Uw privésleutel is niet geldig! Misschien was uw wachtwoord van buitenaf gewijzigd. U kunt het wachtwoord van uw privésleutel aanpassen in uw persoonlijke instellingen om toegang tot uw versleutelde bestanden te vergaren.", "Missing requirements." => "Missende benodigdheden.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld.", +"Following users are not set up for encryption:" => "De volgende gebruikers hebben geen configuratie voor encryptie:", "Saving..." => "Opslaan", "Your private key is not valid! Maybe the your password was changed from outside." => "Uw privésleutel is niet geldig. Misschien was uw wachtwoord van buitenaf gewijzigd.", "You can unlock your private key in your " => "U kunt uw privésleutel deblokkeren in uw", diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 66c06c6088..ca4502ff6a 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -8,6 +8,10 @@ $TRANSLATIONS = array( "Could not change the password. Maybe the old password was not correct." => "Nie można zmienić hasła. Może stare hasło nie było poprawne.", "Private key password successfully updated." => "Pomyślnie zaktualizowano hasło klucza prywatnego.", "Could not update the private key password. Maybe the old password was not correct." => "Nie można zmienić prywatnego hasła. Może stare hasło nie było poprawne.", +"Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych.", +"Missing requirements." => "Brak wymagań.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone.", +"Following users are not set up for encryption:" => "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:", "Saving..." => "Zapisywanie...", "Your private key is not valid! Maybe the your password was changed from outside." => "Klucz prywatny nie jest poprawny! Może Twoje hasło zostało zmienione z zewnątrz.", "You can unlock your private key in your " => "Możesz odblokować swój klucz prywatny w swojej", diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 9e8122b9ce..5b8a68657b 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Não foi possível atualizar a senha de chave privada. Talvez a senha antiga esteja incorreta.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Sua chave privada não é válida! Provavelmente sua senha foi alterada fora do sistema ownCloud (por exemplo, seu diretório corporativo). Você pode atualizar sua senha de chave privada em suas configurações pessoais para recuperar o acesso a seus arquivos criptografados.", "Missing requirements." => "Requisitos não encontrados.", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado.", "Following users are not set up for encryption:" => "Seguintes usuários não estão configurados para criptografia:", "Saving..." => "Salvando...", "Your private key is not valid! Maybe the your password was changed from outside." => "Sua chave privada não é válida! Talvez sua senha tenha sido mudada.", diff --git a/apps/files_encryption/l10n/ru_RU.php b/apps/files_encryption/l10n/ru_RU.php deleted file mode 100644 index 438e6fb5e9..0000000000 --- a/apps/files_encryption/l10n/ru_RU.php +++ /dev/null @@ -1,5 +0,0 @@ - "Сохранение" -); -$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);"; diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index e5a0cf269b..8b2f264c62 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -10,6 +10,8 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Zasebnega ključa za geslo ni bilo mogoče posodobiti. Morda vnos starega gesla ni bil pravilen.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno zunaj sistema ownCloud (npr. v skupnem imeniku). Svoj zasebni ključ, ki vam bo omogočil dostop do šifriranih dokumentov, lahko posodobite v osebnih nastavitvah.", "Missing requirements." => "Manjkajoče zahteve", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno.", +"Following users are not set up for encryption:" => "Naslednji uporabniki še nimajo nastavljenega šifriranja:", "Saving..." => "Poteka shranjevanje ...", "Your private key is not valid! Maybe the your password was changed from outside." => "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno.", "You can unlock your private key in your " => "Svoj zasebni ključ lahko odklenite v", diff --git a/apps/files_encryption/l10n/sv.php b/apps/files_encryption/l10n/sv.php index ce43d7d5cf..88ba6b4715 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -10,6 +10,7 @@ $TRANSLATIONS = array( "Could not update the private key password. Maybe the old password was not correct." => "Kunde inte uppdatera den privata lösenordsnyckeln. Kanske var det gamla lösenordet fel.", "Your private key is not valid! Likely your password was changed outside the ownCloud system (e.g. your corporate directory). You can update your private key password in your personal settings to recover access to your encrypted files." => "Din privata lösenordsnyckel är inte giltig! Troligen har ditt lösenord ändrats utanför ownCloud (t.ex. i företagets katalogtjänst). Du kan uppdatera den privata lösenordsnyckeln under dina personliga inställningar för att återfå tillgång till dina filer.", "Missing requirements." => "Krav som saknas", +"Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL together with the PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad.", "Following users are not set up for encryption:" => "Följande användare har inte aktiverat kryptering:", "Saving..." => "Sparar...", "Your private key is not valid! Maybe the your password was changed from outside." => "Din privata lösenordsnyckel är inte giltig! Kanske byttes ditt lösenord från utsidan.", diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index c3e88e5944..3947b7d0c3 100755 --- a/apps/files_encryption/lib/crypt.php +++ b/apps/files_encryption/lib/crypt.php @@ -25,7 +25,6 @@ namespace OCA\Encryption; -//require_once '../3rdparty/Crypt_Blowfish/Blowfish.php'; require_once realpath(dirname(__FILE__) . '/../3rdparty/Crypt_Blowfish/Blowfish.php'); /** @@ -86,7 +85,7 @@ class Crypt { * blocks with encryption alone, hence padding is added to achieve the * required length. */ - public static function addPadding($data) { + private static function addPadding($data) { $padded = $data . 'xx'; @@ -99,7 +98,7 @@ class Crypt { * @param string $padded padded data to remove padding from * @return string unpadded data on success, false on error */ - public static function removePadding($padded) { + private static function removePadding($padded) { if (substr($padded, -2) === 'xx') { @@ -207,7 +206,7 @@ class Crypt { * @param string $passphrase * @return string encrypted file content */ - public static function encrypt($plainContent, $iv, $passphrase = '') { + private static function encrypt($plainContent, $iv, $passphrase = '') { if ($encryptedContent = openssl_encrypt($plainContent, 'AES-128-CFB', $passphrase, false, $iv)) { return $encryptedContent; @@ -228,7 +227,7 @@ class Crypt { * @throws \Exception * @return string decrypted file content */ - public static function decrypt($encryptedContent, $iv, $passphrase) { + private static function decrypt($encryptedContent, $iv, $passphrase) { if ($plainContent = openssl_decrypt($encryptedContent, 'AES-128-CFB', $passphrase, false, $iv)) { @@ -248,7 +247,7 @@ class Crypt { * @param string $iv IV to be concatenated * @returns string concatenated content */ - public static function concatIv($content, $iv) { + private static function concatIv($content, $iv) { $combined = $content . '00iv00' . $iv; @@ -261,7 +260,7 @@ class Crypt { * @param string $catFile concatenated data to be split * @returns array keys: encrypted, iv */ - public static function splitIv($catFile) { + private static function splitIv($catFile) { // Fetch encryption metadata from end of file $meta = substr($catFile, -22); @@ -378,34 +377,6 @@ class Crypt { } - - /** - * @brief Creates symmetric keyfile content using a generated key - * @param string $plainContent content to be encrypted - * @returns array keys: key, encrypted - * @note symmetricDecryptFileContent() can be used to decrypt files created using this method - * - * This function decrypts a file - */ - public static function symmetricEncryptFileContentKeyfile($plainContent) { - - $key = self::generateKey(); - - if ($encryptedContent = self::symmetricEncryptFileContent($plainContent, $key)) { - - return array( - 'key' => $key, - 'encrypted' => $encryptedContent - ); - - } else { - - return false; - - } - - } - /** * @brief Create asymmetrically encrypted keyfile content using a generated key * @param string $plainContent content to be encrypted @@ -488,43 +459,11 @@ class Crypt { } - /** - * @brief Asymetrically encrypt a string using a public key - * @param $plainContent - * @param $publicKey - * @return string encrypted file - */ - public static function keyEncrypt($plainContent, $publicKey) { - - openssl_public_encrypt($plainContent, $encryptedContent, $publicKey); - - return $encryptedContent; - - } - - /** - * @brief Asymetrically decrypt a file using a private key - * @param $encryptedContent - * @param $privatekey - * @return string decrypted file - */ - public static function keyDecrypt($encryptedContent, $privatekey) { - - $result = @openssl_private_decrypt($encryptedContent, $plainContent, $privatekey); - - if ($result) { - return $plainContent; - } - - return $result; - - } - /** * @brief Generates a pseudo random initialisation vector * @return String $iv generated IV */ - public static function generateIv() { + private static function generateIv() { if ($random = openssl_random_pseudo_bytes(12, $strong)) { @@ -550,7 +489,7 @@ class Crypt { } /** - * @brief Generate a pseudo random 1024kb ASCII key + * @brief Generate a pseudo random 1024kb ASCII key, used as file key * @returns $key Generated key */ public static function generateKey() { @@ -576,13 +515,13 @@ class Crypt { } /** - * @brief Get the blowfish encryption handeler for a key + * @brief Get the blowfish encryption handler for a key * @param $key string (optional) * @return \Crypt_Blowfish blowfish object * - * if the key is left out, the default handeler will be used + * if the key is left out, the default handler will be used */ - public static function getBlowfish($key = '') { + private static function getBlowfish($key = '') { if ($key) { @@ -596,38 +535,6 @@ class Crypt { } - /** - * @param $passphrase - * @return mixed - */ - public static function legacyCreateKey($passphrase) { - - // Generate a random integer - $key = mt_rand(10000, 99999) . mt_rand(10000, 99999) . mt_rand(10000, 99999) . mt_rand(10000, 99999); - - // Encrypt the key with the passphrase - $legacyEncKey = self::legacyEncrypt($key, $passphrase); - - return $legacyEncKey; - - } - - /** - * @brief encrypts content using legacy blowfish system - * @param string $content the cleartext message you want to encrypt - * @param string $passphrase - * @returns string encrypted content - * - * This function encrypts an content - */ - public static function legacyEncrypt($content, $passphrase = '') { - - $bf = self::getBlowfish($passphrase); - - return $bf->encrypt($content); - - } - /** * @brief decrypts content using legacy blowfish system * @param string $content the cleartext message you want to decrypt @@ -665,4 +572,4 @@ class Crypt { } } -} \ No newline at end of file +} diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 50e823585d..c6fc134fe4 100644 --- a/apps/files_encryption/lib/util.php +++ b/apps/files_encryption/lib/util.php @@ -21,30 +21,6 @@ * */ -# Bugs -# ---- -# Sharing a file to a user without encryption set up will not provide them with access but won't notify the sharer -# Sharing all files to admin for recovery purposes still in progress -# Possibly public links are broken (not tested since last merge of master) - - -# Missing features -# ---------------- -# Make sure user knows if large files weren't encrypted - - -# Test -# ---- -# Test that writing files works when recovery is enabled, and sharing API is disabled -# Test trashbin support - - -// Old Todo: -// - Crypt/decrypt button in the userinterface -// - Setting if crypto should be on by default -// - Add a setting "Don´t encrypt files larger than xx because of performance -// reasons" - namespace OCA\Encryption; /** @@ -57,45 +33,6 @@ namespace OCA\Encryption; class Util { - // Web UI: - - //// DONE: files created via web ui are encrypted - //// DONE: file created & encrypted via web ui are readable in web ui - //// DONE: file created & encrypted via web ui are readable via webdav - - - // WebDAV: - - //// DONE: new data filled files added via webdav get encrypted - //// DONE: new data filled files added via webdav are readable via webdav - //// DONE: reading unencrypted files when encryption is enabled works via - //// webdav - //// DONE: files created & encrypted via web ui are readable via webdav - - - // Legacy support: - - //// DONE: add method to check if file is encrypted using new system - //// DONE: add method to check if file is encrypted using old system - //// DONE: add method to fetch legacy key - //// DONE: add method to decrypt legacy encrypted data - - - // Admin UI: - - //// DONE: changing user password also changes encryption passphrase - - //// TODO: add support for optional recovery in case of lost passphrase / keys - //// TODO: add admin optional required long passphrase for users - //// TODO: implement flag system to allow user to specify encryption by folder, subfolder, etc. - - - // Integration testing: - - //// TODO: test new encryption with versioning - //// DONE: test new encryption with sharing - //// TODO: test new encryption with proxies - const MIGRATION_COMPLETED = 1; // migration to new encryption completed const MIGRATION_IN_PROGRESS = -1; // migration is running const MIGRATION_OPEN = 0; // user still needs to be migrated @@ -878,46 +815,22 @@ class Util { } /** - * @brief Decrypt a keyfile without knowing how it was encrypted + * @brief Decrypt a keyfile * @param string $filePath - * @param string $fileOwner * @param string $privateKey * @return bool|string - * @note Checks whether file was encrypted with openssl_seal or - * openssl_encrypt, and decrypts accrdingly - * @note This was used when 2 types of encryption for keyfiles was used, - * but now we've switched to exclusively using openssl_seal() */ - public function decryptUnknownKeyfile($filePath, $fileOwner, $privateKey) { + private function decryptKeyfile($filePath, $privateKey) { // Get the encrypted keyfile - // NOTE: the keyfile format depends on how it was encrypted! At - // this stage we don't know how it was encrypted $encKeyfile = Keymanager::getFileKey($this->view, $this->userId, $filePath); - // We need to decrypt the keyfile - // Has the file been shared yet? - if ( - $this->userId === $fileOwner - && !Keymanager::getShareKey($this->view, $this->userId, $filePath) // NOTE: we can't use isShared() here because it's a post share hook so it always returns true - ) { + // The file has a shareKey and must use it for decryption + $shareKey = Keymanager::getShareKey($this->view, $this->userId, $filePath); - // The file has no shareKey, and its keyfile must be - // decrypted conventionally - $plainKeyfile = Crypt::keyDecrypt($encKeyfile, $privateKey); - - - } else { - - // The file has a shareKey and must use it for decryption - $shareKey = Keymanager::getShareKey($this->view, $this->userId, $filePath); - - $plainKeyfile = Crypt::multiKeyDecrypt($encKeyfile, $shareKey, $privateKey); - - } + $plainKeyfile = Crypt::multiKeyDecrypt($encKeyfile, $shareKey, $privateKey); return $plainKeyfile; - } /** @@ -956,7 +869,7 @@ class Util { $fileOwner = \OC\Files\Filesystem::getOwner($filePath); // Decrypt keyfile - $plainKeyfile = $this->decryptUnknownKeyfile($filePath, $fileOwner, $privateKey); + $plainKeyfile = $this->decryptKeyfile($filePath, $privateKey); // Re-enc keyfile to (additional) sharekeys $multiEncKey = Crypt::multiKeyEncrypt($plainKeyfile, $userPubKeys); diff --git a/apps/files_encryption/tests/crypt.php b/apps/files_encryption/tests/crypt.php index 9b97df22d1..2330a45be8 100755 --- a/apps/files_encryption/tests/crypt.php +++ b/apps/files_encryption/tests/crypt.php @@ -115,130 +115,6 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } - /** - * @large - * @return String - */ - function testGenerateIv() { - - $iv = Encryption\Crypt::generateIv(); - - $this->assertEquals(16, strlen($iv)); - - return $iv; - - } - - /** - * @large - * @depends testGenerateIv - */ - function testConcatIv($iv) { - - $catFile = Encryption\Crypt::concatIv($this->dataLong, $iv); - - // Fetch encryption metadata from end of file - $meta = substr($catFile, -22); - - $identifier = substr($meta, 0, 6); - - // Fetch IV from end of file - $foundIv = substr($meta, 6); - - $this->assertEquals('00iv00', $identifier); - - $this->assertEquals($iv, $foundIv); - - // Remove IV and IV identifier text to expose encrypted content - $data = substr($catFile, 0, -22); - - $this->assertEquals($this->dataLong, $data); - - return array( - 'iv' => $iv - , - 'catfile' => $catFile - ); - - } - - /** - * @medium - * @depends testConcatIv - */ - function testSplitIv($testConcatIv) { - - // Split catfile into components - $splitCatfile = Encryption\Crypt::splitIv($testConcatIv['catfile']); - - // Check that original IV and split IV match - $this->assertEquals($testConcatIv['iv'], $splitCatfile['iv']); - - // Check that original data and split data match - $this->assertEquals($this->dataLong, $splitCatfile['encrypted']); - - } - - /** - * @medium - * @return string padded - */ - function testAddPadding() { - - $padded = Encryption\Crypt::addPadding($this->dataLong); - - $padding = substr($padded, -2); - - $this->assertEquals('xx', $padding); - - return $padded; - - } - - /** - * @medium - * @depends testAddPadding - */ - function testRemovePadding($padded) { - - $noPadding = Encryption\Crypt::RemovePadding($padded); - - $this->assertEquals($this->dataLong, $noPadding); - - } - - /** - * @medium - */ - function testEncrypt() { - - $random = openssl_random_pseudo_bytes(13); - - $iv = substr(base64_encode($random), 0, -4); // i.e. E5IG033j+mRNKrht - - $crypted = Encryption\Crypt::encrypt($this->dataUrl, $iv, 'hat'); - - $this->assertNotEquals($this->dataUrl, $crypted); - - } - - /** - * @medium - */ - function testDecrypt() { - - $random = openssl_random_pseudo_bytes(13); - - $iv = substr(base64_encode($random), 0, -4); // i.e. E5IG033j+mRNKrht - - $crypted = Encryption\Crypt::encrypt($this->dataUrl, $iv, 'hat'); - - $decrypt = Encryption\Crypt::decrypt($crypted, $iv, 'hat'); - - $this->assertEquals($this->dataUrl, $decrypt); - - } - function testDecryptPrivateKey() { // test successful decrypt @@ -364,14 +240,12 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { //print_r($r); // Join IVs and their respective data chunks - $e = array( - $r[0] . $r[1], - $r[2] . $r[3], - $r[4] . $r[5], - $r[6] . $r[7], - $r[8] . $r[9], - $r[10] . $r[11] - ); //.$r[11], $r[12].$r[13], $r[14] ); + $e = array(); + $i = 0; + while ($i < count($r)-1) { + $e[] = $r[$i] . $r[$i+1]; + $i = $i + 2; + } //print_r($e); @@ -466,24 +340,6 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { $this->view->unlink($this->userId . '/files/' . $filename); } - /** - * @medium - */ - function testSymmetricEncryptFileContentKeyfile() { - - # TODO: search in keyfile for actual content as IV will ensure this test always passes - - $crypted = Encryption\Crypt::symmetricEncryptFileContentKeyfile($this->dataUrl); - - $this->assertNotEquals($this->dataUrl, $crypted['encrypted']); - - - $decrypt = Encryption\Crypt::symmetricDecryptFileContent($crypted['encrypted'], $crypted['key']); - - $this->assertEquals($this->dataUrl, $decrypt); - - } - /** * @medium */ @@ -526,49 +382,13 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } - /** - * @medium - */ - function testKeyEncrypt() { - - // Generate keypair - $pair1 = Encryption\Crypt::createKeypair(); - - // Encrypt data - $crypted = Encryption\Crypt::keyEncrypt($this->dataUrl, $pair1['publicKey']); - - $this->assertNotEquals($this->dataUrl, $crypted); - - // Decrypt data - $decrypt = Encryption\Crypt::keyDecrypt($crypted, $pair1['privateKey']); - - $this->assertEquals($this->dataUrl, $decrypt); - - } - - /** - * @medium - * @brief test encryption using legacy blowfish method - */ - function testLegacyEncryptShort() { - - $crypted = Encryption\Crypt::legacyEncrypt($this->dataShort, $this->pass); - - $this->assertNotEquals($this->dataShort, $crypted); - - # TODO: search inencrypted text for actual content to ensure it - # genuine transformation - - return $crypted; - - } - /** * @medium * @brief test decryption using legacy blowfish method - * @depends testLegacyEncryptShort */ - function testLegacyDecryptShort($crypted) { + function testLegacyDecryptShort() { + + $crypted = $this->legacyEncrypt($this->dataShort, $this->pass); $decrypted = Encryption\Crypt::legacyBlockDecrypt($crypted, $this->pass); @@ -576,55 +396,17 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { } - /** - * @medium - * @brief test encryption using legacy blowfish method - */ - function testLegacyEncryptLong() { - - $crypted = Encryption\Crypt::legacyEncrypt($this->dataLong, $this->pass); - - $this->assertNotEquals($this->dataLong, $crypted); - - # TODO: search inencrypted text for actual content to ensure it - # genuine transformation - - return $crypted; - - } - /** * @medium * @brief test decryption using legacy blowfish method - * @depends testLegacyEncryptLong */ - function testLegacyDecryptLong($crypted) { + function testLegacyDecryptLong() { + + $crypted = $this->legacyEncrypt($this->dataLong, $this->pass); $decrypted = Encryption\Crypt::legacyBlockDecrypt($crypted, $this->pass); $this->assertEquals($this->dataLong, $decrypted); - - $this->assertFalse(Encryption\Crypt::getBlowfish('')); - } - - /** - * @medium - * @brief test generation of legacy encryption key - * @depends testLegacyDecryptShort - */ - function testLegacyCreateKey() { - - // Create encrypted key - $encKey = Encryption\Crypt::legacyCreateKey($this->pass); - - // Decrypt key - $key = Encryption\Crypt::legacyBlockDecrypt($encKey, $this->pass); - - $this->assertTrue(is_numeric($key)); - - // Check that key is correct length - $this->assertEquals(20, strlen($key)); - } /** @@ -871,4 +653,20 @@ class Test_Encryption_Crypt extends \PHPUnit_Framework_TestCase { // tear down $view->unlink($filename); } + + + /** + * @brief encryption using legacy blowfish method + * @param $data string data to encrypt + * @param $passwd string password + * @return string + */ + function legacyEncrypt($data, $passwd) { + + $bf = new \Crypt_Blowfish($passwd); + $crypted = $bf->encrypt($data); + + return $crypted; + } + } diff --git a/apps/files_encryption/tests/keymanager.php b/apps/files_encryption/tests/keymanager.php index b644856d95..13f8c3197c 100644 --- a/apps/files_encryption/tests/keymanager.php +++ b/apps/files_encryption/tests/keymanager.php @@ -141,10 +141,7 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { */ function testSetFileKey() { - # NOTE: This cannot be tested until we are able to break out - # of the FileSystemView data directory root - - $key = Encryption\Crypt::symmetricEncryptFileContentKeyfile($this->randomKey, 'hat'); + $key = $this->randomKey; $file = 'unittest-' . time() . '.txt'; @@ -152,24 +149,17 @@ class Test_Encryption_Keymanager extends \PHPUnit_Framework_TestCase { $proxyStatus = \OC_FileProxy::$enabled; \OC_FileProxy::$enabled = false; - $this->view->file_put_contents($this->userId . '/files/' . $file, $key['encrypted']); + $this->view->file_put_contents($this->userId . '/files/' . $file, $this->dataShort); - // Re-enable proxy - our work is done - \OC_FileProxy::$enabled = $proxyStatus; + Encryption\Keymanager::setFileKey($this->view, $file, $this->userId, $key); - //$view = new \OC_FilesystemView( '/' . $this->userId . '/files_encryption/keyfiles' ); - Encryption\Keymanager::setFileKey($this->view, $file, $this->userId, $key['key']); - - // enable encryption proxy - $proxyStatus = \OC_FileProxy::$enabled; - \OC_FileProxy::$enabled = true; + $this->assertTrue($this->view->file_exists('/' . $this->userId . '/files_encryption/keyfiles/' . $file . '.key')); // cleanup $this->view->unlink('/' . $this->userId . '/files/' . $file); // change encryption proxy to previous state \OC_FileProxy::$enabled = $proxyStatus; - } /** diff --git a/apps/files_external/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php deleted file mode 100644 index 6dcd0460ad..0000000000 --- a/apps/files_external/l10n/ru_RU.php +++ /dev/null @@ -1,6 +0,0 @@ - "Группы", -"Delete" => "Удалить" -); -$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);"; diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index e3a2cf0b30..14e974d65c 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -93,14 +93,18 @@ class OC_Mount_Config { 'root' => '&Root', 'secure' => '!Secure ftps://')); - if(OC_Mount_Config::checksmbclient()) $backends['\OC\Files\Storage\SMB']=array( - 'backend' => 'SMB / CIFS', - 'configuration' => array( - 'host' => 'URL', - 'user' => 'Username', - 'password' => '*Password', - 'share' => 'Share', - 'root' => '&Root')); + if (!OC_Util::runningOnWindows()) { + if (OC_Mount_Config::checksmbclient()) { + $backends['\OC\Files\Storage\SMB'] = array( + 'backend' => 'SMB / CIFS', + 'configuration' => array( + 'host' => 'URL', + 'user' => 'Username', + 'password' => '*Password', + 'share' => 'Share', + 'root' => '&Root')); + } + } if(OC_Mount_Config::checkcurl()) $backends['\OC\Files\Storage\DAV']=array( 'backend' => 'ownCloud / WebDAV', @@ -444,8 +448,10 @@ class OC_Mount_Config { public static function checkDependencies() { $l= new OC_L10N('files_external'); $txt=''; - if(!OC_Mount_Config::checksmbclient()) { - $txt.=$l->t('Warning: "smbclient" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it.').'
'; + if (!OC_Util::runningOnWindows()) { + if(!OC_Mount_Config::checksmbclient()) { + $txt.=$l->t('Warning: "smbclient" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it.').'
'; + } } if(!OC_Mount_Config::checkphpftp()) { $txt.=$l->t('Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it.').'
'; diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 4869322d87..f98be318f1 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -173,6 +173,7 @@ class DAV extends \OC\Files\Storage\Common{ curl_setopt($curl, CURLOPT_USERPWD, $this->user.':'.$this->password); curl_setopt($curl, CURLOPT_URL, $this->createBaseUri().$path); curl_setopt($curl, CURLOPT_FILE, $fp); + curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_exec ($curl); curl_close ($curl); diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index eb5a6e8cb7..b2efafde4e 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -4,6 +4,10 @@ $(document).ready(function() { if (typeof OC.Share !== 'undefined' && typeof FileActions !== 'undefined' && !disableSharing) { + $('#fileList').one('fileActionsReady',function(){ + OC.Share.loadIcons('file'); + }); + FileActions.register('all', 'Share', OC.PERMISSION_READ, OC.imagePath('core', 'actions/share'), function(filename) { if ($('#dir').val() == '/') { var item = $('#dir').val() + filename; @@ -33,6 +37,5 @@ $(document).ready(function() { OC.Share.showDropDown(itemType, $(tr).data('id'), appendTo, true, possiblePermissions); } }); - OC.Share.loadIcons('file'); } -}); +}); \ No newline at end of file diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 6de17591cb..fe230902ff 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -3,6 +3,12 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Parool on vale. Proovi uuesti.", "Password" => "Parool", "Submit" => "Saada", +"Sorry, this link doesn’t seem to work anymore." => "Vabandust, see link ei tundu enam toimivat.", +"Reasons might be:" => "Põhjused võivad olla:", +"the item was removed" => "üksus on eemaldatud", +"the link expired" => "link on aegunud", +"sharing is disabled" => "jagamine on peatatud", +"For more info, please ask the person who sent this link." => "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole.", "%s shared the folder %s with you" => "%s jagas sinuga kausta %s", "%s shared the file %s with you" => "%s jagas sinuga faili %s", "Download" => "Lae alla", diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index c8f3e8e89e..9c46a1ab4b 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -3,6 +3,12 @@ $TRANSLATIONS = array( "The password is wrong. Try again." => "Wachtwoord ongeldig. Probeer het nogmaals.", "Password" => "Wachtwoord", "Submit" => "Verzenden", +"Sorry, this link doesn’t seem to work anymore." => "Sorry, deze link lijkt niet meer in gebruik te zijn.", +"Reasons might be:" => "Redenen kunnen zijn:", +"the item was removed" => "bestand was verwijderd", +"the link expired" => "de link is verlopen", +"sharing is disabled" => "delen is uitgeschakeld", +"For more info, please ask the person who sent this link." => "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd.", "%s shared the folder %s with you" => "%s deelt de map %s met u", "%s shared the file %s with you" => "%s deelt het bestand %s met u", "Download" => "Downloaden", diff --git a/apps/files_sharing/l10n/ru_RU.php b/apps/files_sharing/l10n/ru_RU.php deleted file mode 100644 index 52a41b1f51..0000000000 --- a/apps/files_sharing/l10n/ru_RU.php +++ /dev/null @@ -1,5 +0,0 @@ - "Загрузка" -); -$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);"; diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php index 206e1921fa..5c426672c8 100644 --- a/apps/files_sharing/l10n/zh_CN.GB2312.php +++ b/apps/files_sharing/l10n/zh_CN.GB2312.php @@ -1,7 +1,14 @@ "密码错误。请重试。", "Password" => "密码", "Submit" => "提交", +"Sorry, this link doesn’t seem to work anymore." => "对不起,这个链接看起来是错误的。", +"Reasons might be:" => "原因可能是:", +"the item was removed" => "项目已经移除", +"the link expired" => "链接已过期", +"sharing is disabled" => "分享已经被禁用", +"For more info, please ask the person who sent this link." => "欲了解更多信息,请联系将此链接发送给你的人。", "%s shared the folder %s with you" => "%s 与您分享了文件夹 %s", "%s shared the file %s with you" => "%s 与您分享了文件 %s", "Download" => "下载", diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index c3c958b07a..b14a7240cb 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -188,21 +188,13 @@ function processSelection(){ $('.selectedActions').show(); var selection=''; if(selectedFolders.length>0){ - if(selectedFolders.length === 1){ - selection+=t('files','1 folder'); - }else{ - selection+=t('files','{count} folders',{count: selectedFolders.length}); - } + selection += n('files', '%n folder', '%n folders', selectedFolders.length); if(selectedFiles.length>0){ selection+=' & '; } } if(selectedFiles.length>0){ - if(selectedFiles.length === 1){ - selection+=t('files','1 file'); - }else{ - selection+=t('files','{count} files',{count: selectedFiles.length}); - } + selection += n('files', '%n file', '%n files', selectedFiles.length); } $('#headerName>span.name').text(selection); $('#modified').text(''); diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index ccb80f959e..710a9d1419 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "حذف بشكل دائم", "Name" => "اسم", "Deleted" => "تم الحذف", -"1 folder" => "مجلد عدد 1", -"{count} folders" => "{count} مجلدات", -"1 file" => "ملف واحد", -"{count} files" => "{count} ملفات", +"_%n folder_::_%n folders_" => array("","","","","",""), +"_%n file_::_%n files_" => array("","","","","",""), "Nothing in here. Your trash bin is empty!" => "لا يوجد شيء هنا. سلة المهملات خاليه.", "Restore" => "استعيد", "Delete" => "إلغاء", diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 5ae41a324a..3c12e6906e 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Изтриване завинаги", "Name" => "Име", "Deleted" => "Изтрито", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 файл", -"{count} files" => "{count} файла", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Няма нищо. Кофата е празна!", "Restore" => "Възтановяване", "Delete" => "Изтриване", diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index a33a6de89a..c3741dbd1d 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "সমস্যা", "Name" => "রাম", -"1 folder" => "১টি ফোল্ডার", -"{count} folders" => "{count} টি ফোল্ডার", -"1 file" => "১টি ফাইল", -"{count} files" => "{count} টি ফাইল", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "মুছে" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ca.php b/apps/files_trashbin/l10n/ca.php index 2e4fa4dbe0..6e226b7fc8 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Esborra permanentment", "Name" => "Nom", "Deleted" => "Eliminat", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetes", -"1 file" => "1 fitxer", -"{count} files" => "{count} fitxers", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "restaurat", "Nothing in here. Your trash bin is empty!" => "La paperera està buida!", "Restore" => "Recupera", diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index eef9accb83..383d2a217f 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Trvale odstranit", "Name" => "Název", "Deleted" => "Smazáno", -"1 folder" => "1 složka", -"{count} folders" => "{count} složky", -"1 file" => "1 soubor", -"{count} files" => "{count} soubory", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "obnoveno", "Nothing in here. Your trash bin is empty!" => "Žádný obsah. Váš koš je prázdný.", "Restore" => "Obnovit", diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index af0c5239b5..123a445c2c 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "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", +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Does dim byd yma. Mae eich bin sbwriel yn wag!", "Restore" => "Adfer", "Delete" => "Dileu", diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 4e0bbc23a8..2fbc089387 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slet permanent", "Name" => "Navn", "Deleted" => "Slettet", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("%n mappe","%n mapper"), +"_%n file_::_%n files_" => array("%n fil","%n filer"), "restored" => "Gendannet", "Nothing in here. Your trash bin is empty!" => "Intet at se her. Din papirkurv er tom!", "Restore" => "Gendan", diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index 856317f3c6..ad6e0839bd 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Endgültig löschen", "Name" => "Name", "Deleted" => "gelöscht", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array("","%n Ordner"), +"_%n file_::_%n files_" => array("","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, der Papierkorb ist leer!", "Restore" => "Wiederherstellen", diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index bd1e3fb9e2..0df6941280 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Endgültig löschen", "Name" => "Name", "Deleted" => "Gelöscht", -"1 folder" => "1 Ordner", -"{count} folders" => "{count} Ordner", -"1 file" => "1 Datei", -"{count} files" => "{count} Dateien", +"_%n folder_::_%n folders_" => array("%n Ordner","%n Ordner"), +"_%n file_::_%n files_" => array("%n Dateien","%n Dateien"), "restored" => "Wiederhergestellt", "Nothing in here. Your trash bin is empty!" => "Nichts zu löschen, Ihr Papierkorb ist leer!", "Restore" => "Wiederherstellen", diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index 19331cd1f6..759e5299e4 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Μόνιμη διαγραφή", "Name" => "Όνομα", "Deleted" => "Διαγράφηκε", -"1 folder" => "1 φάκελος", -"{count} folders" => "{count} φάκελοι", -"1 file" => "1 αρχείο", -"{count} files" => "{count} αρχεία", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "έγινε επαναφορά", "Nothing in here. Your trash bin is empty!" => "Δεν υπάρχει τίποτα εδώ. Ο κάδος σας είναι άδειος!", "Restore" => "Επαναφορά", diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index 373a503fc6..d1e30cba58 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -3,10 +3,8 @@ $TRANSLATIONS = array( "Error" => "Eraro", "Delete permanently" => "Forigi por ĉiam", "Name" => "Nomo", -"1 folder" => "1 dosierujo", -"{count} folders" => "{count} dosierujoj", -"1 file" => "1 dosiero", -"{count} files" => "{count} dosierujoj", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Restore" => "Restaŭri", "Delete" => "Forigi", "Deleted Files" => "Forigitaj dosieroj" diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index 58e5c6c903..956d89ae68 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nombre", "Deleted" => "Eliminado", -"1 folder" => "1 carpeta", -"{count} folders" => "{count} carpetas", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "recuperado", "Nothing in here. Your trash bin is empty!" => "No hay nada aquí. ¡Tu papelera esta vacía!", "Restore" => "Recuperar", diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index 98f140983c..6f47255b50 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Borrar de manera permanente", "Name" => "Nombre", "Deleted" => "Borrado", -"1 folder" => "1 directorio", -"{count} folders" => "{count} directorios", -"1 file" => "1 archivo", -"{count} files" => "{count} archivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "No hay nada acá. ¡La papelera está vacía!", "Restore" => "Recuperar", "Delete" => "Borrar", diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 36060b1628..2cfcafa804 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -8,10 +8,9 @@ $TRANSLATIONS = array( "Delete permanently" => "Kustuta jäädavalt", "Name" => "Nimi", "Deleted" => "Kustutatud", -"1 folder" => "1 kaust", -"{count} folders" => "{count} kausta", -"1 file" => "1 fail", -"{count} files" => "{count} faili", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), +"restored" => "taastatud", "Nothing in here. Your trash bin is empty!" => "Siin pole midagi. Sinu prügikast on tühi!", "Restore" => "Taasta", "Delete" => "Kustuta", diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 2649124836..b114dc3386 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Ezabatu betirako", "Name" => "Izena", "Deleted" => "Ezabatuta", -"1 folder" => "karpeta bat", -"{count} folders" => "{count} karpeta", -"1 file" => "fitxategi bat", -"{count} files" => "{count} fitxategi", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Ez dago ezer ez. Zure zakarrontzia hutsik dago!", "Restore" => "Berrezarri", "Delete" => "Ezabatu", diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 33a8d418cc..654f20a5f1 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "حذف قطعی", "Name" => "نام", "Deleted" => "حذف شده", -"1 folder" => "1 پوشه", -"{count} folders" => "{ شمار} پوشه ها", -"1 file" => "1 پرونده", -"{count} files" => "{ شمار } فایل ها", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "هیچ چیزی اینجا نیست. سطل زباله ی شما خالی است.", "Restore" => "بازیابی", "Delete" => "حذف", diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index fec0567fbe..f03950981c 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Poista pysyvästi", "Name" => "Nimi", "Deleted" => "Poistettu", -"1 folder" => "1 kansio", -"{count} folders" => "{count} kansiota", -"1 file" => "1 tiedosto", -"{count} files" => "{count} tiedostoa", +"_%n folder_::_%n folders_" => array("%n kansio","%n kansiota"), +"_%n file_::_%n files_" => array("%n tiedosto","%n tiedostoa"), "restored" => "palautettu", "Nothing in here. Your trash bin is empty!" => "Tyhjää täynnä! Roskakorissa ei ole mitään.", "Restore" => "Palauta", diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 17c524d712..8854190e2c 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Supprimer de façon définitive", "Name" => "Nom", "Deleted" => "Effacé", -"1 folder" => "1 dossier", -"{count} folders" => "{count} dossiers", -"1 file" => "1 fichier", -"{count} files" => "{count} fichiers", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Il n'y a rien ici. Votre corbeille est vide !", "Restore" => "Restaurer", "Delete" => "Supprimer", diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index 9b222e6e15..568c17607f 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", "Deleted" => "Eliminado", -"1 folder" => "1 cartafol", -"{count} folders" => "{count} cartafoles", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array("%n cartafol","%n cartafoles"), +"_%n file_::_%n files_" => array("%n ficheiro","%n ficheiros"), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Aquí non hai nada. O cesto do lixo está baleiro!", "Restore" => "Restablecer", diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 1a0e3f4772..6aa6264a31 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "מחיקה לצמיתות", "Name" => "שם", "Deleted" => "נמחק", -"1 folder" => "תיקייה אחת", -"{count} folders" => "{count} תיקיות", -"1 file" => "קובץ אחד", -"{count} files" => "{count} קבצים", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "אין כאן שום דבר. סל המיחזור שלך ריק!", "Restore" => "שחזור", "Delete" => "מחיקה", diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index 8e8fd22f8e..d227b4979a 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Greška", "Name" => "Ime", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $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;"; diff --git a/apps/files_trashbin/l10n/hu_HU.php b/apps/files_trashbin/l10n/hu_HU.php index 7ed9eb7eba..aac6cf7800 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Végleges törlés", "Name" => "Név", "Deleted" => "Törölve", -"1 folder" => "1 mappa", -"{count} folders" => "{count} mappa", -"1 file" => "1 fájl", -"{count} files" => "{count} fájl", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "visszaállítva", "Nothing in here. Your trash bin is empty!" => "Itt nincs semmi. Az Ön szemetes mappája üres!", "Restore" => "Visszaállítás", diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index f933bec8fe..6ff58b5620 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,5 +1,7 @@ array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Ջնջել" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ia.php b/apps/files_trashbin/l10n/ia.php index 7709ef030e..c583344a81 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nomine", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Deler" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/id.php b/apps/files_trashbin/l10n/id.php index 4fbe154963..6aad1302f4 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Hapus secara permanen", "Name" => "Nama", "Deleted" => "Dihapus", -"1 folder" => "1 folder", -"{count} folders" => "{count} folder", -"1 file" => "1 berkas", -"{count} files" => "{count} berkas", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Tempat sampah anda kosong!", "Restore" => "Pulihkan", "Delete" => "Hapus", diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 1cf794db97..55ae433646 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "Villa", "Name" => "Nafn", -"1 folder" => "1 mappa", -"{count} folders" => "{count} möppur", -"1 file" => "1 skrá", -"{count} files" => "{count} skrár", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Eyða" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/it.php b/apps/files_trashbin/l10n/it.php index 0843cd5c2e..0dc2b938f8 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Elimina definitivamente", "Name" => "Nome", "Deleted" => "Eliminati", -"1 folder" => "1 cartella", -"{count} folders" => "{count} cartelle", -"1 file" => "1 file", -"{count} files" => "{count} file", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "ripristinati", "Nothing in here. Your trash bin is empty!" => "Qui non c'è niente. Il tuo cestino è vuoto.", "Restore" => "Ripristina", diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index 40fc0ded83..eb9748d57c 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "完全に削除する", "Name" => "名前", "Deleted" => "削除済み", -"1 folder" => "1 フォルダ", -"{count} folders" => "{count} フォルダ", -"1 file" => "1 ファイル", -"{count} files" => "{count} ファイル", +"_%n folder_::_%n folders_" => array("%n個のフォルダ"), +"_%n file_::_%n files_" => array("%n個のファイル"), "restored" => "復元済", "Nothing in here. Your trash bin is empty!" => "ここには何もありません。ゴミ箱は空です!", "Restore" => "復元", diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 6390613642..236d8951e9 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "სრულად წაშლა", "Name" => "სახელი", "Deleted" => "წაშლილი", -"1 folder" => "1 საქაღალდე", -"{count} folders" => "{count} საქაღალდე", -"1 file" => "1 ფაილი", -"{count} files" => "{count} ფაილი", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "აქ არაფერი არ არის. სანაგვე ყუთი ცარიელია!", "Restore" => "აღდგენა", "Delete" => "წაშლა", diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 68845b5472..f2e604d759 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -3,10 +3,8 @@ $TRANSLATIONS = array( "Error" => "오류", "Delete permanently" => "영원히 삭제", "Name" => "이름", -"1 folder" => "폴더 1개", -"{count} folders" => "폴더 {count}개", -"1 file" => "파일 1개", -"{count} files" => "파일 {count}개", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Restore" => "복원", "Delete" => "삭제" ); diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index c1962a4075..3f110f0600 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,6 +1,8 @@ "هه‌ڵه", -"Name" => "ناو" +"Name" => "ناو", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lb.php b/apps/files_trashbin/l10n/lb.php index b434ae7217..cbfd515a8b 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Fehler", "Name" => "Numm", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Läschen" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/lt_LT.php b/apps/files_trashbin/l10n/lt_LT.php index 4fd43bd17b..c4a12ff217 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Ištrinti negrįžtamai", "Name" => "Pavadinimas", "Deleted" => "Ištrinti", -"1 folder" => "1 aplankalas", -"{count} folders" => "{count} aplankalai", -"1 file" => "1 failas", -"{count} files" => "{count} failai", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Nieko nėra. Jūsų šiukšliadėžė tuščia!", "Restore" => "Atstatyti", "Delete" => "Ištrinti", diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index 5753162e29..ccbf117fda 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Dzēst pavisam", "Name" => "Nosaukums", "Deleted" => "Dzēsts", -"1 folder" => "1 mape", -"{count} folders" => "{count} mapes", -"1 file" => "1 datne", -"{count} files" => "{count} datnes", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Šeit nekā nav. Jūsu miskaste ir tukša!", "Restore" => "Atjaunot", "Delete" => "Dzēst", diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 078140039b..965518dbc8 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "Грешка", "Name" => "Име", -"1 folder" => "1 папка", -"{count} folders" => "{count} папки", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеки", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Избриши" ); $PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_trashbin/l10n/ms_MY.php b/apps/files_trashbin/l10n/ms_MY.php index 1972eba031..1b5ca07c70 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Name" => "Nama", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Delete" => "Padam" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/nb_NO.php b/apps/files_trashbin/l10n/nb_NO.php index e650904a41..8a69b3d87a 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slett permanent", "Name" => "Navn", "Deleted" => "Slettet", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Søppelkassen din er tom!", "Restore" => "Gjenopprett", "Delete" => "Slett", diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 21b6d39378..2c6dcb2fcb 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Verwijder definitief", "Name" => "Naam", "Deleted" => "Verwijderd", -"1 folder" => "1 map", -"{count} folders" => "{count} mappen", -"1 file" => "1 bestand", -"{count} files" => "{count} bestanden", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "hersteld", "Nothing in here. Your trash bin is empty!" => "Niets te vinden. Uw prullenbak is leeg!", "Restore" => "Herstellen", diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 3e1f9b819a..9e351668e3 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Slett for godt", "Name" => "Namn", "Deleted" => "Sletta", -"1 folder" => "1 mappe", -"{count} folders" => "{count} mapper", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Ingenting her. Papirkorga di er tom!", "Restore" => "Gjenopprett", "Delete" => "Slett", diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index b472683f08..a62902c3b7 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -2,6 +2,8 @@ $TRANSLATIONS = array( "Error" => "Error", "Name" => "Nom", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "Escafa" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pl.php b/apps/files_trashbin/l10n/pl.php index d31a671eb5..e8295e2ff0 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Trwale usuń", "Name" => "Nazwa", "Deleted" => "Usunięte", -"1 folder" => "1 folder", -"{count} folders" => "Ilość folderów: {count}", -"1 file" => "1 plik", -"{count} files" => "Ilość plików: {count}", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "przywrócony", "Nothing in here. Your trash bin is empty!" => "Nic tu nie ma. Twój kosz jest pusty!", "Restore" => "Przywróć", diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index 26eea51b81..1e3c67ba02 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Excluir permanentemente", "Name" => "Nome", "Deleted" => "Excluído", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 arquivo", -"{count} files" => "{count} arquivos", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "restaurado", "Nothing in here. Your trash bin is empty!" => "Nada aqui. Sua lixeira está vazia!", "Restore" => "Restaurar", diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index 15213892d2..0c88d132b5 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Eliminar permanentemente", "Name" => "Nome", "Deleted" => "Apagado", -"1 folder" => "1 pasta", -"{count} folders" => "{count} pastas", -"1 file" => "1 ficheiro", -"{count} files" => "{count} ficheiros", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "Restaurado", "Nothing in here. Your trash bin is empty!" => "Não hà ficheiros. O lixo está vazio!", "Restore" => "Restaurar", diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 3c38f16b39..0b1d2cd9e1 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -3,10 +3,8 @@ $TRANSLATIONS = array( "Error" => "Eroare", "Delete permanently" => "Stergere permanenta", "Name" => "Nume", -"1 folder" => "1 folder", -"{count} folders" => "{count} foldare", -"1 file" => "1 fisier", -"{count} files" => "{count} fisiere", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Delete" => "Șterge" ); $PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_trashbin/l10n/ru.php b/apps/files_trashbin/l10n/ru.php index d883115281..909e4d7131 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Удалено навсегда", "Name" => "Имя", "Deleted" => "Удалён", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлов", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "восстановлен", "Nothing in here. Your trash bin is empty!" => "Здесь ничего нет. Ваша корзина пуста!", "Restore" => "Восстановить", diff --git a/apps/files_trashbin/l10n/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php deleted file mode 100644 index 3fda38c66b..0000000000 --- a/apps/files_trashbin/l10n/ru_RU.php +++ /dev/null @@ -1,7 +0,0 @@ - "Ошибка", -"Name" => "Имя", -"Delete" => "Удалить" -); -$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);"; diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 9de1c00989..6dad84437c 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -2,8 +2,8 @@ $TRANSLATIONS = array( "Error" => "දෝෂයක්", "Name" => "නම", -"1 folder" => "1 ෆොල්ඩරයක්", -"1 file" => "1 ගොනුවක්", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "මකා දමන්න" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sk_SK.php b/apps/files_trashbin/l10n/sk_SK.php index 552a69f4fc..0f78da5fc3 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Zmazať trvalo", "Name" => "Názov", "Deleted" => "Zmazané", -"1 folder" => "1 priečinok", -"{count} folders" => "{count} priečinkov", -"1 file" => "1 súbor", -"{count} files" => "{count} súborov", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "obnovené", "Nothing in here. Your trash bin is empty!" => "Žiadny obsah. Kôš je prázdny!", "Restore" => "Obnoviť", diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index 4140bb8d59..eb2d42a18f 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Izbriši dokončno", "Name" => "Ime", "Deleted" => "Izbrisano", -"1 folder" => "1 mapa", -"{count} folders" => "{count} map", -"1 file" => "1 datoteka", -"{count} files" => "{count} datotek", +"_%n folder_::_%n folders_" => array("","","",""), +"_%n file_::_%n files_" => array("","","",""), "Nothing in here. Your trash bin is empty!" => "Mapa smeti je prazna.", "Restore" => "Obnovi", "Delete" => "Izbriši", diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index a0dae065b7..1b7b5b828c 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "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ë", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Nothing in here. Your trash bin is empty!" => "Këtu nuk ka asgjë. Koshi juaj është bosh!", "Restore" => "Rivendos", "Delete" => "Elimino", diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 8302df5f26..7311e759f9 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -5,10 +5,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Обриши за стално", "Name" => "Име", "Deleted" => "Обрисано", -"1 folder" => "1 фасцикла", -"{count} folders" => "{count} фасцикле/и", -"1 file" => "1 датотека", -"{count} files" => "{count} датотеке/а", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Nothing in here. Your trash bin is empty!" => "Овде нема ништа. Корпа за отпатке је празна.", "Restore" => "Врати", "Delete" => "Обриши" diff --git a/apps/files_trashbin/l10n/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index 0511d9f609..483d1e3ca2 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -1,6 +1,8 @@ "Ime", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "Delete" => "Obriši" ); $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);"; diff --git a/apps/files_trashbin/l10n/sv.php b/apps/files_trashbin/l10n/sv.php index 9eb83734b4..b0752cbbe8 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Radera permanent", "Name" => "Namn", "Deleted" => "Raderad", -"1 folder" => "1 mapp", -"{count} folders" => "{count} mappar", -"1 file" => "1 fil", -"{count} files" => "{count} filer", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "restored" => "återställd", "Nothing in here. Your trash bin is empty!" => "Ingenting här. Din papperskorg är tom!", "Restore" => "Återskapa", diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index 35253900b1..ed93b459c7 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -2,10 +2,8 @@ $TRANSLATIONS = array( "Error" => "வழு", "Name" => "பெயர்", -"1 folder" => "1 கோப்புறை", -"{count} folders" => "{எண்ணிக்கை} கோப்புறைகள்", -"1 file" => "1 கோப்பு", -"{count} files" => "{எண்ணிக்கை} கோப்புகள்", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "நீக்குக" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/te.php b/apps/files_trashbin/l10n/te.php index f89a9fda5f..0d803a8e64 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -3,6 +3,8 @@ $TRANSLATIONS = array( "Error" => "పొరపాటు", "Delete permanently" => "శాశ్వతంగా తొలగించు", "Name" => "పేరు", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Delete" => "తొలగించు" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/th_TH.php b/apps/files_trashbin/l10n/th_TH.php index dc49155b9b..31caa11aac 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -4,10 +4,8 @@ $TRANSLATIONS = array( "Error" => "ข้อผิดพลาด", "Name" => "ชื่อ", "Deleted" => "ลบแล้ว", -"1 folder" => "1 โฟลเดอร์", -"{count} folders" => "{count} โฟลเดอร์", -"1 file" => "1 ไฟล์", -"{count} files" => "{count} ไฟล์", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "ไม่มีอะไรอยู่ในนี้ ถังขยะของคุณยังว่างอยู่", "Restore" => "คืนค่า", "Delete" => "ลบ", diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index df1b692af5..f25b179bc1 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -8,10 +8,9 @@ $TRANSLATIONS = array( "Delete permanently" => "Kalıcı olarak sil", "Name" => "İsim", "Deleted" => "Silindi", -"1 folder" => "1 dizin", -"{count} folders" => "{count} dizin", -"1 file" => "1 dosya", -"{count} files" => "{count} dosya", +"_%n folder_::_%n folders_" => array("","%n dizin"), +"_%n file_::_%n files_" => array("","%n dosya"), +"restored" => "geri yüklendi", "Nothing in here. Your trash bin is empty!" => "Burası boş. Çöp kutun tamamen boş.", "Restore" => "Geri yükle", "Delete" => "Sil", diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index 6546668597..ad983aee18 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -4,9 +4,8 @@ $TRANSLATIONS = array( "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", "Name" => "ئاتى", "Deleted" => "ئۆچۈرۈلدى", -"1 folder" => "1 قىسقۇچ", -"1 file" => "1 ھۆججەت", -"{count} files" => "{count} ھۆججەت", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "بۇ جايدا ھېچنېمە يوق. Your trash bin is empty!", "Delete" => "ئۆچۈر" ); diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index 93e9b6aa7b..aa4b659503 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Видалити назавжди", "Name" => "Ім'я", "Deleted" => "Видалено", -"1 folder" => "1 папка", -"{count} folders" => "{count} папок", -"1 file" => "1 файл", -"{count} files" => "{count} файлів", +"_%n folder_::_%n folders_" => array("","",""), +"_%n file_::_%n files_" => array("","",""), "restored" => "відновлено", "Nothing in here. Your trash bin is empty!" => "Нічого немає. Ваший кошик для сміття пустий!", "Restore" => "Відновити", diff --git a/apps/files_trashbin/l10n/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index 49c82f5387..f6c6a3da3c 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,5 +1,7 @@ "ایرر" +"Error" => "ایرر", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/vi.php b/apps/files_trashbin/l10n/vi.php index 5e16a8392d..072d799fa6 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "Xóa vĩnh vễn", "Name" => "Tên", "Deleted" => "Đã xóa", -"1 folder" => "1 thư mục", -"{count} folders" => "{count} thư mục", -"1 file" => "1 tập tin", -"{count} files" => "{count} tập tin", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "Không có gì ở đây. Thùng rác của bạn rỗng!", "Restore" => "Khôi phục", "Delete" => "Xóa", diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 768a9616d7..eaa97bb1b6 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -3,10 +3,10 @@ $TRANSLATIONS = array( "Error" => "出错", "Delete permanently" => "永久删除", "Name" => "名称", -"1 folder" => "1 个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", -"Delete" => "删除" +"_%n folder_::_%n folders_" => array("%n 个文件夹"), +"_%n file_::_%n files_" => array("%n 个文件"), +"Restore" => "恢复", +"Delete" => "删除", +"Deleted Files" => "删除的文件" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_CN.php b/apps/files_trashbin/l10n/zh_CN.php index c149c6c966..6609f57d9c 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "永久删除", "Name" => "名称", "Deleted" => "已删除", -"1 folder" => "1个文件夹", -"{count} folders" => "{count} 个文件夹", -"1 file" => "1 个文件", -"{count} files" => "{count} 个文件", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "这里没有东西. 你的回收站是空的!", "Restore" => "恢复", "Delete" => "删除", diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 6b9f650687..3f0d663bae 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -2,7 +2,8 @@ $TRANSLATIONS = array( "Error" => "錯誤", "Name" => "名稱", -"{count} folders" => "{}文件夾", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Delete" => "刪除" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_TW.php b/apps/files_trashbin/l10n/zh_TW.php index 39fe4ce988..ab6b75c578 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -8,10 +8,8 @@ $TRANSLATIONS = array( "Delete permanently" => "永久刪除", "Name" => "名稱", "Deleted" => "已刪除", -"1 folder" => "1 個資料夾", -"{count} folders" => "{count} 個資料夾", -"1 file" => "1 個檔案", -"{count} files" => "{count} 個檔案", +"_%n folder_::_%n folders_" => array(""), +"_%n file_::_%n files_" => array(""), "Nothing in here. Your trash bin is empty!" => "您的垃圾桶是空的!", "Restore" => "復原", "Delete" => "刪除", diff --git a/apps/files_versions/css/versions.css b/apps/files_versions/css/versions.css index 6146eda337..6a9b3a9569 100644 --- a/apps/files_versions/css/versions.css +++ b/apps/files_versions/css/versions.css @@ -1,3 +1,7 @@ +#dropdown.drop-versions { + width:22em; +} + #found_versions li { width: 100%; cursor: default; @@ -39,6 +43,3 @@ float: right; } -.drop-versions #makelink { - float: left; -} diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index ca479507d4..a14de7dbee 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -104,9 +104,9 @@ function createVersionsDropdown(filename, files) { success: function(result) { var versions = result.data.versions; if (result.data.endReached === true) { - document.getElementById("show-more-versions").style.display="none"; + $("#show-more-versions").css("display", "none"); } else { - document.getElementById("show-more-versions").style.display="block"; + $("#show-more-versions").css("display", "block"); } if (versions) { $.each(versions, function(index, row) { @@ -132,8 +132,6 @@ function createVersionsDropdown(filename, files) { download =''; download+=''; revert+=''; diff --git a/apps/files_versions/l10n/cs_CZ.php b/apps/files_versions/l10n/cs_CZ.php index a2fc76d443..45ce297eae 100644 --- a/apps/files_versions/l10n/cs_CZ.php +++ b/apps/files_versions/l10n/cs_CZ.php @@ -1,8 +1,8 @@ "Nelze navrátit: %s", +"Could not revert: %s" => "Nelze vrátit: %s", "Versions" => "Verze", -"Failed to revert {file} to revision {timestamp}." => "Selhalo navrácení souboru {file} na verzi {timestamp}.", +"Failed to revert {file} to revision {timestamp}." => "Selhalo vrácení souboru {file} na verzi {timestamp}.", "More versions..." => "Více verzí...", "No other versions available" => "Žádné další verze nejsou dostupné", "Restore" => "Obnovit" diff --git a/apps/files_versions/l10n/es.php b/apps/files_versions/l10n/es.php index c87488bf7a..a6031698e0 100644 --- a/apps/files_versions/l10n/es.php +++ b/apps/files_versions/l10n/es.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "No se puede revertir: %s", "Versions" => "Revisiones", +"Failed to revert {file} to revision {timestamp}." => "No se ha podido revertir {archivo} a revisión {timestamp}.", +"More versions..." => "Más...", +"No other versions available" => "No hay otras versiones disponibles", "Restore" => "Recuperar" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/et_EE.php b/apps/files_versions/l10n/et_EE.php index 73a60ade7c..ba8b516e85 100644 --- a/apps/files_versions/l10n/et_EE.php +++ b/apps/files_versions/l10n/et_EE.php @@ -2,6 +2,9 @@ $TRANSLATIONS = array( "Could not revert: %s" => "Ei suuda taastada faili: %s", "Versions" => "Versioonid", +"Failed to revert {file} to revision {timestamp}." => "Ebaõnnestus faili {file} taastamine revisjonile {timestamp}", +"More versions..." => "Rohkem versioone...", +"No other versions available" => "Muid versioone pole saadaval", "Restore" => "Taasta" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_versions/l10n/ru_RU.php b/apps/files_versions/l10n/ru_RU.php deleted file mode 100644 index 8656e346eb..0000000000 --- a/apps/files_versions/l10n/ru_RU.php +++ /dev/null @@ -1,5 +0,0 @@ - "История", -"Files Versioning" => "Файлы управления версиями", -"Enable" => "Включить" -); diff --git a/apps/files_versions/l10n/zh_CN.GB2312.php b/apps/files_versions/l10n/zh_CN.GB2312.php index aa0a59b71a..de340d6dc9 100644 --- a/apps/files_versions/l10n/zh_CN.GB2312.php +++ b/apps/files_versions/l10n/zh_CN.GB2312.php @@ -1,6 +1,10 @@ "无法恢复:%s", -"Versions" => "版本" +"Versions" => "版本", +"Failed to revert {file} to revision {timestamp}." => "无法恢复文件 {file} 到 版本 {timestamp}。", +"More versions..." => "更多版本", +"No other versions available" => "没有其他可用版本", +"Restore" => "恢复" ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_versions/lib/versions.php b/apps/files_versions/lib/versions.php index 70b8f30be5..0b4699dc5c 100644 --- a/apps/files_versions/lib/versions.php +++ b/apps/files_versions/lib/versions.php @@ -48,14 +48,14 @@ class Storage { /** * get current size of all versions from a given user - * + * * @param $user user who owns the versions * @return mixed versions size or false if no versions size is stored */ private static function getVersionsSize($user) { $query = \OC_DB::prepare('SELECT `size` FROM `*PREFIX*files_versions` WHERE `user`=?'); $result = $query->execute(array($user))->fetchAll(); - + if ($result) { return $result[0]['size']; } @@ -64,7 +64,7 @@ class Storage { /** * write to the database how much space is in use for versions - * + * * @param $user owner of the versions * @param $size size of the versions */ @@ -76,20 +76,20 @@ class Storage { } $query->execute(array($size, $user)); } - + /** * store a new version of a file. */ public static function store($filename) { if(\OCP\Config::getSystemValue('files_versions', Storage::DEFAULTENABLED)=='true') { - + // if the file gets streamed we need to remove the .part extension // to get the right target $ext = pathinfo($filename, PATHINFO_EXTENSION); if ($ext === 'part') { $filename = substr($filename, 0, strlen($filename)-5); } - + list($uid, $filename) = self::getUidAndFilename($filename); $files_view = new \OC\Files\View('/'.$uid .'/files'); @@ -104,17 +104,12 @@ class Storage { // we should have a source file to work with, and the file shouldn't // be empty $fileExists = $files_view->file_exists($filename); - $fileSize = $files_view->filesize($filename); - if ($fileExists === false || $fileSize === 0) { + if (!($fileExists && $files_view->filesize($filename) > 0)) { return false; } // create all parent folders - $info=pathinfo($filename); - $versionsFolderName=$versions_view->getLocalFolder(''); - if(!file_exists($versionsFolderName.'/'.$info['dirname'])) { - mkdir($versionsFolderName.'/'.$info['dirname'], 0750, true); - } + self::createMissingDirectories($filename, $users_view); $versionsSize = self::getVersionsSize($uid); if ( $versionsSize === false || $versionsSize < 0 ) { @@ -174,7 +169,7 @@ class Storage { list($uidn, $newpath) = self::getUidAndFilename($new_path); $versions_view = new \OC\Files\View('/'.$uid .'/files_versions'); $files_view = new \OC\Files\View('/'.$uid .'/files'); - + // if the file already exists than it was a upload of a existing file // over the web interface -> store() is the right function we need here if ($files_view->file_exists($newpath)) { @@ -183,13 +178,12 @@ class Storage { self::expire($newpath); - $abs_newpath = $versions_view->getLocalFile($newpath); - if ( $files_view->is_dir($oldpath) && $versions_view->is_dir($oldpath) ) { $versions_view->rename($oldpath, $newpath); } else if ( ($versions = Storage::getVersions($uid, $oldpath)) ) { - $info=pathinfo($abs_newpath); - if(!file_exists($info['dirname'])) mkdir($info['dirname'], 0750, true); + // create missing dirs if necessary + self::createMissingDirectories($newpath, new \OC\Files\View('/'. $uidn)); + foreach ($versions as $v) { $versions_view->rename($oldpath.'.v'.$v['version'], $newpath.'.v'.$v['version']); } @@ -435,7 +429,7 @@ class Storage { } else { $quota = \OCP\Util::computerFileSize($quota); } - + // make sure that we have the current size of the version history if ( $versionsSize === null ) { $versionsSize = self::getVersionsSize($uid); @@ -568,4 +562,21 @@ class Storage { return $size; } + /** + * @brief create recursively missing directories + * @param string $filename $path to a file + * @param \OC\Files\View $view view on data/user/ + */ + private static function createMissingDirectories($filename, $view) { + $dirname = \OC_Filesystem::normalizePath(dirname($filename)); + $dirParts = explode('/', $dirname); + $dir = "/files_versions"; + foreach ($dirParts as $part) { + $dir = $dir . '/' . $part; + if (!$view->file_exists($dir)) { + $view->mkdir($dir); + } + } + } + } diff --git a/apps/user_ldap/css/settings.css b/apps/user_ldap/css/settings.css index 185952e14b..4e0ee31c7c 100644 --- a/apps/user_ldap/css/settings.css +++ b/apps/user_ldap/css/settings.css @@ -3,14 +3,20 @@ max-width: 200px; display: inline-block; vertical-align: top; + text-align: right; padding-top: 9px; + padding-right: 5px; } #ldap fieldset input, #ldap fieldset textarea { - width: 70%; + width: 60%; display: inline-block; } +#ldap fieldset p input[type=checkbox] { + vertical-align: bottom; +} + .ldapIndent { margin-left: 50px; } diff --git a/apps/user_ldap/js/settings.js b/apps/user_ldap/js/settings.js index 52d5dbc48d..b86aac6da6 100644 --- a/apps/user_ldap/js/settings.js +++ b/apps/user_ldap/js/settings.js @@ -176,6 +176,13 @@ $(document).ready(function() { $('#ldap_submit').effect('highlight', {'color':'#A8FA87'}, 5000, function() { $('#ldap_submit').css('background', bgcolor); }); + //update the Label in the config chooser + caption = $('#ldap_serverconfig_chooser option:selected:first').text(); + pretext = '. Server: '; + caption = caption.slice(0, caption.indexOf(pretext) + pretext.length); + caption = caption + $('#ldap_host').val(); + $('#ldap_serverconfig_chooser option:selected:first').text(caption); + } else { $('#ldap_submit').css('background', '#fff'); $('#ldap_submit').effect('highlight', {'color':'#E97'}, 5000, function() { diff --git a/apps/user_ldap/l10n/es.php b/apps/user_ldap/l10n/es.php index 29f47ced43..ca59e2f3ea 100644 --- a/apps/user_ldap/l10n/es.php +++ b/apps/user_ldap/l10n/es.php @@ -2,12 +2,12 @@ $TRANSLATIONS = array( "Failed to clear the mappings." => "Ocurrió un fallo al borrar las asignaciones.", "Failed to delete the server configuration" => "No se pudo borrar la configuración del servidor", -"The configuration is valid and the connection could be established!" => "La configuración es válida y la conexión puede establecerse!", +"The configuration is valid and the connection could be established!" => "¡La configuración es válida y la conexión puede establecerse!", "The configuration is valid, but the Bind failed. Please check the server settings and credentials." => "La configuración es válida, pero falló el Enlace. Por favor, compruebe la configuración del servidor y las credenciales.", "The configuration is invalid. Please look in the ownCloud log for further details." => "La configuración no es válida. Por favor, busque en el log de ownCloud para más detalles.", "Deletion failed" => "Falló el borrado", "Take over settings from recent server configuration?" => "¿Asumir los ajustes actuales de la configuración del servidor?", -"Keep settings?" => "Mantener la configuración?", +"Keep settings?" => "¿Mantener la configuración?", "Cannot add server configuration" => "No se puede añadir la configuración del servidor", "mappings cleared" => "Asignaciones borradas", "Success" => "Éxito", @@ -49,6 +49,7 @@ $TRANSLATIONS = array( "Do not use it additionally for LDAPS connections, it will fail." => "No lo use para conexiones LDAPS, Fallará.", "Case insensitve LDAP server (Windows)" => "Servidor de LDAP no sensible a mayúsculas/minúsculas (Windows)", "Turn off SSL certificate validation." => "Apagar la validación por certificado SSL.", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "Si la conexión funciona sólo con esta opción, importe el certificado SSL del servidor LDAP en su servidor %s.", "Not recommended, use for testing only." => "No recomendado, sólo para pruebas.", "Cache Time-To-Live" => "Cache TTL", "in seconds. A change empties the cache." => "en segundos. Un cambio vacía la caché.", diff --git a/apps/user_ldap/l10n/et_EE.php b/apps/user_ldap/l10n/et_EE.php index 09e1a13f03..f97a1ad740 100644 --- a/apps/user_ldap/l10n/et_EE.php +++ b/apps/user_ldap/l10n/et_EE.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Connection test failed" => "Ühenduse testimine ebaõnnestus", "Do you really want to delete the current Server Configuration?" => "Oled kindel, et tahad kustutada praegust serveri seadistust?", "Confirm Deletion" => "Kinnita kustutamine", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Hoiatus:PHP LDAP moodul pole paigaldatud ning LDAP kasutamine ei ole võimalik. Palu oma süsteeihaldurit see paigaldada.", "Server configuration" => "Serveri seadistus", "Add Server Configuration" => "Lisa serveri seadistus", @@ -45,20 +46,24 @@ $TRANSLATIONS = array( "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) port", "Disable Main Server" => "Ära kasuta peaserverit", +"Only connect to the replica server." => "Ühendu ainult replitseeriva serveriga.", "Use TLS" => "Kasuta TLS-i", "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 %s server." => "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s 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 display name." => "LDAP atribuut, mida kasutatakse kasutaja kuvatava 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 display name." => "LDAP atribuut, mida kasutatakse ownCloudi grupi kuvatava 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", @@ -71,10 +76,13 @@ $TRANSLATIONS = array( "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.", "Internal Username" => "Sisemine kasutajanimi", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "Vaikimisi tekitatakse sisemine kasutajanimi UUID atribuudist. See tagab, et kasutajanimi on unikaalne ja sümboleid pole vaja muuta. Sisemisel kasutajatunnuse puhul on lubatud ainult järgmised sümbolid: [ a-zA-Z0-9_.@- ]. Muud sümbolid asendatakse nende ASCII vastega või lihtsalt hüljatakse. Tõrgete korral lisatakse number või suurendatakse seda. Sisemist kasutajatunnust kasutatakse kasutaja sisemiseks tuvastamiseks. Ühtlasi on see ownCloudis kasutaja vaikimisi kodukataloogi nimeks. See on ka serveri URLi osaks, näiteks kõikidel *DAV teenustel. Selle seadistusega saab tühistada vaikimisi käitumise. Saavutamaks sarnast käitumist eelnevate ownCloud 5 versioonidega, sisesta kasutaja kuvatava nime atribuut järgnevale väljale. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.", "Internal Username Attribute:" => "Sisemise kasutajatunnuse atribuut:", "Override UUID detection" => "Tühista UUID tuvastus", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi.", "UUID Attribute:" => "UUID atribuut:", "Username-LDAP User Mapping" => "LDAP-Kasutajatunnus Kasutaja Vastendus", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas.", "Clear Username-LDAP User Mapping" => "Puhasta LDAP-Kasutajatunnus Kasutaja Vastendus", "Clear Groupname-LDAP Group Mapping" => "Puhasta LDAP-Grupinimi Grupp Vastendus", "Test Configuration" => "Testi seadistust", diff --git a/apps/user_ldap/l10n/ja_JP.php b/apps/user_ldap/l10n/ja_JP.php index 03ed2e9db9..d87a0f065b 100644 --- a/apps/user_ldap/l10n/ja_JP.php +++ b/apps/user_ldap/l10n/ja_JP.php @@ -51,16 +51,19 @@ $TRANSLATIONS = array( "Do not use it additionally for LDAPS connections, it will fail." => "LDAPS接続のために追加でそれを利用しないで下さい。失敗します。", "Case insensitve LDAP server (Windows)" => "大文字/小文字を区別しないLDAPサーバ(Windows)", "Turn off SSL certificate validation." => "SSL証明書の確認を無効にする。", +"If connection only works with this option, import the LDAP server's SSL certificate in your %s server." => "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書を %s サーバにインポートしてください。", "Not recommended, use for testing only." => "推奨しません、テスト目的でのみ利用してください。", "Cache Time-To-Live" => "キャッシュのTTL", "in seconds. A change empties the cache." => "秒。変更後にキャッシュがクリアされます。", "Directory Settings" => "ディレクトリ設定", "User Display Name Field" => "ユーザ表示名のフィールド", +"The LDAP attribute to use to generate the user's display name." => "ユーザの表示名の生成に利用するLDAP属性", "Base User Tree" => "ベースユーザツリー", "One User Base DN per line" => "1行に1つのユーザベースDN", "User Search Attributes" => "ユーザ検索属性", "Optional; one attribute per line" => "オプション:1行に1属性", "Group Display Name Field" => "グループ表示名のフィールド", +"The LDAP attribute to use to generate the groups's display name." => "ユーザのグループ表示名の生成に利用するLDAP属性", "Base Group Tree" => "ベースグループツリー", "One Group Base DN per line" => "1行に1つのグループベースDN", "Group Search Attributes" => "グループ検索属性", @@ -73,10 +76,13 @@ $TRANSLATIONS = array( "User Home Folder Naming Rule" => "ユーザのホームフォルダ命名規則", "Leave empty for user name (default). Otherwise, specify an LDAP/AD attribute." => "ユーザ名を空のままにしてください(デフォルト)。そうでない場合は、LDAPもしくはADの属性を指定してください。", "Internal Username" => "内部ユーザ名", +"By default the internal username will be created from the UUID attribute. It makes sure that the username is unique and characters do not need to be converted. The internal username has the restriction that only these characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced with their ASCII correspondence or simply omitted. On collisions a number will be added/increased. The internal username is used to identify a user internally. It is also the default name for the user home folder. It is also a part of remote URLs, for instance for all *DAV services. With this setting, the default behavior can be overridden. To achieve a similar behavior as before ownCloud 5 enter the user display name attribute in the following field. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users." => "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。", "Internal Username Attribute:" => "内部ユーザ名属性:", "Override UUID detection" => "UUID検出を再定義する", +"By default, the UUID attribute is automatically detected. The UUID attribute is used to doubtlessly identify LDAP users and groups. Also, the internal username will be created based on the UUID, if not specified otherwise above. You can override the setting and pass an attribute of your choice. You must make sure that the attribute of your choice can be fetched for both users and groups and it is unique. Leave it empty for default behavior. Changes will have effect only on newly mapped (added) LDAP users and groups." => "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。", "UUID Attribute:" => "UUID属性:", "Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピング", +"Usernames are used to store and assign (meta) data. In order to precisely identify and recognize users, each LDAP user will have a internal username. This requires a mapping from username to LDAP user. The created username is mapped to the UUID of the LDAP user. Additionally the DN is cached as well to reduce LDAP interaction, but it is not used for identification. If the DN changes, the changes will be found. The internal username is used all over. Clearing the mappings will have leftovers everywhere. Clearing the mappings is not configuration sensitive, it affects all LDAP configurations! Never clear the mappings in a production environment, only in a testing or experimental stage." => "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。", "Clear Username-LDAP User Mapping" => "ユーザ名とLDAPユーザのマッピングをクリアする", "Clear Groupname-LDAP Group Mapping" => "グループ名とLDAPグループのマッピングをクリアする", "Test Configuration" => "設定をテスト", diff --git a/apps/user_ldap/l10n/nl.php b/apps/user_ldap/l10n/nl.php index dda46a386d..1a67cd409d 100644 --- a/apps/user_ldap/l10n/nl.php +++ b/apps/user_ldap/l10n/nl.php @@ -16,6 +16,7 @@ $TRANSLATIONS = array( "Connection test failed" => "Verbindingstest mislukt", "Do you really want to delete the current Server Configuration?" => "Wilt u werkelijk de huidige Serverconfiguratie verwijderen?", "Confirm Deletion" => "Bevestig verwijderen", +"Warning: Apps user_ldap and user_webdavauth are incompatible. You may experience unexpected behavior. Please ask your system administrator to disable one of them." => "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren.", "Warning: The PHP LDAP module is not installed, the backend will not work. Please ask your system administrator to install it." => "Waarschuwing: De PHP LDAP module is niet geïnstalleerd, het backend zal niet werken. Vraag uw systeembeheerder om de module te installeren.", "Server configuration" => "Serverconfiguratie", "Add Server Configuration" => "Toevoegen serverconfiguratie", diff --git a/apps/user_ldap/l10n/ru_RU.php b/apps/user_ldap/l10n/ru_RU.php deleted file mode 100644 index 623d8f2d8e..0000000000 --- a/apps/user_ldap/l10n/ru_RU.php +++ /dev/null @@ -1,6 +0,0 @@ - "Успех", -"Error" => "Ошибка" -); -$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);"; diff --git a/apps/user_ldap/lib/connection.php b/apps/user_ldap/lib/connection.php index 36c8e648b1..0372112f0e 100644 --- a/apps/user_ldap/lib/connection.php +++ b/apps/user_ldap/lib/connection.php @@ -29,6 +29,9 @@ class Connection { private $configID; private $configured = false; + //whether connection should be kept on __destruct + private $dontDestruct = false; + //cache handler protected $cache; @@ -83,11 +86,20 @@ class Connection { } public function __destruct() { - if(is_resource($this->ldapConnectionRes)) { + if(!$this->dontDestruct && is_resource($this->ldapConnectionRes)) { @ldap_unbind($this->ldapConnectionRes); }; } + /** + * @brief defines behaviour when the instance is cloned + */ + public function __clone() { + //a cloned instance inherits the connection resource. It may use it, + //but it may not disconnect it + $this->dontDestruct = true; + } + public function __get($name) { if(!$this->configured) { $this->readConfiguration(); diff --git a/apps/user_ldap/lib/helper.php b/apps/user_ldap/lib/helper.php index f65f466789..4c9dd07a12 100644 --- a/apps/user_ldap/lib/helper.php +++ b/apps/user_ldap/lib/helper.php @@ -70,6 +70,34 @@ class Helper { return $prefixes; } + /** + * + * @brief determines the host for every configured connection + * @return an array with configprefix as keys + * + */ + static public function getServerConfigurationHosts() { + $referenceConfigkey = 'ldap_host'; + + $query = ' + SELECT DISTINCT `configkey`, `configvalue` + FROM `*PREFIX*appconfig` + WHERE `appid` = \'user_ldap\' + AND `configkey` LIKE ? + '; + $query = \OCP\DB::prepare($query); + $configHosts = $query->execute(array('%'.$referenceConfigkey))->fetchAll(); + $result = array(); + + foreach($configHosts as $configHost) { + $len = strlen($configHost['configkey']) - strlen($referenceConfigkey); + $prefix = substr($configHost['configkey'], 0, $len); + $result[$prefix] = $configHost['configvalue']; + } + + return $result; + } + /** * @brief deletes a given saved LDAP/AD server configuration. * @param string the configuration prefix of the config to delete diff --git a/apps/user_ldap/settings.php b/apps/user_ldap/settings.php index 22e2dac6d2..7169192a18 100644 --- a/apps/user_ldap/settings.php +++ b/apps/user_ldap/settings.php @@ -44,7 +44,9 @@ OCP\Util::addstyle('user_ldap', 'settings'); $tmpl = new OCP\Template('user_ldap', 'settings'); $prefixes = \OCA\user_ldap\lib\Helper::getServerConfigurationPrefixes(); +$hosts = \OCA\user_ldap\lib\Helper::getServerConfigurationHosts(); $tmpl->assign('serverConfigurationPrefixes', $prefixes); +$tmpl->assign('serverConfigurationHosts', $hosts); // assign default values if(!isset($ldap)) { diff --git a/apps/user_ldap/templates/settings.php b/apps/user_ldap/templates/settings.php index 95aa592594..e214d57fb1 100644 --- a/apps/user_ldap/templates/settings.php +++ b/apps/user_ldap/templates/settings.php @@ -24,7 +24,7 @@ $sel = ' selected'; foreach($_['serverConfigurationPrefixes'] as $prefix) { ?> - + -
t('use %%uid placeholder, e.g. "uid=%%uid"'));?>

+ title="t('Defines the filter to apply, when login is attempted. %%uid replaces the username in the login action. Example: "uid=%%uid"'));?>" />

-
t('without any placeholder, e.g. "objectClass=person".'));?>

+ title="t('Defines the filter to apply, when retrieving users (no placeholders). Example: "objectClass=person"'));?>" />

-
t('without any placeholder, e.g. "objectClass=posixGroup".'));?>

+ title="t('Defines the filter to apply, when retrieving groups (no placeholders). Example: "objectClass=posixGroup"'));?>" />

@@ -75,7 +72,7 @@

>

-


t('Not recommended, use for testing only.'));?>

+


t('Directory Settings'));?>

diff --git a/apps/user_ldap/user_ldap.php b/apps/user_ldap/user_ldap.php index 41e2926605..850ca0df99 100644 --- a/apps/user_ldap/user_ldap.php +++ b/apps/user_ldap/user_ldap.php @@ -77,11 +77,6 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { } $dn = $ldap_users[0]; - //are the credentials OK? - if(!$this->areCredentialsValid($dn, $password)) { - return false; - } - //do we have a username for him/her? $ocname = $this->dn2username($dn); @@ -90,6 +85,11 @@ class USER_LDAP extends lib\Access implements \OCP\UserInterface { $this->updateQuota($dn); $this->updateEmail($dn); + //are the credentials OK? + if(!$this->areCredentialsValid($dn, $password)) { + return false; + } + //give back the display name return $ocname; } diff --git a/apps/user_webdavauth/l10n/es.php b/apps/user_webdavauth/l10n/es.php index 608b0ad817..cd8ec6659a 100644 --- a/apps/user_webdavauth/l10n/es.php +++ b/apps/user_webdavauth/l10n/es.php @@ -1,5 +1,7 @@ "Autenticación de WevDAV" +"WebDAV Authentication" => "Autenticación de WevDAV", +"Address: " => "Dirección:", +"The user credentials will be sent to this address. This plugin checks the response and will interpret the HTTP statuscodes 401 and 403 as invalid credentials, and all other responses as valid credentials." => "onwCloud enviará las credenciales de usuario a esta dirección. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/et_EE.php b/apps/user_webdavauth/l10n/et_EE.php index a8d26e26bb..34b07c654a 100644 --- a/apps/user_webdavauth/l10n/et_EE.php +++ b/apps/user_webdavauth/l10n/et_EE.php @@ -1,5 +1,7 @@ "WebDAV autentimine" +"WebDAV Authentication" => "WebDAV autentimine", +"Address: " => "Aadress:", +"The user credentials will be sent to this address. 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." ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/user_webdavauth/l10n/ru_RU.php b/apps/user_webdavauth/l10n/ru_RU.php deleted file mode 100644 index 46f74cb972..0000000000 --- a/apps/user_webdavauth/l10n/ru_RU.php +++ /dev/null @@ -1,4 +0,0 @@ - "WebDAV аутентификация", -"URL: http://" => "URL: http://" -); diff --git a/core/css/styles.css b/core/css/styles.css index d41577ee3c..becf0af905 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -19,9 +19,9 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari #body-user #header, #body-settings #header { position:fixed; top:0; left:0; right:0; z-index:100; height:45px; line-height:2.5em; background:#1d2d44 url('../img/noise.png') repeat; - -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; - -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; - box-shadow:0 0 10px rgba(0, 0, 0, .5), inset 0 -2px 10px #222; + -moz-box-shadow:0 0 10px rgba(0, 0, 0, .5); + -webkit-box-shadow:0 0 10px rgba(0, 0, 0, .5); + box-shadow:0 0 10px rgba(0, 0, 0, .5); } #body-login { @@ -45,7 +45,7 @@ body { background:#fefefe; font:normal .8em/1.6em "Helvetica Neue",Helvetica,Ari input[type="text"], input[type="password"], input[type="search"], input[type="number"], input[type="email"], input[type="url"], textarea, select, button, .button, -#quota, div.jp-progress, .pager li a { +#quota, .pager li a { width:10em; margin:.3em; padding:.6em .5em .4em; font-size:1em; background:#fff; color:#333; border:1px solid #ddd; outline:none; @@ -85,7 +85,7 @@ 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 { +#quota, 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; @@ -161,7 +161,7 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b #content { position:relative; height:100%; width:100%; } #content .hascontrols { position: relative; top: 2.9em; } #content-wrapper { - position:absolute; height:100%; width:100%; padding-top:3.5em; padding-left:64px; + position:absolute; height:100%; width:100%; padding-top:3.5em; padding-left:80px; -moz-box-sizing:border-box; box-sizing:border-box; } #leftcontent, .leftcontent { @@ -196,11 +196,12 @@ input[type="submit"].enabled { background:#66f866; border:1px solid #5e5; -moz-b #body-login #datadirContent label, #body-login form input[type="checkbox"]+label { text-align: center; - color: #000; + color: #ccc; text-shadow: 0 1px 0 rgba(255,255,255,.1); - -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; - filter: alpha(opacity=80); - opacity: .8; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; + filter: alpha(opacity=60); + opacity: .6; + text-shadow: 0 -1px 0 rgba(0,0,0,.5); } #body-login div.buttons { text-align:center; } @@ -307,6 +308,31 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } #body-login form .errors { background:#fed7d7; border:1px solid #f00; list-style-indent:inside; margin:0 0 2em; padding:1em; } #body-login .success { background:#d7fed7; border:1px solid #0f0; width: 35%; margin: 30px auto; padding:1em; text-align: center;} +#body-login #remember_login:hover+label, +#body-login #remember_login:focus+label { + color: #fff !important; +} + +#body-login #showAdvanced > img { + height: 16px; + width: 16px; + padding: 4px; + box-sizing: border-box; +} + +#body-login p.info a, #body-login #showAdvanced { + color: #ccc; +} + +#body-login p.info a:hover, #body-login p.info a:focus { + color: #fff; +} + + +#body-login p.info{ + white-space: nowrap; +} + /* Show password toggle */ #show, #dbpassword { position: absolute; @@ -381,6 +407,15 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } color: #dd3b3b !important; font-weight: bold; } +.error pre { + white-space: pre-wrap; + text-align: left; +} + +.error-wide { + width: 800px; +} + /* Fixes for log in page, TODO should be removed some time */ #body-login .update, #body-login .error { @@ -440,17 +475,30 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } /* NAVIGATION ------------------------------------------------------------- */ #navigation { - position:fixed; float:left; width:64px; padding-top:3.5em; z-index:75; height:100%; + position: fixed; + float: left; + width: 80px; + padding-top: 3.5em; + z-index: 75; + height: 100%; 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; + /* prevent ugly selection effect on accidental selection */ + -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; +} +#navigation:hover { + overflow-y: auto; /* show scrollbar only on hover */ } -#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; + display: block; + text-decoration: none; + font-size: 11px; + text-align: center; + color: #fff; + text-shadow: #000 0 -1px 0; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; /* ellipsize long app names */ + padding-bottom: 10px; } /* icon opacity and hover effect */ @@ -475,14 +523,20 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } filter: alpha(opacity=100); opacity: 1; } - - /* positioning */ #navigation .icon { - display:block; - width:32px; height:32px; - margin:0 16px 0; padding:8px 0 4px; + display: block; + width: 32px; + height: 32px; + margin-left: 24px; + padding: 10px 0 4px; } - #navigation li:first-child a { padding-top:16px; } + #navigation li:first-child .icon { /* special rule for Files icon as it's first */ + padding-top: 20px; + } + +#apps-management { + opacity: .6; +} /* USER MENU */ @@ -496,18 +550,30 @@ label.infield { cursor:text !important; top:1.05em; left:.85em; } background:#383c43 url('../img/noise.png') repeat; border-bottom-left-radius:7px; border-bottom:1px #333 solid; border-left:1px #333 solid; -moz-box-shadow:0 0 7px rgb(29,45,68); -webkit-box-shadow:0 0 7px rgb(29,45,68); box-shadow:0 0 7px rgb(29,45,68); + -moz-box-sizing: border-box; box-sizing: border-box; + /* prevent ugly selection effect on accidental selection */ + -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } #expanddiv a { - display:block; color:#fff; text-shadow:0 -1px 0 #000; padding:0 8px; - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; - filter:alpha(opacity=70); - opacity:.7; + display: block; + height: 40px; + color: #fff; + text-shadow: 0 -1px 0 #000; + padding: 4px 12px 0; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)"; + filter: alpha(opacity=70); + opacity: .7; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + #expanddiv a img { + margin-bottom: -3px; + margin-right: 6px; } - #expanddiv a img { margin-bottom:-3px; } #expanddiv a:hover, #expanddiv a:focus, #expanddiv a:active { - -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; - filter:alpha(opacity=100); - opacity:1; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100); + opacity: 1; } @@ -541,7 +607,7 @@ tbody tr:hover, tr:active { background-color:#f8f8f8; } .personalblock > legend, th, dt, label { font-weight:bold; } code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; } -#quota div, div.jp-play-bar, div.jp-seek-bar { +#quota div { padding: 0; background-color: rgb(220,220,220); font-weight: normal; @@ -549,7 +615,6 @@ code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono -moz-border-radius-bottomleft: .4em; -webkit-border-bottom-left-radius: .4em; border-bottom-left-radius:.4em; -moz-border-radius-topleft: .4em; -webkit-border-top-left-radius: .4em; border-top-left-radius: .4em; } #quotatext {padding:.6em 1em;} -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; } @@ -605,7 +670,7 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} #category_addinput { width:10em; } /* ---- APP SETTINGS ---- */ -.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 { background-color:white; border-radius:10px 10px 10px 10px; box-shadow:0 0 20px #888; color:#333; padding:10px; position:fixed !important; z-index:100; } .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/close.svg') no-repeat center; } @@ -640,13 +705,15 @@ div.crumb:active { height: 100%; width: 100%; } +#app * { + -moz-box-sizing: border-box; box-sizing: border-box; +} /* Navigation: folder like structure */ #app-navigation { - width: 250px; + width: 300px; height: 100%; float: left; - padding-bottom: 32px; -moz-box-sizing: border-box; box-sizing: border-box; background-color: #f8f8f8; border-right: 1px solid #ccc; @@ -663,7 +730,8 @@ div.crumb:active { text-shadow: 0 1px 0 rgba(255,255,255,.9); } #app-navigation .active, -#app-navigation .active a { /* active navigation entry or folder */ +#app-navigation .active a, +#app-navigation li:hover > a { background-color: #ddd; text-shadow: 0 1px 0 rgba(255,255,255,.7); } @@ -671,49 +739,38 @@ div.crumb:active { /* 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; + padding-left: 44px; + background-size: 16px 16px; + background-position: 14px center; + background-repeat: no-repeat; } #app-navigation li > a { display: block; width: 100%; - padding: 0 16px; + height: 44px; + padding: 12px; 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; + height: 44px; + width: 44px; + margin: 0; + padding: 0; background: none; background-image: url('../img/actions/triangle-s.svg'); - background-size: 16px 16px; background-repeat: no-repeat; + background-size: 16px; background-repeat: no-repeat; background-position: center; border: none; border-radius: 0; outline: none !important; @@ -763,13 +820,29 @@ div.crumb:active { #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; } + +/* counter and actions */ +#app-navigation .utils { + position: absolute; + right: 0; + top: 0; + bottom: 0; + font-size: 12px; +} + #app-navigation .utils button, + #app-navigation .utils .counter { + width: 44px; + height: 44px; + padding-top: 12px; + } + + /* drag and drop */ #app-navigation .drag-and-drop { -moz-transition: padding-bottom 500ms ease 0s; @@ -797,7 +870,7 @@ div.crumb:active { /* settings area */ #app-settings { position: fixed; - width: 249px; + width: 299px; bottom: 0; border-top: 1px solid #ccc; } @@ -830,9 +903,25 @@ div.crumb:active { } /* icons */ +.folder-icon, .delete-icon, .edit-icon, .progress-icon { + background-repeat: no-repeat; + background-position: center; +} .folder-icon { background-image: url('../img/places/folder.svg'); } .delete-icon { background-image: url('../img/actions/delete.svg'); } +.delete-icon:hover, .delete-icon:focus { + background-image: url('../img/actions/delete-hover.svg'); +} .edit-icon { background-image: url('../img/actions/rename.svg'); } +.progress-icon { + background-image: url('../img/loading.gif'); + background-size: 16px; + /* force show the loading icon, not only on hover */ + -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter:alpha(opacity=100); + opacity: 1 !important; + display: inline !important; +} /* buttons */ button.loading { @@ -852,6 +941,10 @@ button.loading { ::-moz-focus-inner { border: 0; } +.lte8 .delete-icon { background-image: url('../img/actions/delete.png'); } +.lte8 .delete-icon:hover, .delete-icon:focus { + background-image: url('../img/actions/delete-hover.png'); +} /* IE8 needs background to be set to same color to make transparency look good. */ .lte9 #body-login form input[type="text"] { diff --git a/core/doc/admin/index.php b/core/doc/admin/index.html similarity index 100% rename from core/doc/admin/index.php rename to core/doc/admin/index.html diff --git a/core/doc/user/index.php b/core/doc/user/index.html similarity index 100% rename from core/doc/user/index.php rename to core/doc/user/index.html diff --git a/core/img/actions/delete-hover.png b/core/img/actions/delete-hover.png new file mode 100644 index 0000000000..99f549faf9 Binary files /dev/null and b/core/img/actions/delete-hover.png differ diff --git a/core/img/actions/delete-hover.svg b/core/img/actions/delete-hover.svg new file mode 100644 index 0000000000..568185c5c7 --- /dev/null +++ b/core/img/actions/delete-hover.svg @@ -0,0 +1,12 @@ + + + + + image/svg+xml + + + + + + + diff --git a/core/img/actions/delete.png b/core/img/actions/delete.png index 99f549faf9..0d8c89a56e 100644 Binary files a/core/img/actions/delete.png and b/core/img/actions/delete.png differ diff --git a/core/img/actions/delete.svg b/core/img/actions/delete.svg index 568185c5c7..ef564bfd48 100644 --- a/core/img/actions/delete.svg +++ b/core/img/actions/delete.svg @@ -1,12 +1,6 @@ + - - - - image/svg+xml - - - - - - + + + diff --git a/core/img/actions/more.png b/core/img/actions/more.png new file mode 100644 index 0000000000..edcafdd9bb Binary files /dev/null and b/core/img/actions/more.png differ diff --git a/core/img/actions/more.svg b/core/img/actions/more.svg new file mode 100644 index 0000000000..9ab5d4243d --- /dev/null +++ b/core/img/actions/more.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/core/img/actions/password.png b/core/img/actions/password.png index edcafdd9bb..07365a5775 100644 Binary files a/core/img/actions/password.png and b/core/img/actions/password.png differ diff --git a/core/img/actions/password.svg b/core/img/actions/password.svg index 9ab5d4243d..a9b29fda09 100644 --- a/core/img/actions/password.svg +++ b/core/img/actions/password.svg @@ -1,5 +1,3 @@ - - - - +image/svg+xml + diff --git a/core/js/js.js b/core/js/js.js index 1d1711383f..d580b6113e 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -69,7 +69,7 @@ function initL10N(app) { var code = 'var plural; var nplurals; '+pf+' return { "nplural" : nplurals, "plural" : (plural === true ? 1 : plural ? plural : 0) };'; t.plural_function = new Function("n", code); } else { - console.log("Syntax error in language file. Plural-Forms header is invalid ["+plural_forms+"]"); + console.log("Syntax error in language file. Plural-Forms header is invalid ["+t.plural_forms+"]"); } } } @@ -157,6 +157,7 @@ var OC={ PERMISSION_UPDATE:2, PERMISSION_DELETE:8, PERMISSION_SHARE:16, + PERMISSION_ALL:31, webroot:oc_webroot, appswebroots:(typeof oc_appswebroots !== 'undefined') ? oc_appswebroots:false, currentUser:(typeof oc_current_user!=='undefined')?oc_current_user:false, @@ -757,13 +758,10 @@ $(document).ready(function(){ }); // all the tipsy stuff needs to be here (in reverse order) to work - $('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true}); - $('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true}); $('.displayName .action').tipsy({gravity:'se', fade:true, live:true}); $('.password .action').tipsy({gravity:'se', fade:true, live:true}); $('#upload').tipsy({gravity:'w', fade:true}); $('.selectedActions a').tipsy({gravity:'s', fade:true, live:true}); - $('a.delete').tipsy({gravity: 'e', fade:true, live:true}); $('a.action').tipsy({gravity:'s', fade:true, live:true}); $('td .modified').tipsy({gravity:'s', fade:true, live:true}); @@ -812,15 +810,13 @@ function relative_modified_date(timestamp) { var diffdays = Math.round(diffhours/24); var diffmonths = Math.round(diffdays/31); if(timediff < 60) { return t('core','seconds ago'); } - else if(timediff < 120) { return t('core','1 minute ago'); } - else if(timediff < 3600) { return t('core','{minutes} minutes ago',{minutes: diffminutes}); } - else if(timediff < 7200) { return t('core','1 hour ago'); } - else if(timediff < 86400) { return t('core','{hours} hours ago',{hours: diffhours}); } + else if(timediff < 3600) { return n('core','%n minute ago', '%n minutes ago', diffminutes); } + else if(timediff < 86400) { return n('core', '%n hour ago', '%n hours ago', diffhours); } else if(timediff < 86400) { return t('core','today'); } else if(timediff < 172800) { return t('core','yesterday'); } - else if(timediff < 2678400) { return t('core','{days} days ago',{days: diffdays}); } + else if(timediff < 2678400) { return n('core', '%n day ago', '%n days ago', diffdays); } else if(timediff < 5184000) { return t('core','last month'); } - else if(timediff < 31556926) { return t('core','{months} months ago',{months: diffmonths}); } + else if(timediff < 31556926) { return n('core', '%n month ago', '%n months ago', diffmonths); } //else if(timediff < 31556926) { return t('core','months ago'); } else if(timediff < 63113852) { return t('core','last year'); } else { return t('core','years ago'); } diff --git a/core/js/oc-dialogs.js b/core/js/oc-dialogs.js index f4bc174b5e..5cbc8359d5 100644 --- a/core/js/oc-dialogs.js +++ b/core/js/oc-dialogs.js @@ -117,10 +117,6 @@ var OCdialogs = { text: t('core', 'Choose'), click: functionToCall, defaultButton: true - }, - { - text: t('core', 'Cancel'), - click: function(){self.$filePicker.ocdialog('close'); } }]; self.$filePicker.ocdialog({ diff --git a/core/js/share.js b/core/js/share.js index b4b5159b0b..e7fb26d0ed 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -22,9 +22,9 @@ OC.Share={ if (itemType != 'file' && itemType != 'folder') { $('a.share[data-item="'+item+'"]').css('background', 'url('+image+') no-repeat center'); } else { - var file = $('tr').filterAttr('data-id', item); + var file = $('tr[data-id="'+item+'"]'); if (file.length > 0) { - var action = $(file).find('.fileactions .action').filterAttr('data-action', 'Share'); + var action = $(file).find('.fileactions .action[data-action="Share"]'); var img = action.find('img').attr('src', image); action.addClass('permanent'); action.html(' '+t('core', 'Shared')).prepend(img); @@ -36,7 +36,7 @@ OC.Share={ // Search for possible parent folders that are shared while (path != last) { if (path == data['path']) { - var actions = $('.fileactions .action').filterAttr('data-action', 'Share'); + var actions = $('.fileactions .action[data-action="Share"]'); $.each(actions, function(index, action) { var img = $(action).find('img'); if (img.attr('src') != OC.imagePath('core', 'actions/public')) { @@ -256,8 +256,8 @@ OC.Share={ var shareType = selected.item.value.shareType; var shareWith = selected.item.value.shareWith; $(this).val(shareWith); - // Default permissions are Read and Share - var permissions = OC.PERMISSION_READ | OC.PERMISSION_SHARE; + // Default permissions are Edit (CRUD) and Share + var permissions = OC.PERMISSION_ALL; OC.Share.share(itemType, itemSource, shareType, shareWith, permissions, function() { OC.Share.addShareWith(shareType, shareWith, selected.item.label, permissions, possiblePermissions); $('#shareWith').val(''); diff --git a/core/l10n/af_ZA.php b/core/l10n/af_ZA.php index ab94e94611..ed5989e43b 100644 --- a/core/l10n/af_ZA.php +++ b/core/l10n/af_ZA.php @@ -1,6 +1,10 @@ "Instellings", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Password" => "Wagwoord", "Use the following link to reset your password: {link}" => "Gebruik die volgende skakel om jou wagwoord te herstel: {link}", "You will receive a link to reset your password via Email." => "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel.", diff --git a/core/l10n/ar.php b/core/l10n/ar.php index 0f84d5da76..b61b5cd060 100644 --- a/core/l10n/ar.php +++ b/core/l10n/ar.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "كانون الاول", "Settings" => "إعدادات", "seconds ago" => "منذ ثواني", -"1 minute ago" => "منذ دقيقة", -"{minutes} minutes ago" => "{minutes} منذ دقائق", -"1 hour ago" => "قبل ساعة مضت", -"{hours} hours ago" => "{hours} ساعة مضت", +"_%n minute ago_::_%n minutes ago_" => array("","","","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","","","",""), "today" => "اليوم", "yesterday" => "يوم أمس", -"{days} days ago" => "{days} يوم سابق", +"_%n day ago_::_%n days ago_" => array("","","","","",""), "last month" => "الشهر الماضي", -"{months} months ago" => "{months} شهر مضت", +"_%n month ago_::_%n months ago_" => array("","","","","",""), "months ago" => "شهر مضى", "last year" => "السنةالماضية", "years ago" => "سنة مضت", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "تم ارسال البريد الالكتروني", "The update was unsuccessful. Please report this issue to the ownCloud community." => "حصل خطأ في عملية التحديث, يرجى ارسال تقرير بهذه المشكلة الى ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud", -"ownCloud password reset" => "إعادة تعيين كلمة سر ownCloud", "Use the following link to reset your password: {link}" => "استخدم هذه الوصلة لاسترجاع كلمة السر: {link}", "You will receive a link to reset your password via Email." => "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر.", "Username" => "إسم المستخدم", diff --git a/core/l10n/be.php b/core/l10n/be.php index fa6f4e0404..de1b24e4a7 100644 --- a/core/l10n/be.php +++ b/core/l10n/be.php @@ -1,5 +1,9 @@ array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), +"_%n day ago_::_%n days ago_" => array("","","",""), +"_%n month ago_::_%n months ago_" => array("","","",""), "Advanced" => "Дасведчаны", "Finish setup" => "Завяршыць ўстаноўку.", "prev" => "Папярэдняя", diff --git a/core/l10n/bg_BG.php b/core/l10n/bg_BG.php index 57eccb1613..d79fe87c8f 100644 --- a/core/l10n/bg_BG.php +++ b/core/l10n/bg_BG.php @@ -22,11 +22,13 @@ $TRANSLATIONS = array( "December" => "Декември", "Settings" => "Настройки", "seconds ago" => "преди секунди", -"1 minute ago" => "преди 1 минута", -"1 hour ago" => "преди 1 час", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "днес", "yesterday" => "вчера", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "последният месец", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "последната година", "years ago" => "последните години", "Cancel" => "Отказ", diff --git a/core/l10n/bn_BD.php b/core/l10n/bn_BD.php index eeb141474a..b9227e1e61 100644 --- a/core/l10n/bn_BD.php +++ b/core/l10n/bn_BD.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "ডিসেম্বর", "Settings" => "নিয়ামকসমূহ", "seconds ago" => "সেকেন্ড পূর্বে", -"1 minute ago" => "১ মিনিট পূর্বে", -"{minutes} minutes ago" => "{minutes} মিনিট পূর্বে", -"1 hour ago" => "1 ঘন্টা পূর্বে", -"{hours} hours ago" => "{hours} ঘন্টা পূর্বে", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "আজ", "yesterday" => "গতকাল", -"{days} days ago" => "{days} দিন পূর্বে", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "গত মাস", -"{months} months ago" => "{months} মাস পূর্বে", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "মাস পূর্বে", "last year" => "গত বছর", "years ago" => "বছর পূর্বে", @@ -80,7 +78,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে", "Sending ..." => "পাঠানো হচ্ছে......", "Email sent" => "ই-মেইল পাঠানো হয়েছে", -"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." => "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।", "Username" => "ব্যবহারকারী", diff --git a/core/l10n/bs.php b/core/l10n/bs.php index 4cb1978faf..885518f913 100644 --- a/core/l10n/bs.php +++ b/core/l10n/bs.php @@ -1,5 +1,9 @@ array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day ago_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","",""), "Share" => "Podijeli", "Add" => "Dodaj" ); diff --git a/core/l10n/ca.php b/core/l10n/ca.php index acf32c7dc0..41b85875e7 100644 --- a/core/l10n/ca.php +++ b/core/l10n/ca.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Desembre", "Settings" => "Configuració", "seconds ago" => "segons enrere", -"1 minute ago" => "fa 1 minut", -"{minutes} minutes ago" => "fa {minutes} minuts", -"1 hour ago" => "fa 1 hora", -"{hours} hours ago" => "fa {hours} hores", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "avui", "yesterday" => "ahir", -"{days} days ago" => "fa {days} dies", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "el mes passat", -"{months} months ago" => "fa {months} mesos", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "mesos enrere", "last year" => "l'any passat", "years ago" => "anys enrere", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "El correu electrónic s'ha enviat", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'actualització ha estat incorrecte. Comuniqueu aquest error a la comunitat ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'actualització ha estat correcte. Ara us redirigim a ownCloud.", -"ownCloud password reset" => "estableix de nou la contrasenya Owncloud", "Use the following link to reset your password: {link}" => "Useu l'enllaç següent per restablir la contrasenya: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "L'enllaç per reiniciar la vostra contrasenya s'ha enviat al vostre correu.
Si no el rebeu en un temps raonable comproveu les carpetes de spam.
Si no és allà, pregunteu a l'administrador local.", "Request failed!
Did you make sure your email/username was right?" => "La petició ha fallat!
Esteu segur que el correu/nom d'usuari és correcte?", diff --git a/core/l10n/cs_CZ.php b/core/l10n/cs_CZ.php index 126de8858c..f984d1e526 100644 --- a/core/l10n/cs_CZ.php +++ b/core/l10n/cs_CZ.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Prosinec", "Settings" => "Nastavení", "seconds ago" => "před pár vteřinami", -"1 minute ago" => "před minutou", -"{minutes} minutes ago" => "před {minutes} minutami", -"1 hour ago" => "před hodinou", -"{hours} hours ago" => "před {hours} hodinami", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"{days} days ago" => "před {days} dny", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "minulý měsíc", -"{months} months ago" => "před {months} měsíci", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "před měsíci", "last year" => "minulý rok", "years ago" => "před lety", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail odeslán", "The update was unsuccessful. Please report this issue to the
ownCloud community." => "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do evidence chyb ownCloud", "The update was successful. Redirecting you to ownCloud now." => "Aktualizace byla úspěšná. Přesměrovávám na ownCloud.", -"ownCloud password reset" => "Obnovení hesla pro ownCloud", "Use the following link to reset your password: {link}" => "Heslo obnovíte použitím následujícího odkazu: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovení hesla byl odeslán na vaši e-mailovou adresu.
Pokud jej v krátké době neobdržíte, zkontrolujte váš koš a složku spam.
Pokud jej nenaleznete, kontaktujte svého správce.", "Request failed!
Did you make sure your email/username was right?" => "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?", @@ -129,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Dokončit nastavení", "%s is available. Get more information on how to update." => "%s je dostupná. Získejte více informací k postupu aktualizace.", "Log out" => "Odhlásit se", +"More apps" => "Více aplikací", "Automatic logon rejected!" => "Automatické přihlášení odmítnuto!", "If you did not change your password recently, your account may be compromised!" => "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!", "Please change your password to secure your account again." => "Změňte, prosím, své heslo pro opětovné zabezpečení Vašeho účtu.", diff --git a/core/l10n/cy_GB.php b/core/l10n/cy_GB.php index 4b20c05167..0123b09848 100644 --- a/core/l10n/cy_GB.php +++ b/core/l10n/cy_GB.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "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", +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "heddiw", "yesterday" => "ddoe", -"{days} days ago" => "{days} diwrnod yn ôl", +"_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "mis diwethaf", -"{months} months ago" => "{months} mis yn ôl", +"_%n month ago_::_%n months ago_" => array("","","",""), "months ago" => "misoedd yn ôl", "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Anfonwyd yr e-bost", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Methodd y diweddariad. Adroddwch y mater hwn i gymuned ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Roedd y diweddariad yn llwyddiannus. Cewch eich ailgyfeirio i ownCloud nawr.", -"ownCloud password reset" => "ailosod cyfrinair ownCloud", "Use the following link to reset your password: {link}" => "Defnyddiwch y ddolen hon i ailosod eich cyfrinair: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Anfonwyd y ddolen i ailosod eich cyfrinair i'ch cyfeiriad ebost.
Os nad yw'n cyrraedd o fewn amser rhesymol gwiriwch eich plygell spam/sothach.
Os nad yw yno, cysylltwch â'ch gweinyddwr lleol.", "Request failed!
Did you make sure your email/username was right?" => "Methodd y cais!
Gwiriwch eich enw defnyddiwr ac ebost.", diff --git a/core/l10n/da.php b/core/l10n/da.php index ed5a0b67a9..f028331f89 100644 --- a/core/l10n/da.php +++ b/core/l10n/da.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Indstillinger", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minut siden", -"{minutes} minutes ago" => "{minutes} minutter siden", -"1 hour ago" => "1 time siden", -"{hours} hours ago" => "{hours} timer siden", +"_%n minute ago_::_%n minutes ago_" => array("%n minut siden","%n minutter siden"), +"_%n hour ago_::_%n hours ago_" => array("%n time siden","%n timer siden"), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dage siden", +"_%n day ago_::_%n days ago_" => array("%n dag siden","%n dage siden"), "last month" => "sidste måned", -"{months} months ago" => "{months} måneder siden", +"_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), "months ago" => "måneder siden", "last year" => "sidste år", "years ago" => "år siden", @@ -86,12 +84,13 @@ $TRANSLATIONS = array( "Email sent" => "E-mail afsendt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til ownClouds community.", "The update was successful. Redirecting you to ownCloud now." => "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud.", -"ownCloud password reset" => "Nulstil ownCloud kodeord", +"%s password reset" => "%s adgangskode nulstillet", "Use the following link to reset your password: {link}" => "Anvend følgende link til at nulstille din adgangskode: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Linket til at nulstille dit kodeord er blevet sendt til din e-post.
Hvis du ikke modtager den inden for en rimelig tid, så tjek dine spam / junk mapper.
Hvis det ikke er der, så spørg din lokale administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anmodning mislykkedes!
Er du sikker på at din e-post / brugernavn var korrekt?", "You will receive a link to reset your password via Email." => "Du vil modtage et link til at nulstille dit kodeord via email.", "Username" => "Brugernavn", +"Your files are encrypted. If you haven't enabled the recovery key, there will be no way to get your data back after your password is reset. If you are not sure what to do, please contact your administrator before you continue. Do you really want to continue?" => "Dine filer er krypterede. Hvis du ikke har aktiveret gendannelsesnøglen kan du ikke få dine data tilbage efter at du har ændret adgangskode. HVis du ikke er sikker på, hvad du skal gøre så kontakt din administrator før du fortsætter. Vil du fortsætte?", "Yes, I really want to reset my password now" => "Ja, Jeg ønsker virkelig at nulstille mit kodeord", "Request reset" => "Anmod om nulstilling", "Your password was reset" => "Dit kodeord blev nulstillet", @@ -105,6 +104,7 @@ $TRANSLATIONS = array( "Help" => "Hjælp", "Access forbidden" => "Adgang forbudt", "Cloud not found" => "Sky ikke fundet", +"Hey there,\n\njust letting you know that %s shared %s with you.\nView it: %s\n\nCheers!" => "Hallo\n\ndette blot for at lade dig vide, at %s har delt %s med dig.\nSe det: %s\n\nHej", "Edit categories" => "Rediger kategorier", "Add" => "Tilføj", "Security Warning" => "Sikkerhedsadvarsel", @@ -113,6 +113,7 @@ $TRANSLATIONS = array( "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.", +"For information how to properly configure your server, please see the documentation." => "For information om, hvordan du konfigurerer din server korrekt se dokumentationen.", "Create an admin account" => "Opret en administratorkonto", "Advanced" => "Avanceret", "Data folder" => "Datamappe", @@ -126,6 +127,7 @@ $TRANSLATIONS = array( "Finish setup" => "Afslut opsætning", "%s is available. Get more information on how to update." => "%s er tilgængelig. Få mere information om, hvordan du opdaterer.", "Log out" => "Log ud", +"More apps" => "Flere programmer", "Automatic logon rejected!" => "Automatisk login afvist!", "If you did not change your password recently, your account may be compromised!" => "Hvis du ikke har ændret din adgangskode for nylig, har nogen muligvis tiltvunget sig adgang til din konto!", "Please change your password to secure your account again." => "Skift adgangskode for at sikre din konto igen.", @@ -133,6 +135,7 @@ $TRANSLATIONS = array( "remember" => "husk", "Log in" => "Log ind", "Alternative Logins" => "Alternative logins", +"Hey there,

just letting you know that %s shared »%s« with you.
View it!

Cheers!" => "Hallo,

dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
Se det!

Hej", "prev" => "forrige", "next" => "næste", "Updating ownCloud to version %s, this may take a while." => "Opdatere Owncloud til version %s, dette kan tage et stykke tid." diff --git a/core/l10n/de.php b/core/l10n/de.php index a3acaf4ae0..c4b22ecd87 100644 --- a/core/l10n/de.php +++ b/core/l10n/de.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"1 minute ago" => "vor einer Minute", -"{minutes} minutes ago" => "Vor {minutes} Minuten", -"1 hour ago" => "Vor einer Stunde", -"{hours} hours ago" => "Vor {hours} Stunden", +"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"{days} days ago" => "Vor {days} Tag(en)", +"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", -"{months} months ago" => "Vor {months} Monaten", +"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", @@ -86,7 +84,7 @@ $TRANSLATIONS = array( "Email sent" => "E-Mail wurde verschickt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Du wirst nun zu ownCloud weitergeleitet.", -"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", +"%s password reset" => "%s-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutze den nachfolgenden Link, um Dein Passwort zurückzusetzen: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Deines Passwort ist an Deine E-Mail-Adresse geschickt worden.
Wenn Du ihn nicht innerhalb einer vernünftigen Zeit empfängst, prüfe Deine Spam-Verzeichnisse.
Wenn er nicht dort ist, frage Deinen lokalen Administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Hast Du darauf geachtet, dass Deine E-Mail/Dein Benutzername korrekt war?", @@ -129,6 +127,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschließen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", +"More apps" => "Mehr Apps", "Automatic logon rejected!" => "Automatischer Login zurückgewiesen!", "If you did not change your password recently, your account may be compromised!" => "Wenn Du Dein Passwort nicht vor kurzem geändert hast, könnte Dein\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändere Dein Passwort, um Deinen Account wieder zu schützen.", diff --git a/core/l10n/de_AT.php b/core/l10n/de_AT.php new file mode 100644 index 0000000000..c0e3e80f0a --- /dev/null +++ b/core/l10n/de_AT.php @@ -0,0 +1,9 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), +"More apps" => "Mehr Apps" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/de_CH.php b/core/l10n/de_CH.php index a6061a2b1e..81c74d841e 100644 --- a/core/l10n/de_CH.php +++ b/core/l10n/de_CH.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"{minutes} minutes ago" => "Vor {minutes} Minuten", -"1 hour ago" => "Vor einer Stunde", -"{hours} hours ago" => "Vor {hours} Stunden", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"{days} days ago" => "Vor {days} Tag(en)", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"{months} months ago" => "Vor {months} Monaten", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email gesendet", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", -"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", @@ -129,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschliessen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", +"More apps" => "Mehr Apps", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", diff --git a/core/l10n/de_DE.php b/core/l10n/de_DE.php index 48d193fb22..a323fd0819 100644 --- a/core/l10n/de_DE.php +++ b/core/l10n/de_DE.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Einstellungen", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"{minutes} minutes ago" => "Vor {minutes} Minuten", -"1 hour ago" => "Vor einer Stunde", -"{hours} hours ago" => "Vor {hours} Stunden", +"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"{days} days ago" => "Vor {days} Tag(en)", +"_%n day ago_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", -"{months} months ago" => "Vor {months} Monaten", +"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "months ago" => "Vor Monaten", "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", @@ -86,7 +84,7 @@ $TRANSLATIONS = array( "Email sent" => "Email gesendet", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet.", -"ownCloud password reset" => "ownCloud-Passwort zurücksetzen", +"%s password reset" => "%s-Passwort zurücksetzen", "Use the following link to reset your password: {link}" => "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Der Link zum Rücksetzen Ihres Passworts ist an Ihre E-Mail-Adresse gesendet worde.
Wenn Sie ihn nicht innerhalb einer vernünftigen Zeitspanne erhalten, prüfen Sie bitte Ihre Spam-Verzeichnisse.
Wenn er nicht dort ist, fragen Sie Ihren lokalen Administrator.", "Request failed!
Did you make sure your email/username was right?" => "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?", @@ -129,6 +127,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installation abschließen", "%s is available. Get more information on how to update." => "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein.", "Log out" => "Abmelden", +"More apps" => "Mehr Apps", "Automatic logon rejected!" => "Automatische Anmeldung verweigert!", "If you did not change your password recently, your account may be compromised!" => "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!", "Please change your password to secure your account again." => "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern.", diff --git a/core/l10n/el.php b/core/l10n/el.php index 71b4fd2217..330a29e274 100644 --- a/core/l10n/el.php +++ b/core/l10n/el.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Δεκέμβριος", "Settings" => "Ρυθμίσεις", "seconds ago" => "δευτερόλεπτα πριν", -"1 minute ago" => "1 λεπτό πριν", -"{minutes} minutes ago" => "{minutes} λεπτά πριν", -"1 hour ago" => "1 ώρα πριν", -"{hours} hours ago" => "{hours} ώρες πριν", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "σήμερα", "yesterday" => "χτες", -"{days} days ago" => "{days} ημέρες πριν", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "τελευταίο μήνα", -"{months} months ago" => "{months} μήνες πριν", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "μήνες πριν", "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Το Email απεστάλη ", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ στείλτε αναφορά στην κοινότητα ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud.", -"ownCloud password reset" => "Επαναφορά συνθηματικού ownCloud", "Use the following link to reset your password: {link}" => "Χρησιμοποιήστε τον ακόλουθο σύνδεσμο για να επανεκδόσετε τον κωδικό: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Ο σύνδεσμος για να επανακτήσετε τον κωδικό σας έχει σταλεί στο email
αν δεν το λάβετε μέσα σε ορισμένο διάστημα, ελέγξετε τους φακελλους σας spam/junk
αν δεν είναι εκεί ρωτήστε τον τοπικό σας διαχειριστή ", "Request failed!
Did you make sure your email/username was right?" => "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το email σας / username ειναι σωστο? ", diff --git a/core/l10n/en@pirate.php b/core/l10n/en@pirate.php index e269c57c3d..997d1f88c4 100644 --- a/core/l10n/en@pirate.php +++ b/core/l10n/en@pirate.php @@ -1,5 +1,9 @@ array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Password" => "Passcode" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/eo.php b/core/l10n/eo.php index 7ae5d65426..66fc435fec 100644 --- a/core/l10n/eo.php +++ b/core/l10n/eo.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Decembro", "Settings" => "Agordo", "seconds ago" => "sekundoj antaŭe", -"1 minute ago" => "antaŭ 1 minuto", -"{minutes} minutes ago" => "antaŭ {minutes} minutoj", -"1 hour ago" => "antaŭ 1 horo", -"{hours} hours ago" => "antaŭ {hours} horoj", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"{days} days ago" => "antaŭ {days} tagoj", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "lastamonate", -"{months} months ago" => "antaŭ {months} monatoj", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "monatoj antaŭe", "last year" => "lastajare", "years ago" => "jaroj antaŭe", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "La retpoŝtaĵo sendiĝis", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la ownClouda komunumo.", "The update was successful. Redirecting you to ownCloud now." => "La ĝisdatigo estis sukcesa. Alidirektante nun al ownCloud.", -"ownCloud password reset" => "La pasvorto de ownCloud restariĝis.", "Use the following link to reset your password: {link}" => "Uzu la jenan ligilon por restarigi vian pasvorton: {link}", "Request failed!
Did you make sure your email/username was right?" => "La peto malsukcesis!
Ĉu vi certiĝis, ke via retpoŝto/uzantonomo ĝustas?", "You will receive a link to reset your password via Email." => "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton.", diff --git a/core/l10n/es.php b/core/l10n/es.php index 9e25f154a4..fba08b9f60 100644 --- a/core/l10n/es.php +++ b/core/l10n/es.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Diciembre", "Settings" => "Ajustes", "seconds ago" => "hace segundos", -"1 minute ago" => "hace 1 minuto", -"{minutes} minutes ago" => "hace {minutes} minutos", -"1 hour ago" => "Hace 1 hora", -"{hours} hours ago" => "Hace {hours} horas", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"{days} days ago" => "hace {days} días", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "el mes pasado", -"{months} months ago" => "Hace {months} meses", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "hace meses", "last year" => "el año pasado", "years ago" => "hace años", @@ -84,9 +82,8 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Error estableciendo fecha de caducidad", "Sending ..." => "Enviando...", "Email sent" => "Correo electrónico enviado", -"The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", +"The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora.", -"ownCloud password reset" => "Reseteo contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Utilice el siguiente enlace para restablecer su contraseña: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña ha sido enviada a su correo electrónico.
Si no lo recibe en un plazo razonable de tiempo, revise su carpeta de spam / correo no deseado.
Si no está allí, pregunte a su administrador local.", "Request failed!
Did you make sure your email/username was right?" => "La petición ha fallado!
¿Está seguro de que su dirección de correo electrónico o nombre de usuario era correcto?", diff --git a/core/l10n/es_AR.php b/core/l10n/es_AR.php index 6367ba07f5..68c501e05a 100644 --- a/core/l10n/es_AR.php +++ b/core/l10n/es_AR.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "diciembre", "Settings" => "Configuración", "seconds ago" => "segundos atrás", -"1 minute ago" => "hace 1 minuto", -"{minutes} minutes ago" => "hace {minutes} minutos", -"1 hour ago" => "1 hora atrás", -"{hours} hours ago" => "hace {hours} horas", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"{days} days ago" => "hace {days} días", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "el mes pasado", -"{months} months ago" => "{months} meses atrás", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses atrás", "last year" => "el año pasado", "years ago" => "años atrás", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "e-mail mandado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La actualización no pudo ser completada. Por favor, reportá el inconveniente a la comunidad ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La actualización fue exitosa. Estás siendo redirigido a ownCloud.", -"ownCloud password reset" => "Restablecer contraseña de ownCloud", "Use the following link to reset your password: {link}" => "Usá este enlace para restablecer tu contraseña: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "El enlace para restablecer la contraseña fue enviada a tu e-mail.
Si no lo recibís en un plazo de tiempo razonable, revisá tu carpeta de spam / correo no deseado.
Si no está ahí, preguntale a tu administrador.", "Request failed!
Did you make sure your email/username was right?" => "¡Error en el pedido!
¿Estás seguro de que tu dirección de correo electrónico o nombre de usuario son correcto?", diff --git a/core/l10n/et_EE.php b/core/l10n/et_EE.php index da9c0d3609..5524411e77 100644 --- a/core/l10n/et_EE.php +++ b/core/l10n/et_EE.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Detsember", "Settings" => "Seaded", "seconds ago" => "sekundit tagasi", -"1 minute ago" => "1 minut tagasi", -"{minutes} minutes ago" => "{minutes} minutit tagasi", -"1 hour ago" => "1 tund tagasi", -"{hours} hours ago" => "{hours} tundi tagasi", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "täna", "yesterday" => "eile", -"{days} days ago" => "{days} päeva tagasi", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "viimasel kuul", -"{months} months ago" => "{months} kuud tagasi", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "kuu tagasi", "last year" => "viimasel aastal", "years ago" => "aastat tagasi", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-kiri on saadetud", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Uuendus ebaõnnestus. Palun teavita probleemidest ownCloud kogukonda.", "The update was successful. Redirecting you to ownCloud now." => "Uuendus oli edukas. Kohe suunatakse Sind ownCloudi.", -"ownCloud password reset" => "ownCloud parooli taastamine", "Use the following link to reset your password: {link}" => "Kasuta järgnevat linki oma parooli taastamiseks: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Link parooli vahetuseks on saadetud Sinu e-posti aadressile.
Kui kiri pole saabunud mõistliku aja jooksul, siis kontrolli oma spam-/rämpskirjade katalooge.
Kui kirja pole ka seal, siis küsi abi süsteemihaldurilt.", "Request failed!
Did you make sure your email/username was right?" => "Päring ebaõnnestus!
Oled sa veendunud, et e-post/kasutajanimi on õiged?", @@ -129,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Lõpeta seadistamine", "%s is available. Get more information on how to update." => "%s on saadaval. Vaata lähemalt kuidas uuendada.", "Log out" => "Logi välja", +"More apps" => "Rohkem rakendusi", "Automatic logon rejected!" => "Automaatne sisselogimine lükati tagasi!", "If you did not change your password recently, your account may be compromised!" => "Kui sa ei muutnud oma parooli hiljuti, siis võib su kasutajakonto olla ohustatud!", "Please change your password to secure your account again." => "Palun muuda parooli, et oma kasutajakonto uuesti turvata.", diff --git a/core/l10n/eu.php b/core/l10n/eu.php index f3b790ccb5..5ab0e032e4 100644 --- a/core/l10n/eu.php +++ b/core/l10n/eu.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Abendua", "Settings" => "Ezarpenak", "seconds ago" => "segundu", -"1 minute ago" => "orain dela minutu 1", -"{minutes} minutes ago" => "orain dela {minutes} minutu", -"1 hour ago" => "orain dela ordu bat", -"{hours} hours ago" => "orain dela {hours} ordu", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "gaur", "yesterday" => "atzo", -"{days} days ago" => "orain dela {days} egun", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "joan den hilabetean", -"{months} months ago" => "orain dela {months} hilabete", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "hilabete", "last year" => "joan den urtean", "years ago" => "urte", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Eposta bidalia", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat ownCloud komunitatearentzako.", "The update was successful. Redirecting you to ownCloud now." => "Eguneraketa ongi egin da. Orain zure ownClouderea berbideratua izango zara.", -"ownCloud password reset" => "ownCloud-en pasahitza berrezarri", "Use the following link to reset your password: {link}" => "Eribili hurrengo lotura zure pasahitza berrezartzeko: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Zure pasahitza berrezartzeko lotura zure postara bidalia izan da.
Ez baduzu arrazoizko denbora \nepe batean jasotzen begiratu zure zabor-posta karpetan.
Hor ere ez badago kudeatzailearekin harremanetan ipini.", "Request failed!
Did you make sure your email/username was right?" => "Eskaerak huts egin du!
Ziur zaude posta/pasahitza zuzenak direla?", diff --git a/core/l10n/fa.php b/core/l10n/fa.php index 0eef756200..f9af8787e0 100644 --- a/core/l10n/fa.php +++ b/core/l10n/fa.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "دسامبر", "Settings" => "تنظیمات", "seconds ago" => "ثانیه‌ها پیش", -"1 minute ago" => "1 دقیقه پیش", -"{minutes} minutes ago" => "{دقیقه ها} دقیقه های پیش", -"1 hour ago" => "1 ساعت پیش", -"{hours} hours ago" => "{ساعت ها} ساعت ها پیش", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "امروز", "yesterday" => "دیروز", -"{days} days ago" => "{روزها} روزهای پیش", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "ماه قبل", -"{months} months ago" => "{ماه ها} ماه ها پیش", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "ماه‌های قبل", "last year" => "سال قبل", "years ago" => "سال‌های قبل", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "ایمیل ارسال شد", "The update was unsuccessful. Please report this issue to the ownCloud community." => "به روز رسانی ناموفق بود. لطفا این خطا را به جامعه ی OwnCloud گزارش نمایید.", "The update was successful. Redirecting you to ownCloud now." => "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud.", -"ownCloud password reset" => "پسورد ابرهای شما تغییرکرد", "Use the following link to reset your password: {link}" => "از لینک زیر جهت دوباره سازی پسورد استفاده کنید :\n{link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "لینک تنظیم مجدد رمز عبور به ایمیل شما ارسال شده است.
اگر آن رادر یک زمان مشخصی دریافت نکرده اید، لطفا هرزنامه/ پوشه های ناخواسته را بررسی کنید.
در صورت نبودن از مدیر خود بپرسید.", "Request failed!
Did you make sure your email/username was right?" => "درخواست رد شده است !
آیا مطمئن هستید که ایمیل/ نام کاربری شما صحیح میباشد ؟", diff --git a/core/l10n/fi_FI.php b/core/l10n/fi_FI.php index 27eab10087..22d35c1471 100644 --- a/core/l10n/fi_FI.php +++ b/core/l10n/fi_FI.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "joulukuu", "Settings" => "Asetukset", "seconds ago" => "sekuntia sitten", -"1 minute ago" => "1 minuutti sitten", -"{minutes} minutes ago" => "{minutes} minuuttia sitten", -"1 hour ago" => "1 tunti sitten", -"{hours} hours ago" => "{hours} tuntia sitten", +"_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), +"_%n hour ago_::_%n hours ago_" => array("%n tunti sitten","%n tuntia sitten"), "today" => "tänään", "yesterday" => "eilen", -"{days} days ago" => "{days} päivää sitten", +"_%n day ago_::_%n days ago_" => array("%n päivä sitten","%n päivää sitten"), "last month" => "viime kuussa", -"{months} months ago" => "{months} kuukautta sitten", +"_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), "months ago" => "kuukautta sitten", "last year" => "viime vuonna", "years ago" => "vuotta sitten", @@ -81,7 +79,6 @@ $TRANSLATIONS = array( "Email sent" => "Sähköposti lähetetty", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Päivitys epäonnistui. Ilmoita ongelmasta ownCloud-yhteisölle.", "The update was successful. Redirecting you to ownCloud now." => "Päivitys onnistui. Selain ohjautuu nyt ownCloudiisi.", -"ownCloud password reset" => "ownCloud-salasanan nollaus", "Use the following link to reset your password: {link}" => "Voit palauttaa salasanasi seuraavassa osoitteessa: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Linkki salasanan nollaamiseen on lähetetty sähköpostiisi.
Jos et saa viestiä pian, tarkista roskapostikansiosi.
Jos et löydä viestiä roskapostinkaan seasta, ota yhteys ylläpitäjään.", "Request failed!
Did you make sure your email/username was right?" => "Pyyntö epäonnistui!
Olihan sähköpostiosoitteesi/käyttäjätunnuksesi oikein?", @@ -122,6 +119,7 @@ $TRANSLATIONS = array( "Finish setup" => "Viimeistele asennus", "%s is available. Get more information on how to update." => "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan.", "Log out" => "Kirjaudu ulos", +"More apps" => "Lisää sovelluksia", "Automatic logon rejected!" => "Automaattinen sisäänkirjautuminen hylättiin!", "If you did not change your password recently, your account may be compromised!" => "Jos et vaihtanut salasanaasi äskettäin, tilisi saattaa olla murrettu.", "Please change your password to secure your account again." => "Vaihda salasanasi suojataksesi tilisi uudelleen.", diff --git a/core/l10n/fr.php b/core/l10n/fr.php index b5d8a90e34..641378ac42 100644 --- a/core/l10n/fr.php +++ b/core/l10n/fr.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "décembre", "Settings" => "Paramètres", "seconds ago" => "il y a quelques secondes", -"1 minute ago" => "il y a une minute", -"{minutes} minutes ago" => "il y a {minutes} minutes", -"1 hour ago" => "Il y a une heure", -"{hours} hours ago" => "Il y a {hours} heures", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "aujourd'hui", "yesterday" => "hier", -"{days} days ago" => "il y a {days} jours", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "le mois dernier", -"{months} months ago" => "Il y a {months} mois", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "il y a plusieurs mois", "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email envoyé", "The update was unsuccessful. Please report this issue to the ownCloud community." => "La mise à jour a échoué. Veuillez signaler ce problème à la communauté ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "La mise à jour a réussi. Vous êtes redirigé maintenant vers ownCloud.", -"ownCloud password reset" => "Réinitialisation de votre mot de passe Owncloud", "Use the following link to reset your password: {link}" => "Utilisez le lien suivant pour réinitialiser votre mot de passe : {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Le lien permettant de réinitialiser votre mot de passe vous a été transmis.
Si vous ne le recevez pas dans un délai raisonnable, vérifier votre boîte de pourriels.
Au besoin, contactez votre administrateur local.", "Request failed!
Did you make sure your email/username was right?" => "Requête en échec!
Avez-vous vérifié vos courriel/nom d'utilisateur?", diff --git a/core/l10n/gl.php b/core/l10n/gl.php index 08172a14bc..5c50556776 100644 --- a/core/l10n/gl.php +++ b/core/l10n/gl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "decembro", "Settings" => "Axustes", "seconds ago" => "segundos atrás", -"1 minute ago" => "hai 1 minuto", -"{minutes} minutes ago" => "hai {minutes} minutos", -"1 hour ago" => "Vai 1 hora", -"{hours} hours ago" => "hai {hours} horas", +"_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","hai %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n horas"), "today" => "hoxe", "yesterday" => "onte", -"{days} days ago" => "hai {days} días", +"_%n day ago_::_%n days ago_" => array("hai %n día","hai %n días"), "last month" => "último mes", -"{months} months ago" => "hai {months} meses", +"_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", @@ -86,7 +84,7 @@ $TRANSLATIONS = array( "Email sent" => "Correo enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualización non foi satisfactoria, informe deste problema á comunidade de ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A actualización realizouse correctamente. Redirixíndoo agora á ownCloud.", -"ownCloud password reset" => "Restabelecer o contrasinal de ownCloud", +"%s password reset" => "Restabelecer o contrasinal %s", "Use the following link to reset your password: {link}" => "Usa a seguinte ligazón para restabelecer o contrasinal: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Envióuselle ao seu correo unha ligazón para restabelecer o seu contrasinal.
Se non o recibe nun prazo razoábel de tempo, revise o seu cartafol de correo lixo ou de non desexados.
Se non o atopa aí pregúntelle ao seu administrador local..", "Request failed!
Did you make sure your email/username was right?" => "Non foi posíbel facer a petición!
Asegúrese de que o seu enderezo de correo ou nome de usuario é correcto.", @@ -129,6 +127,7 @@ $TRANSLATIONS = array( "Finish setup" => "Rematar a configuración", "%s is available. Get more information on how to update." => "%s está dispoñíbel. Obteña máis información sobre como actualizar.", "Log out" => "Desconectar", +"More apps" => "Máis aplicativos", "Automatic logon rejected!" => "Rexeitouse a entrada automática", "If you did not change your password recently, your account may be compromised!" => "Se non fixo recentemente cambios de contrasinal é posíbel que a súa conta estea comprometida!", "Please change your password to secure your account again." => "Cambie de novo o seu contrasinal para asegurar a súa conta.", diff --git a/core/l10n/he.php b/core/l10n/he.php index c5fed42db8..6a2e5c88ee 100644 --- a/core/l10n/he.php +++ b/core/l10n/he.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "דצמבר", "Settings" => "הגדרות", "seconds ago" => "שניות", -"1 minute ago" => "לפני דקה אחת", -"{minutes} minutes ago" => "לפני {minutes} דקות", -"1 hour ago" => "לפני שעה", -"{hours} hours ago" => "לפני {hours} שעות", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "היום", "yesterday" => "אתמול", -"{days} days ago" => "לפני {days} ימים", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "חודש שעבר", -"{months} months ago" => "לפני {months} חודשים", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "חודשים", "last year" => "שנה שעברה", "years ago" => "שנים", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "הודעת הדוא״ל נשלחה", "The update was unsuccessful. Please report this issue to the ownCloud community." => "תהליך העדכון לא הושלם בהצלחה. נא דווח את הבעיה בקהילת ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud.", -"ownCloud password reset" => "איפוס הססמה של ownCloud", "Use the following link to reset your password: {link}" => "יש להשתמש בקישור הבא כדי לאפס את הססמה שלך: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "הקישור לאיפוס הססמה שלך נשלח אליך בדוא״ל.
אם לא קיבלת את הקישור תוך זמן סביר, מוטב לבדוק את תיבת הזבל שלך.
אם ההודעה לא שם, כדאי לשאול את מנהל הרשת שלך .", "Request failed!
Did you make sure your email/username was right?" => "הבקשה נכשלה!
האם כתובת הדוא״ל/שם המשתמש שלך נכונים?", diff --git a/core/l10n/hi.php b/core/l10n/hi.php index 37ac5d8ae0..7ad75a41a1 100644 --- a/core/l10n/hi.php +++ b/core/l10n/hi.php @@ -13,6 +13,10 @@ $TRANSLATIONS = array( "November" => "नवंबर", "December" => "दिसम्बर", "Settings" => "सेटिंग्स", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Error" => "त्रुटि", "Share" => "साझा करें", "Share with" => "के साथ साझा", diff --git a/core/l10n/hr.php b/core/l10n/hr.php index 856a3019fb..403df77f81 100644 --- a/core/l10n/hr.php +++ b/core/l10n/hr.php @@ -23,9 +23,13 @@ $TRANSLATIONS = array( "December" => "Prosinac", "Settings" => "Postavke", "seconds ago" => "sekundi prije", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "danas", "yesterday" => "jučer", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "prošli mjesec", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "mjeseci", "last year" => "prošlu godinu", "years ago" => "godina", @@ -58,7 +62,6 @@ $TRANSLATIONS = array( "Password protected" => "Zaštita lozinkom", "Error unsetting expiration date" => "Greška prilikom brisanja datuma isteka", "Error setting expiration date" => "Greška prilikom postavljanja datuma isteka", -"ownCloud password reset" => "ownCloud resetiranje lozinke", "Use the following link to reset your password: {link}" => "Koristite ovaj link da biste poništili lozinku: {link}", "You will receive a link to reset your password via Email." => "Primit ćete link kako biste poništili zaporku putem e-maila.", "Username" => "Korisničko ime", diff --git a/core/l10n/hu_HU.php b/core/l10n/hu_HU.php index 68c519f7e7..ddec9c1e4c 100644 --- a/core/l10n/hu_HU.php +++ b/core/l10n/hu_HU.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Beállítások", "seconds ago" => "pár másodperce", -"1 minute ago" => "1 perce", -"{minutes} minutes ago" => "{minutes} perce", -"1 hour ago" => "1 órája", -"{hours} hours ago" => "{hours} órája", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ma", "yesterday" => "tegnap", -"{days} days ago" => "{days} napja", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "múlt hónapban", -"{months} months ago" => "{months} hónapja", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "több hónapja", "last year" => "tavaly", "years ago" => "több éve", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Az emailt elküldtük", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A frissítés nem sikerült. Kérem értesítse erről a problémáról az ownCloud közösséget.", "The update was successful. Redirecting you to ownCloud now." => "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz.", -"ownCloud password reset" => "ownCloud jelszó-visszaállítás", "Use the following link to reset your password: {link}" => "Használja ezt a linket a jelszó ismételt beállításához: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Emailben fog kapni egy linket, amivel új jelszót tud majd beállítani magának.
Ha a levél nem jött meg, holott úgy érzi, hogy már meg kellett volna érkeznie, akkor ellenőrizze a spam/levélszemét mappáját.
Ha ott sincsen, akkor érdeklődjön a rendszergazdánál.", "Request failed!
Did you make sure your email/username was right?" => "A kérést nem sikerült teljesíteni!
Biztos, hogy jó emailcímet/felhasználónevet adott meg?", diff --git a/core/l10n/hy.php b/core/l10n/hy.php index ac1006dd9a..9965d4731b 100644 --- a/core/l10n/hy.php +++ b/core/l10n/hy.php @@ -18,6 +18,10 @@ $TRANSLATIONS = array( "September" => "Սեպտեմբեր", "October" => "Հոկտեմբեր", "November" => "Նոյեմբեր", -"December" => "Դեկտեմբեր" +"December" => "Դեկտեմբեր", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ia.php b/core/l10n/ia.php index e02a38d3a0..e0d1e96f6a 100644 --- a/core/l10n/ia.php +++ b/core/l10n/ia.php @@ -20,12 +20,15 @@ $TRANSLATIONS = array( "November" => "Novembre", "December" => "Decembre", "Settings" => "Configurationes", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Cancel" => "Cancellar", "Error" => "Error", "Share" => "Compartir", "Password" => "Contrasigno", "Send" => "Invia", -"ownCloud password reset" => "Reinitialisation del contrasigno de ownCLoud", "Username" => "Nomine de usator", "Request reset" => "Requestar reinitialisation", "Your password was reset" => "Tu contrasigno esseva reinitialisate", diff --git a/core/l10n/id.php b/core/l10n/id.php index e0bc733f90..644efde9fc 100644 --- a/core/l10n/id.php +++ b/core/l10n/id.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Setelan", "seconds ago" => "beberapa detik yang 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", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hari ini", "yesterday" => "kemarin", -"{days} days ago" => "{days} hari yang lalu", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "bulan kemarin", -"{months} months ago" => "{months} bulan yang lalu", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "beberapa bulan lalu", "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Email terkirim", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Pembaruan gagal. Silakan laporkan masalah ini ke komunitas ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Pembaruan sukses. Anda akan diarahkan ulang ke ownCloud.", -"ownCloud password reset" => "Setel ulang sandi ownCloud", "Use the following link to reset your password: {link}" => "Gunakan tautan berikut untuk menyetel ulang sandi Anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan menerima tautan penyetelan ulang sandi lewat Email.", "Username" => "Nama pengguna", diff --git a/core/l10n/is.php b/core/l10n/is.php index 180e28e974..5115d70ee7 100644 --- a/core/l10n/is.php +++ b/core/l10n/is.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Stillingar", "seconds ago" => "sek.", -"1 minute ago" => "Fyrir 1 mínútu", -"{minutes} minutes ago" => "{minutes} min síðan", -"1 hour ago" => "Fyrir 1 klst.", -"{hours} hours ago" => "fyrir {hours} klst.", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "í dag", "yesterday" => "í gær", -"{days} days ago" => "{days} dagar síðan", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "síðasta mánuði", -"{months} months ago" => "fyrir {months} mánuðum", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "mánuðir síðan", "last year" => "síðasta ári", "years ago" => "einhverjum árum", @@ -81,7 +79,6 @@ $TRANSLATIONS = array( "Sending ..." => "Sendi ...", "Email sent" => "Tölvupóstur sendur", "The update was successful. Redirecting you to ownCloud now." => "Uppfærslan heppnaðist. Beini þér til ownCloud nú.", -"ownCloud password reset" => "endursetja ownCloud lykilorð", "Use the following link to reset your password: {link}" => "Notað eftirfarandi veftengil til að endursetja lykilorðið þitt: {link}", "You will receive a link to reset your password via Email." => "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið.", "Username" => "Notendanafn", diff --git a/core/l10n/it.php b/core/l10n/it.php index 3fc006b9a5..9c55f7125a 100644 --- a/core/l10n/it.php +++ b/core/l10n/it.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dicembre", "Settings" => "Impostazioni", "seconds ago" => "secondi fa", -"1 minute ago" => "Un minuto fa", -"{minutes} minutes ago" => "{minutes} minuti fa", -"1 hour ago" => "1 ora fa", -"{hours} hours ago" => "{hours} ore fa", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "oggi", "yesterday" => "ieri", -"{days} days ago" => "{days} giorni fa", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "mese scorso", -"{months} months ago" => "{months} mesi fa", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "mesi fa", "last year" => "anno scorso", "years ago" => "anni fa", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Messaggio inviato", "The update was unsuccessful. Please report this issue to the ownCloud community." => "L'aggiornamento non è riuscito. Segnala il problema alla comunità di ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "L'aggiornamento è stato effettuato correttamente. Stai per essere reindirizzato a ownCloud.", -"ownCloud password reset" => "Ripristino password di ownCloud", "Use the following link to reset your password: {link}" => "Usa il collegamento seguente per ripristinare la password: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Il collegamento per ripristinare la password è stato inviato al tuo indirizzo di posta.
Se non lo ricevi in tempi ragionevoli, controlla le cartelle della posta indesiderata.
Se non dovesse essere nemmeno lì, contatta il tuo amministratore locale.", "Request failed!
Did you make sure your email/username was right?" => "Richiesta non riuscita!
Sei sicuro che l'indirizzo di posta/nome utente fosse corretto?", diff --git a/core/l10n/ja_JP.php b/core/l10n/ja_JP.php index 235790d6e5..fc18408829 100644 --- a/core/l10n/ja_JP.php +++ b/core/l10n/ja_JP.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "12月", "Settings" => "設定", "seconds ago" => "数秒前", -"1 minute ago" => "1 分前", -"{minutes} minutes ago" => "{minutes} 分前", -"1 hour ago" => "1 時間前", -"{hours} hours ago" => "{hours} 時間前", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", -"{days} days ago" => "{days} 日前", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "一月前", -"{months} months ago" => "{months} 月前", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "月前", "last year" => "一年前", "years ago" => "年前", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "メールを送信しました", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新に成功しました。この問題を ownCloud community にレポートしてください。", "The update was successful. Redirecting you to ownCloud now." => "更新に成功しました。今すぐownCloudにリダイレクトします。", -"ownCloud password reset" => "ownCloudのパスワードをリセットします", "Use the following link to reset your password: {link}" => "パスワードをリセットするには次のリンクをクリックして下さい: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "パスワードリセットのリンクをあなたのメールアドレスに送信しました。
しばらくたっても受信出来ない場合は、スパム/迷惑メールフォルダを確認して下さい。
もしそこにもない場合は、管理者に問い合わせてください。", "Request failed!
Did you make sure your email/username was right?" => "リクエストに失敗しました!
あなたのメール/ユーザ名が正しいことを確認しましたか?", @@ -129,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "セットアップを完了します", "%s is available. Get more information on how to update." => "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。", "Log out" => "ログアウト", +"More apps" => "他のアプリ", "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." => "アカウント保護の為、パスワードを再度の変更をお願いいたします。", diff --git a/core/l10n/ka.php b/core/l10n/ka.php index 5a6814afaf..b6700f00f9 100644 --- a/core/l10n/ka.php +++ b/core/l10n/ka.php @@ -1,10 +1,12 @@ "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"1 hour ago" => "1 საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), "Password" => "პაროლი", "Personal" => "პერსონა", "Users" => "მომხმარებლები", diff --git a/core/l10n/ka_GE.php b/core/l10n/ka_GE.php index 9f0cb93fcd..bf9ce1b8a4 100644 --- a/core/l10n/ka_GE.php +++ b/core/l10n/ka_GE.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "დეკემბერი", "Settings" => "პარამეტრები", "seconds ago" => "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"{minutes} minutes ago" => "{minutes} წუთის წინ", -"1 hour ago" => "1 საათის წინ", -"{hours} hours ago" => "{hours} საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", -"{days} days ago" => "{days} დღის წინ", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "გასულ თვეში", -"{months} months ago" => "{months} თვის წინ", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "თვის წინ", "last year" => "ბოლო წელს", "years ago" => "წლის წინ", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "იმეილი გაიგზავნა", "The update was unsuccessful. Please report this issue to the ownCloud community." => "განახლება ვერ განხორციელდა. გთხოვთ შეგვატყობინოთ ამ პრობლემის შესახებ აქ: ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე.", -"ownCloud password reset" => "ownCloud პაროლის შეცვლა", "Use the following link to reset your password: {link}" => "გამოიყენე შემდეგი ლინკი პაროლის შესაცვლელად: {link}", "You will receive a link to reset your password via Email." => "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე", "Username" => "მომხმარებლის სახელი", diff --git a/core/l10n/kn.php b/core/l10n/kn.php new file mode 100644 index 0000000000..556cca20da --- /dev/null +++ b/core/l10n/kn.php @@ -0,0 +1,8 @@ + array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/core/l10n/ko.php b/core/l10n/ko.php index 814dfadb66..44738a161a 100644 --- a/core/l10n/ko.php +++ b/core/l10n/ko.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "12월", "Settings" => "설정", "seconds ago" => "초 전", -"1 minute ago" => "1분 전", -"{minutes} minutes ago" => "{minutes}분 전", -"1 hour ago" => "1시간 전", -"{hours} hours ago" => "{hours}시간 전", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "오늘", "yesterday" => "어제", -"{days} days ago" => "{days}일 전", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "지난 달", -"{months} months ago" => "{months}개월 전", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "개월 전", "last year" => "작년", "years ago" => "년 전", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "이메일 발송됨", "The update was unsuccessful. Please report this issue to the ownCloud community." => "업데이트가 실패하였습니다. 이 문제를 ownCloud 커뮤니티에 보고해 주십시오.", "The update was successful. Redirecting you to ownCloud now." => "업데이트가 성공하였습니다. ownCloud로 돌아갑니다.", -"ownCloud password reset" => "ownCloud 암호 재설정", "Use the following link to reset your password: {link}" => "다음 링크를 사용하여 암호를 재설정할 수 있습니다: {link}", "Request failed!
Did you make sure your email/username was right?" => "요청이 실패했습니다!
email 주소와 사용자 명을 정확하게 넣으셨나요?", "You will receive a link to reset your password via Email." => "이메일로 암호 재설정 링크를 보냈습니다.", diff --git a/core/l10n/ku_IQ.php b/core/l10n/ku_IQ.php index 02f71d84ed..826fa428ef 100644 --- a/core/l10n/ku_IQ.php +++ b/core/l10n/ku_IQ.php @@ -1,6 +1,10 @@ "ده‌ستكاری", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Error" => "هه‌ڵه", "Password" => "وشەی تێپەربو", "Username" => "ناوی به‌کارهێنه‌ر", diff --git a/core/l10n/lb.php b/core/l10n/lb.php index ccc019d014..a4b32698c9 100644 --- a/core/l10n/lb.php +++ b/core/l10n/lb.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezember", "Settings" => "Astellungen", "seconds ago" => "Sekonnen hir", -"1 minute ago" => "1 Minutt hir", -"{minutes} minutes ago" => "virun {minutes} Minutten", -"1 hour ago" => "virun 1 Stonn", -"{hours} hours ago" => "virun {hours} Stonnen", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "haut", "yesterday" => "gëschter", -"{days} days ago" => "virun {days} Deeg", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "leschte Mount", -"{months} months ago" => "virun {months} Méint", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "Méint hir", "last year" => "Lescht Joer", "years ago" => "Joren hir", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email geschéckt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derownCloud-Community.", "The update was successful. Redirecting you to ownCloud now." => "Den Update war erfollegräich. Du gëss elo bei d'ownCloud ëmgeleet.", -"ownCloud password reset" => "Passwuert-Zrécksetzung vun der ownCloud", "Use the following link to reset your password: {link}" => "Benotz folgende Link fir däi Passwuert zréckzesetzen: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "De Link fir d'Passwuert zréckzesetzen gouf un deng E-Mail-Adress geschéckt.
Falls du d'Mail net an den nächste Minutte kriss, kuck w.e.gl. an dengem Spam-Dossier.
Wann do och keng Mail ass, fro w.e.gl. däin Adminstrateur.", "Request failed!
Did you make sure your email/username was right?" => "Ufro feelfeschloen!
Hues du séchergestallt dass deng Email respektiv däi Benotzernumm korrekt sinn?", diff --git a/core/l10n/lt_LT.php b/core/l10n/lt_LT.php index d0c4d4d79a..8a3ca044ea 100644 --- a/core/l10n/lt_LT.php +++ b/core/l10n/lt_LT.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Gruodis", "Settings" => "Nustatymai", "seconds ago" => "prieš sekundę", -"1 minute ago" => "Prieš 1 minutę", -"{minutes} minutes ago" => "Prieš {count} minutes", -"1 hour ago" => "prieš 1 valandą", -"{hours} hours ago" => "prieš {hours} valandas", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šiandien", "yesterday" => "vakar", -"{days} days ago" => "Prieš {days} dienas", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "praeitą mėnesį", -"{months} months ago" => "prieš {months} mėnesių", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "prieš mėnesį", "last year" => "praeitais metais", "years ago" => "prieš metus", @@ -84,7 +82,6 @@ $TRANSLATIONS = array( "Email sent" => "Laiškas išsiųstas", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the ownCloud bendruomenei.", "The update was successful. Redirecting you to ownCloud now." => "Atnaujinimas buvo sėkmingas. Nukreipiame į jūsų ownCloud.", -"ownCloud password reset" => "ownCloud slaptažodžio atkūrimas", "Use the following link to reset your password: {link}" => "Slaptažodio atkūrimui naudokite šią nuorodą: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Nuorodą su jūsų slaptažodžio atkūrimu buvo nusiųsta jums į paštą.
Jei jo negausite per atitinkamą laiką, pasižiūrėkite brukalo aplankale.
Jei jo ir ten nėra, teiraukitės administratoriaus.", "Request failed!
Did you make sure your email/username was right?" => "Klaida!
Ar tikrai jūsų el paštas/vartotojo vardas buvo teisingi?", diff --git a/core/l10n/lv.php b/core/l10n/lv.php index 1cac8466d0..ad9643e483 100644 --- a/core/l10n/lv.php +++ b/core/l10n/lv.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Decembris", "Settings" => "Iestatījumi", "seconds ago" => "sekundes atpakaļ", -"1 minute ago" => "pirms 1 minūtes", -"{minutes} minutes ago" => "pirms {minutes} minūtēm", -"1 hour ago" => "pirms 1 stundas", -"{hours} hours ago" => "pirms {hours} stundām", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šodien", "yesterday" => "vakar", -"{days} days ago" => "pirms {days} dienām", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "pagājušajā mēnesī", -"{months} months ago" => "pirms {months} mēnešiem", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "mēnešus atpakaļ", "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Vēstule nosūtīta", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu ownCloud kopienai.", "The update was successful. Redirecting you to ownCloud now." => "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud.", -"ownCloud password reset" => "ownCloud paroles maiņa", "Use the following link to reset your password: {link}" => "Izmantojiet šo saiti, lai mainītu paroli: {link}", "You will receive a link to reset your password via Email." => "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli.", "Username" => "Lietotājvārds", diff --git a/core/l10n/mk.php b/core/l10n/mk.php index 3e43b861d6..b51f8c7b08 100644 --- a/core/l10n/mk.php +++ b/core/l10n/mk.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "Декември", "Settings" => "Подесувања", "seconds ago" => "пред секунди", -"1 minute ago" => "пред 1 минута", -"{minutes} minutes ago" => "пред {minutes} минути", -"1 hour ago" => "пред 1 час", -"{hours} hours ago" => "пред {hours} часови", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "денеска", "yesterday" => "вчера", -"{days} days ago" => "пред {days} денови", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "минатиот месец", -"{months} months ago" => "пред {months} месеци", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "пред месеци", "last year" => "минатата година", "years ago" => "пред години", @@ -79,7 +77,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Грешка при поставување на рок на траење", "Sending ..." => "Праќање...", "Email sent" => "Е-порака пратена", -"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." => "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка.", "Username" => "Корисничко име", diff --git a/core/l10n/ml_IN.php b/core/l10n/ml_IN.php new file mode 100644 index 0000000000..93c8e33f3e --- /dev/null +++ b/core/l10n/ml_IN.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ms_MY.php b/core/l10n/ms_MY.php index 22860c0a27..64ad88dcb4 100644 --- a/core/l10n/ms_MY.php +++ b/core/l10n/ms_MY.php @@ -22,6 +22,10 @@ $TRANSLATIONS = array( "November" => "November", "December" => "Disember", "Settings" => "Tetapan", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), "Cancel" => "Batal", "Yes" => "Ya", "No" => "Tidak", @@ -29,7 +33,6 @@ $TRANSLATIONS = array( "Error" => "Ralat", "Share" => "Kongsi", "Password" => "Kata laluan", -"ownCloud password reset" => "Set semula kata lalaun ownCloud", "Use the following link to reset your password: {link}" => "Guna pautan berikut untuk menetapkan semula kata laluan anda: {link}", "You will receive a link to reset your password via Email." => "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel", "Username" => "Nama pengguna", diff --git a/core/l10n/my_MM.php b/core/l10n/my_MM.php index 3a7043e760..e06af3efb9 100644 --- a/core/l10n/my_MM.php +++ b/core/l10n/my_MM.php @@ -15,11 +15,13 @@ $TRANSLATIONS = array( "November" => "နိုဝင်ဘာ", "December" => "ဒီဇင်ဘာ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", -"1 minute ago" => "၁ မိနစ်အရင်က", -"1 hour ago" => "၁ နာရီ အရင်က", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "ယနေ့", "yesterday" => "မနေ့က", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "ပြီးခဲ့သောလ", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", "Choose" => "ရွေးချယ်", diff --git a/core/l10n/nb_NO.php b/core/l10n/nb_NO.php index fc075fe17a..c19e570edb 100644 --- a/core/l10n/nb_NO.php +++ b/core/l10n/nb_NO.php @@ -25,15 +25,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Innstillinger", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minutt siden", -"{minutes} minutes ago" => "{minutes} minutter siden", -"1 hour ago" => "1 time siden", -"{hours} hours ago" => "{hours} timer siden", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dager siden", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "forrige måned", -"{months} months ago" => "{months} måneder siden", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "måneder siden", "last year" => "forrige år", "years ago" => "år siden", @@ -67,7 +65,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Kan ikke sette utløpsdato", "Sending ..." => "Sender...", "Email sent" => "E-post sendt", -"ownCloud password reset" => "Tilbakestill ownCloud passord", "Use the following link to reset your password: {link}" => "Bruk følgende lenke for å tilbakestille passordet ditt: {link}", "You will receive a link to reset your password via Email." => "Du burde motta detaljer om å tilbakestille passordet ditt via epost.", "Username" => "Brukernavn", diff --git a/core/l10n/ne.php b/core/l10n/ne.php new file mode 100644 index 0000000000..93c8e33f3e --- /dev/null +++ b/core/l10n/ne.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/nl.php b/core/l10n/nl.php index 76465cd830..7530a73633 100644 --- a/core/l10n/nl.php +++ b/core/l10n/nl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Instellingen", "seconds ago" => "seconden geleden", -"1 minute ago" => "1 minuut geleden", -"{minutes} minutes ago" => "{minutes} minuten geleden", -"1 hour ago" => "1 uur geleden", -"{hours} hours ago" => "{hours} uren geleden", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "vandaag", "yesterday" => "gisteren", -"{days} days ago" => "{days} dagen geleden", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "vorige maand", -"{months} months ago" => "{months} maanden geleden", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "maanden geleden", "last year" => "vorig jaar", "years ago" => "jaar geleden", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail verzonden", "The update was unsuccessful. Please report this issue to the ownCloud community." => "De update is niet geslaagd. Meld dit probleem aan bij de ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "De update is geslaagd. Je wordt teruggeleid naar je eigen ownCloud.", -"ownCloud password reset" => "ownCloud-wachtwoord herstellen", "Use the following link to reset your password: {link}" => "Gebruik de volgende link om je wachtwoord te resetten: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "De link voor het resetten van je wachtwoord is verzonden naar je e-mailadres.
Als je dat bericht niet snel ontvangen hebt, controleer dan uw spambakje.
Als het daar ook niet is, vraag dan je beheerder om te helpen.", "Request failed!
Did you make sure your email/username was right?" => "Aanvraag mislukt!
Weet je zeker dat je gebruikersnaam en/of wachtwoord goed waren?", @@ -111,9 +108,11 @@ $TRANSLATIONS = array( "Add" => "Toevoegen", "Security Warning" => "Beveiligingswaarschuwing", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "Werk uw PHP installatie bij om %s 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 resettokens 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." => "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess-bestand niet werkt.", +"For information how to properly configure your server, please see the documentation." => "Bekijk de documentatie voor Informatie over het correct configureren van uw server.", "Create an admin account" => "Maak een beheerdersaccount aan", "Advanced" => "Geavanceerd", "Data folder" => "Gegevensmap", @@ -127,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Installatie afronden", "%s is available. Get more information on how to update." => "%s is beschikbaar. Verkrijg meer informatie over het bijwerken.", "Log out" => "Afmelden", +"More apps" => "Meer applicaties", "Automatic logon rejected!" => "Automatische aanmelding geweigerd!", "If you did not change your password recently, your account may be compromised!" => "Als je je wachtwoord niet onlangs heeft aangepast, kan je account overgenomen zijn!", "Please change your password to secure your account again." => "Wijzig je wachtwoord zodat je account weer beveiligd is.", diff --git a/core/l10n/nn_NO.php b/core/l10n/nn_NO.php index 246429b79f..0cc0944b87 100644 --- a/core/l10n/nn_NO.php +++ b/core/l10n/nn_NO.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Desember", "Settings" => "Innstillingar", "seconds ago" => "sekund sidan", -"1 minute ago" => "1 minutt sidan", -"{minutes} minutes ago" => "{minutes} minutt sidan", -"1 hour ago" => "1 time sidan", -"{hours} hours ago" => "{hours} timar sidan", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dagar sidan", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "førre månad", -"{months} months ago" => "{months} månadar sidan", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "månadar sidan", "last year" => "i fjor", "years ago" => "år sidan", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "E-post sendt", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Oppdateringa feila. Ver venleg og rapporter feilen til ownCloud-fellesskapet.", "The update was successful. Redirecting you to ownCloud now." => "Oppdateringa er fullført. Sender deg vidare til ownCloud no.", -"ownCloud password reset" => "Nullstilling av ownCloud-passord", "Use the following link to reset your password: {link}" => "Klikk følgjande lenkje til å nullstilla passordet ditt: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Lenkja til å nullstilla passordet med er sendt til e-posten din.
Sjå i spam-/søppelmappa di viss du ikkje ser e-posten innan rimeleg tid.
Spør din lokale administrator viss han ikkje er der heller.", "Request failed!
Did you make sure your email/username was right?" => "Førespurnaden feila!
Er du viss på at du skreiv inn rett e-post/brukarnamn?", diff --git a/core/l10n/oc.php b/core/l10n/oc.php index 3458fa7155..f47776fb99 100644 --- a/core/l10n/oc.php +++ b/core/l10n/oc.php @@ -23,10 +23,13 @@ $TRANSLATIONS = array( "December" => "Decembre", "Settings" => "Configuracion", "seconds ago" => "segonda a", -"1 minute ago" => "1 minuta a", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "uèi", "yesterday" => "ièr", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "mes passat", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses a", "last year" => "an passat", "years ago" => "ans a", @@ -59,7 +62,6 @@ $TRANSLATIONS = array( "Password protected" => "Parat per senhal", "Error unsetting expiration date" => "Error al metre de la data d'expiracion", "Error setting expiration date" => "Error setting expiration date", -"ownCloud password reset" => "senhal d'ownCloud tornat botar", "Use the following link to reset your password: {link}" => "Utiliza lo ligam seguent per tornar botar lo senhal : {link}", "You will receive a link to reset your password via Email." => "Reçaupràs un ligam per tornar botar ton senhal via corrièl.", "Username" => "Non d'usancièr", diff --git a/core/l10n/pl.php b/core/l10n/pl.php index 872e621908..1f291be8aa 100644 --- a/core/l10n/pl.php +++ b/core/l10n/pl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Grudzień", "Settings" => "Ustawienia", "seconds ago" => "sekund temu", -"1 minute ago" => "1 minutę temu", -"{minutes} minutes ago" => "{minutes} minut temu", -"1 hour ago" => "1 godzinę temu", -"{hours} hours ago" => "{hours} godzin temu", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dziś", "yesterday" => "wczoraj", -"{days} days ago" => "{days} dni temu", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "w zeszłym miesiącu", -"{months} months ago" => "{months} miesięcy temu", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "miesięcy temu", "last year" => "w zeszłym roku", "years ago" => "lat temu", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail wysłany", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem spoleczności ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizacji zakończyła się powodzeniem. Przekierowuję do ownCloud.", -"ownCloud password reset" => "restart hasła ownCloud", "Use the following link to reset your password: {link}" => "Użyj tego odnośnika by zresetować hasło: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Link do zresetowania hasła została wysłana na adres email.
Jeśli nie otrzymasz go w najbliższym czasie, sprawdź folder ze spamem.
Jeśli go tam nie ma zwrócić się do administratora tego ownCloud-a.", "Request failed!
Did you make sure your email/username was right?" => "Żądanie niepowiodło się!
Czy Twój email/nazwa użytkownika są poprawne?", @@ -129,6 +126,7 @@ $TRANSLATIONS = array( "Finish setup" => "Zakończ konfigurowanie", "%s is available. Get more information on how to update." => "%s jest dostępna. Dowiedz się więcej na temat aktualizacji.", "Log out" => "Wyloguj", +"More apps" => "Więcej aplikacji", "Automatic logon rejected!" => "Automatyczne logowanie odrzucone!", "If you did not change your password recently, your account may be compromised!" => "Jeśli hasło było dawno niezmieniane, twoje konto może być zagrożone!", "Please change your password to secure your account again." => "Zmień swoje hasło, aby ponownie zabezpieczyć swoje konto.", diff --git a/core/l10n/pt_BR.php b/core/l10n/pt_BR.php index eb201e7fb6..7542dd730a 100644 --- a/core/l10n/pt_BR.php +++ b/core/l10n/pt_BR.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "dezembro", "Settings" => "Ajustes", "seconds ago" => "segundos atrás", -"1 minute ago" => "1 minuto atrás", -"{minutes} minutes ago" => "{minutes} minutos atrás", -"1 hour ago" => "1 hora atrás", -"{hours} hours ago" => "{hours} horas atrás", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"{days} days ago" => "{days} dias atrás", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "último mês", -"{months} months ago" => "{months} meses atrás", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses atrás", "last year" => "último ano", "years ago" => "anos atrás", @@ -86,7 +84,7 @@ $TRANSLATIONS = array( "Email sent" => "E-mail enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A atualização falhou. Por favor, relate este problema para a comunidade ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "A atualização teve êxito. Você será redirecionado ao ownCloud agora.", -"ownCloud password reset" => "Redefinir senha ownCloud", +"%s password reset" => "%s redefinir senha", "Use the following link to reset your password: {link}" => "Use o seguinte link para redefinir sua senha: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "O link para redefinir sua senha foi enviada para o seu e-mail.
Se você não recebê-lo dentro de um período razoável de tempo, verifique o spam/lixo.
Se ele não estiver lá perguntar ao seu administrador local.", "Request failed!
Did you make sure your email/username was right?" => "O pedido falhou!
Certifique-se que seu e-mail/username estavam corretos?", @@ -129,6 +127,7 @@ $TRANSLATIONS = array( "Finish setup" => "Concluir configuração", "%s is available. Get more information on how to update." => "%s está disponível. Obtenha mais informações sobre como atualizar.", "Log out" => "Sair", +"More apps" => "Mais aplicativos", "Automatic logon rejected!" => "Entrada Automática no Sistema Rejeitada!", "If you did not change your password recently, your account may be compromised!" => "Se você não mudou a sua senha recentemente, a sua conta pode estar comprometida!", "Please change your password to secure your account again." => "Por favor troque sua senha para tornar sua conta segura novamente.", diff --git a/core/l10n/pt_PT.php b/core/l10n/pt_PT.php index 47073885ed..8459176f26 100644 --- a/core/l10n/pt_PT.php +++ b/core/l10n/pt_PT.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Dezembro", "Settings" => "Configurações", "seconds ago" => "Minutos atrás", -"1 minute ago" => "Há 1 minuto", -"{minutes} minutes ago" => "{minutes} minutos atrás", -"1 hour ago" => "Há 1 horas", -"{hours} hours ago" => "Há {hours} horas atrás", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"{days} days ago" => "{days} dias atrás", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "ultímo mês", -"{months} months ago" => "Há {months} meses atrás", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "meses atrás", "last year" => "ano passado", "years ago" => "anos atrás", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-mail enviado", "The update was unsuccessful. Please report this issue to the ownCloud community." => "A actualização falhou. Por favor reporte este incidente seguindo este link ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora.", -"ownCloud password reset" => "Reposição da password ownCloud", "Use the following link to reset your password: {link}" => "Use o seguinte endereço para repor a sua password: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "O link para fazer reset à sua password foi enviado para o seu e-mail.
Se não o recebeu dentro um espaço de tempo aceitável, por favor verifique a sua pasta de SPAM.
Se não o encontrar, por favor contacte o seu administrador.", "Request failed!
Did you make sure your email/username was right?" => "O pedido falhou!
Tem a certeza que introduziu o seu email/username correcto?", diff --git a/core/l10n/ro.php b/core/l10n/ro.php index 049226cee4..8c082df6af 100644 --- a/core/l10n/ro.php +++ b/core/l10n/ro.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Decembrie", "Settings" => "Setări", "seconds ago" => "secunde în urmă", -"1 minute ago" => "1 minut în urmă", -"{minutes} minutes ago" => "{minutes} minute in urmă", -"1 hour ago" => "Acum o oră", -"{hours} hours ago" => "{hours} ore în urmă", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "astăzi", "yesterday" => "ieri", -"{days} days ago" => "{days} zile in urmă", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "ultima lună", -"{months} months ago" => "{months} luni în urmă", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "luni în urmă", "last year" => "ultimul an", "years ago" => "ani în urmă", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Mesajul a fost expediat", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Actualizarea a eșuat! Raportați problema către comunitatea ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Actualizare reușită. Ești redirecționat către ownCloud.", -"ownCloud password reset" => "Resetarea parolei ownCloud ", "Use the following link to reset your password: {link}" => "Folosește următorul link pentru a reseta parola: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Linkul pentru resetarea parolei tale a fost trimis pe email.
Daca nu ai primit email-ul intr-un timp rezonabil, verifica folderul spam/junk.
Daca nu sunt acolo intreaba administratorul local.", "Request failed!
Did you make sure your email/username was right?" => "Cerere esuata!
Esti sigur ca email-ul/numele de utilizator sunt corecte?", diff --git a/core/l10n/ru.php b/core/l10n/ru.php index a87c226733..fe00c89b1c 100644 --- a/core/l10n/ru.php +++ b/core/l10n/ru.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Декабрь", "Settings" => "Конфигурация", "seconds ago" => "несколько секунд назад", -"1 minute ago" => "1 минуту назад", -"{minutes} minutes ago" => "{minutes} минут назад", -"1 hour ago" => "час назад", -"{hours} hours ago" => "{hours} часов назад", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сегодня", "yesterday" => "вчера", -"{days} days ago" => "{days} дней назад", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "в прошлом месяце", -"{months} months ago" => "{months} месяцев назад", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "несколько месяцев назад", "last year" => "в прошлом году", "years ago" => "несколько лет назад", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Письмо отправлено", "The update was unsuccessful. Please report this issue to the ownCloud community." => "При обновлении произошла ошибка. Пожалуйста сообщите об этом в ownCloud сообщество.", "The update was successful. Redirecting you to ownCloud now." => "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud...", -"ownCloud password reset" => "Сброс пароля ", "Use the following link to reset your password: {link}" => "Используйте следующую ссылку чтобы сбросить пароль: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Ссылка для сброса пароля отправлена вам ​​по электронной почте.
Если вы не получите письмо в пределах одной-двух минут, проверьте папку Спам.
Если письма там нет, обратитесь к своему администратору.", "Request failed!
Did you make sure your email/username was right?" => "Запрос не удался. Вы уверены, что email или имя пользователя указаны верно?", diff --git a/core/l10n/ru_RU.php b/core/l10n/ru_RU.php deleted file mode 100644 index ad7c7c7300..0000000000 --- a/core/l10n/ru_RU.php +++ /dev/null @@ -1,9 +0,0 @@ - "Настройки", -"Cancel" => "Отмена", -"Error" => "Ошибка", -"Share" => "Сделать общим", -"Add" => "Добавить" -); -$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);"; diff --git a/core/l10n/si_LK.php b/core/l10n/si_LK.php index 445d77fa73..ff016e6d6c 100644 --- a/core/l10n/si_LK.php +++ b/core/l10n/si_LK.php @@ -22,10 +22,13 @@ $TRANSLATIONS = array( "December" => "දෙසැම්බර්", "Settings" => "සිටුවම්", "seconds ago" => "තත්පරයන්ට පෙර", -"1 minute ago" => "1 මිනිත්තුවකට පෙර", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "අද", "yesterday" => "ඊයේ", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "පෙර මාසයේ", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "මාස කීපයකට පෙර", "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර", @@ -53,7 +56,6 @@ $TRANSLATIONS = array( "Password protected" => "මුර පදයකින් ආරක්ශාකර ඇත", "Error unsetting expiration date" => "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්", "Error setting expiration date" => "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්", -"ownCloud password reset" => "ownCloud මුරපදය ප්‍රත්‍යාරම්භ කරන්න", "You will receive a link to reset your password via Email." => "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත", "Username" => "පරිශීලක නම", "Your password was reset" => "ඔබේ මුරපදය ප්‍රත්‍යාරම්භ කරන ලදී", diff --git a/core/l10n/sk.php b/core/l10n/sk.php new file mode 100644 index 0000000000..7285020288 --- /dev/null +++ b/core/l10n/sk.php @@ -0,0 +1,8 @@ + array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day ago_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","") +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/core/l10n/sk_SK.php b/core/l10n/sk_SK.php index 2f8fd253c3..71f50bbdc3 100644 --- a/core/l10n/sk_SK.php +++ b/core/l10n/sk_SK.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Nastavenia", "seconds ago" => "pred sekundami", -"1 minute ago" => "pred minútou", -"{minutes} minutes ago" => "pred {minutes} minútami", -"1 hour ago" => "Pred 1 hodinou", -"{hours} hours ago" => "Pred {hours} hodinami.", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"{days} days ago" => "pred {days} dňami", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "minulý mesiac", -"{months} months ago" => "Pred {months} mesiacmi.", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "pred mesiacmi", "last year" => "minulý rok", "years ago" => "pred rokmi", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email odoslaný", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Aktualizácia nebola úspešná. Problém nahláste na ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Aktualizácia bola úspešná. Presmerovávam na prihlasovaciu stránku.", -"ownCloud password reset" => "Obnovenie hesla pre ownCloud", "Use the following link to reset your password: {link}" => "Použite nasledujúci odkaz pre obnovenie vášho hesla: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Odkaz na obnovenie hesla bol odoslaný na Vašu emailovú adresu.
Ak ho v krátkej dobe neobdržíte, skontrolujte si Váš kôš a priečinok spam.
Ak ho ani tam nenájdete, kontaktujte svojho administrátora.", "Request failed!
Did you make sure your email/username was right?" => "Požiadavka zlyhala.
Uistili ste sa, že Vaše používateľské meno a email sú správne?", diff --git a/core/l10n/sl.php b/core/l10n/sl.php index fc2b4181a7..397ede93fd 100644 --- a/core/l10n/sl.php +++ b/core/l10n/sl.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "december", "Settings" => "Nastavitve", "seconds ago" => "pred nekaj sekundami", -"1 minute ago" => "pred minuto", -"{minutes} minutes ago" => "pred {minutes} minutami", -"1 hour ago" => "Pred 1 uro", -"{hours} hours ago" => "pred {hours} urami", +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "danes", "yesterday" => "včeraj", -"{days} days ago" => "pred {days} dnevi", +"_%n day ago_::_%n days ago_" => array("","","",""), "last month" => "zadnji mesec", -"{months} months ago" => "pred {months} meseci", +"_%n month ago_::_%n months ago_" => array("","","",""), "months ago" => "mesecev nazaj", "last year" => "lansko leto", "years ago" => "let nazaj", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Elektronska pošta je poslana", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Posodobitev je uspešno končana. Stran bo preusmerjena na oblak ownCloud.", -"ownCloud password reset" => "Ponastavitev gesla za oblak ownCloud", "Use the following link to reset your password: {link}" => "Za ponastavitev gesla uporabite povezavo: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Povezava za ponastavitev gesla je bila poslana na elektronski naslov.
V kolikor sporočila ne prejmete v doglednem času, preverite tudi mape vsiljene pošte.
Če ne bo niti tam, stopite v stik s skrbnikom.", "Request failed!
Did you make sure your email/username was right?" => "Zahteva je spodletela!
Ali sta elektronski naslov oziroma uporabniško ime navedena pravilno?", diff --git a/core/l10n/sq.php b/core/l10n/sq.php index ad3ad482e6..7817af41b5 100644 --- a/core/l10n/sq.php +++ b/core/l10n/sq.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Dhjetor", "Settings" => "Parametra", "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ë", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "sot", "yesterday" => "dje", -"{days} days ago" => "{days} ditë më parë", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "muajin e shkuar", -"{months} months ago" => "{months} muaj më parë", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "muaj më parë", "last year" => "vitin e shkuar", "years ago" => "vite më parë", @@ -85,7 +83,6 @@ $TRANSLATIONS = array( "Email sent" => "Email-i u dërgua", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem komunitetin ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Azhurnimi u krye. Tani do t'ju kaloj tek ownCloud-i.", -"ownCloud password reset" => "Rivendosja e kodit të ownCloud-it", "Use the following link to reset your password: {link}" => "Përdorni lidhjen në vijim për të rivendosur kodin: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Lidhja për rivendosjen e kodit tuaj u dërgua tek email-i juaj.
Nëqoftëse nuk e merrni brenda një kohe të arsyeshme, kontrolloni dosjet e postës së padëshirueshme (spam).
Nëqoftëse nuk është as aty, pyesni administratorin tuaj lokal.", "Request failed!
Did you make sure your email/username was right?" => "Kërkesa dështoi!
A u siguruat që email-i/përdoruesi juaj ishte i saktë?", diff --git a/core/l10n/sr.php b/core/l10n/sr.php index 0ea05f41a7..d0485ff662 100644 --- a/core/l10n/sr.php +++ b/core/l10n/sr.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "Децембар", "Settings" => "Поставке", "seconds ago" => "пре неколико секунди", -"1 minute ago" => "пре 1 минут", -"{minutes} minutes ago" => "пре {minutes} минута", -"1 hour ago" => "Пре једног сата", -"{hours} hours ago" => "Пре {hours} сата (сати)", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "данас", "yesterday" => "јуче", -"{days} days ago" => "пре {days} дана", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "прошлог месеца", -"{months} months ago" => "Пре {months} месеца (месеци)", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "месеци раније", "last year" => "прошле године", "years ago" => "година раније", @@ -78,7 +76,6 @@ $TRANSLATIONS = array( "Error setting expiration date" => "Грешка код постављања датума истека", "Sending ..." => "Шаљем...", "Email sent" => "Порука је послата", -"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." => "Добићете везу за ресетовање лозинке путем е-поште.", "Username" => "Корисничко име", diff --git a/core/l10n/sr@latin.php b/core/l10n/sr@latin.php index b8bae55f22..98d227f18a 100644 --- a/core/l10n/sr@latin.php +++ b/core/l10n/sr@latin.php @@ -20,6 +20,10 @@ $TRANSLATIONS = array( "November" => "Novembar", "December" => "Decembar", "Settings" => "Podešavanja", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day ago_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","",""), "Cancel" => "Otkaži", "Password" => "Lozinka", "You will receive a link to reset your password via Email." => "Dobićete vezu za resetovanje lozinke putem e-pošte.", diff --git a/core/l10n/sv.php b/core/l10n/sv.php index a7157a0bbd..88639845a5 100644 --- a/core/l10n/sv.php +++ b/core/l10n/sv.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "December", "Settings" => "Inställningar", "seconds ago" => "sekunder sedan", -"1 minute ago" => "1 minut sedan", -"{minutes} minutes ago" => "{minutes} minuter sedan", -"1 hour ago" => "1 timme sedan", -"{hours} hours ago" => "{hours} timmar sedan", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"{days} days ago" => "{days} dagar sedan", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "förra månaden", -"{months} months ago" => "{months} månader sedan", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "månader sedan", "last year" => "förra året", "years ago" => "år sedan", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "E-post skickat", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Uppdateringen misslyckades. Rapportera detta problem till ownCloud Community.", "The update was successful. Redirecting you to ownCloud now." => "Uppdateringen lyckades. Du omdirigeras nu till OwnCloud.", -"ownCloud password reset" => "ownCloud lösenordsåterställning", "Use the following link to reset your password: {link}" => "Använd följande länk för att återställa lösenordet: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Länken för att återställa ditt lösenorden har skickats till din e-postadress
Om du inte har erhållit meddelandet inom kort, vänligen kontrollera din skräppost-mapp
Om den inte finns där, vänligen kontakta din administratör.", "Request failed!
Did you make sure your email/username was right?" => "Begäran misslyckades!
Är du helt säker på att din e-postadress/användarnamn är korrekt?", diff --git a/core/l10n/sw_KE.php b/core/l10n/sw_KE.php new file mode 100644 index 0000000000..93c8e33f3e --- /dev/null +++ b/core/l10n/sw_KE.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/core/l10n/ta_LK.php b/core/l10n/ta_LK.php index a7b71176f3..b2e847f5fb 100644 --- a/core/l10n/ta_LK.php +++ b/core/l10n/ta_LK.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "மார்கழி", "Settings" => "அமைப்புகள்", "seconds ago" => "செக்கன்களுக்கு முன்", -"1 minute ago" => "1 நிமிடத்திற்கு முன் ", -"{minutes} minutes ago" => "{நிமிடங்கள்} நிமிடங்களுக்கு முன் ", -"1 hour ago" => "1 மணித்தியாலத்திற்கு முன்", -"{hours} hours ago" => "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "இன்று", "yesterday" => "நேற்று", -"{days} days ago" => "{நாட்கள்} நாட்களுக்கு முன்", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "கடந்த மாதம்", -"{months} months ago" => "{மாதங்கள்} மாதங்களிற்கு முன்", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "மாதங்களுக்கு முன்", "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", @@ -75,7 +73,6 @@ $TRANSLATIONS = array( "Password protected" => "கடவுச்சொல் பாதுகாக்கப்பட்டது", "Error unsetting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு", "Error setting expiration date" => "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு", -"ownCloud password reset" => "ownCloud இன் கடவுச்சொல் மீளமைப்பு", "Use the following link to reset your password: {link}" => "உங்கள் கடவுச்சொல்லை மீளமைக்க பின்வரும் இணைப்பை பயன்படுத்தவும் : {இணைப்பு}", "You will receive a link to reset your password via Email." => "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். ", "Username" => "பயனாளர் பெயர்", diff --git a/core/l10n/te.php b/core/l10n/te.php index a0fe28c555..f6d165f369 100644 --- a/core/l10n/te.php +++ b/core/l10n/te.php @@ -22,15 +22,13 @@ $TRANSLATIONS = array( "December" => "డిసెంబర్", "Settings" => "అమరికలు", "seconds ago" => "క్షణాల క్రితం", -"1 minute ago" => "1 నిమిషం క్రితం", -"{minutes} minutes ago" => "{minutes} నిమిషాల క్రితం", -"1 hour ago" => "1 గంట క్రితం", -"{hours} hours ago" => "{hours} గంటల క్రితం", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ఈరోజు", "yesterday" => "నిన్న", -"{days} days ago" => "{days} రోజుల క్రితం", +"_%n day ago_::_%n days ago_" => array("",""), "last month" => "పోయిన నెల", -"{months} months ago" => "{months} నెలల క్రితం", +"_%n month ago_::_%n months ago_" => array("",""), "months ago" => "నెలల క్రితం", "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం", diff --git a/core/l10n/th_TH.php b/core/l10n/th_TH.php index 379c479ffd..b015b940f2 100644 --- a/core/l10n/th_TH.php +++ b/core/l10n/th_TH.php @@ -28,15 +28,13 @@ $TRANSLATIONS = array( "December" => "ธันวาคม", "Settings" => "ตั้งค่า", "seconds ago" => "วินาที ก่อนหน้านี้", -"1 minute ago" => "1 นาทีก่อนหน้านี้", -"{minutes} minutes ago" => "{minutes} นาทีก่อนหน้านี้", -"1 hour ago" => "1 ชั่วโมงก่อนหน้านี้", -"{hours} hours ago" => "{hours} ชั่วโมงก่อนหน้านี้", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "วันนี้", "yesterday" => "เมื่อวานนี้", -"{days} days ago" => "{day} วันก่อนหน้านี้", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "เดือนที่แล้ว", -"{months} months ago" => "{months} เดือนก่อนหน้านี้", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "เดือน ที่ผ่านมา", "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", @@ -82,7 +80,6 @@ $TRANSLATIONS = array( "Email sent" => "ส่งอีเมล์แล้ว", "The update was unsuccessful. Please report this issue to the ownCloud community." => "การอัพเดทไม่เป็นผลสำเร็จ กรุณาแจ้งปัญหาที่เกิดขึ้นไปยัง คอมมูนิตี้ผู้ใช้งาน ownCloud", "The update was successful. Redirecting you to ownCloud now." => "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้", -"ownCloud password reset" => "รีเซ็ตรหัสผ่าน ownCloud", "Use the following link to reset your password: {link}" => "ใช้ลิงค์ต่อไปนี้เพื่อเปลี่ยนรหัสผ่านของคุณใหม่: {link}", "You will receive a link to reset your password via Email." => "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์", "Username" => "ชื่อผู้ใช้งาน", diff --git a/core/l10n/tr.php b/core/l10n/tr.php index eb9a0a60f0..2a552e1798 100644 --- a/core/l10n/tr.php +++ b/core/l10n/tr.php @@ -1,7 +1,7 @@ "%s sizinle »%s« paylaşımında bulundu", -"Category type not provided." => "Kategori türü desteklenmemektedir.", +"Category type not provided." => "Kategori türü girilmedi.", "No category to add?" => "Eklenecek kategori yok?", "This category already exists: %s" => "Bu kategori zaten mevcut: %s", "Object type not provided." => "Nesne türü desteklenmemektedir.", @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "Aralık", "Settings" => "Ayarlar", "seconds ago" => "saniye önce", -"1 minute ago" => "1 dakika önce", -"{minutes} minutes ago" => "{minutes} dakika önce", -"1 hour ago" => "1 saat önce", -"{hours} hours ago" => "{hours} saat önce", +"_%n minute ago_::_%n minutes ago_" => array("%n dakika önce","%n dakika önce"), +"_%n hour ago_::_%n hours ago_" => array("%n saat önce","%n saat önce"), "today" => "bugün", "yesterday" => "dün", -"{days} days ago" => "{days} gün önce", +"_%n day ago_::_%n days ago_" => array("%n gün önce","%n gün önce"), "last month" => "geçen ay", -"{months} months ago" => "{months} ay önce", +"_%n month ago_::_%n months ago_" => array("%n ay önce","%n ay önce"), "months ago" => "ay önce", "last year" => "geçen yıl", "years ago" => "yıl önce", @@ -86,7 +84,7 @@ $TRANSLATIONS = array( "Email sent" => "Eposta gönderildi", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin ownCloud community.", "The update was successful. Redirecting you to ownCloud now." => "Güncelleme başarılı. ownCloud'a yönlendiriliyor.", -"ownCloud password reset" => "ownCloud parola sıfırlama", +"%s password reset" => "%s parola sıfırlama", "Use the following link to reset your password: {link}" => "Bu bağlantıyı kullanarak parolanızı sıfırlayın: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Parolanızı değiştirme bağlantısı e-posta adresinize gönderildi.
I Eğer makül bir süre içerisinde mesajı almadıysanız spam/junk dizinini kontrol ediniz.
Eğer orada da bulamazsanız sistem yöneticinize sorunuz.", "Request failed!
Did you make sure your email/username was right?" => "Isteği başarısız oldu!
E-posta / kullanıcı adınızı doğru olduğundan emin misiniz?", @@ -111,9 +109,11 @@ $TRANSLATIONS = array( "Add" => "Ekle", "Security Warning" => "Güvenlik Uyarisi", "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" => "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)", +"Please update your PHP installation to use %s securely." => "%s güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin.", "No secure random number generator is available, please enable the PHP OpenSSL extension." => "Güvenli rasgele sayı üreticisi bulunamadı. Lütfen PHP OpenSSL eklentisini etkinleştirin.", "Without a secure random number generator an attacker may be able to predict password reset tokens and take over your account." => "Güvenli rasgele sayı üreticisi olmadan saldırganlar parola sıfırlama simgelerini tahmin edip hesabınızı ele geçirebilir.", "Your data directory and files are probably accessible from the internet because the .htaccess file does not work." => "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık.", +"For information how to properly configure your server, please see the documentation." => "Server'ınızı nasıl ayarlayacağınıza dair bilgi için, lütfen dokümantasyon sayfasını ziyaret edin.", "Create an admin account" => "Bir yönetici hesabı oluşturun", "Advanced" => "Gelişmiş", "Data folder" => "Veri klasörü", @@ -127,6 +127,7 @@ $TRANSLATIONS = array( "Finish setup" => "Kurulumu tamamla", "%s is available. Get more information on how to update." => "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın.", "Log out" => "Çıkış yap", +"More apps" => "Daha fazla Uygulama", "Automatic logon rejected!" => "Otomatik oturum açma reddedildi!", "If you did not change your password recently, your account may be compromised!" => "Yakın zamanda parolanızı değiştirmedi iseniz hesabınız riske girebilir.", "Please change your password to secure your account again." => "Hesabınızı korumak için lütfen parolanızı değiştirin.", diff --git a/core/l10n/ug.php b/core/l10n/ug.php index 12d752b828..cf1c28a0d2 100644 --- a/core/l10n/ug.php +++ b/core/l10n/ug.php @@ -20,10 +20,12 @@ $TRANSLATIONS = array( "November" => "ئوغلاق", "December" => "كۆنەك", "Settings" => "تەڭشەكلەر", -"1 minute ago" => "1 مىنۇت ئىلگىرى", -"1 hour ago" => "1 سائەت ئىلگىرى", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "بۈگۈن", "yesterday" => "تۈنۈگۈن", +"_%n day ago_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array(""), "Cancel" => "ۋاز كەچ", "Yes" => "ھەئە", "No" => "ياق", diff --git a/core/l10n/uk.php b/core/l10n/uk.php index 54fb11d7bf..baf756ab7a 100644 --- a/core/l10n/uk.php +++ b/core/l10n/uk.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Грудень", "Settings" => "Налаштування", "seconds ago" => "секунди тому", -"1 minute ago" => "1 хвилину тому", -"{minutes} minutes ago" => "{minutes} хвилин тому", -"1 hour ago" => "1 годину тому", -"{hours} hours ago" => "{hours} години тому", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сьогодні", "yesterday" => "вчора", -"{days} days ago" => "{days} днів тому", +"_%n day ago_::_%n days ago_" => array("","",""), "last month" => "минулого місяця", -"{months} months ago" => "{months} місяців тому", +"_%n month ago_::_%n months ago_" => array("","",""), "months ago" => "місяці тому", "last year" => "минулого року", "years ago" => "роки тому", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Ел. пошта надіслана", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Оновлення виконалось неуспішно. Будь ласка, повідомте про цю проблему в спільноті ownCloud.", "The update was successful. Redirecting you to ownCloud now." => "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud.", -"ownCloud password reset" => "скидання пароля ownCloud", "Use the following link to reset your password: {link}" => "Використовуйте наступне посилання для скидання пароля: {link}", "You will receive a link to reset your password via Email." => "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту.", "Username" => "Ім'я користувача", diff --git a/core/l10n/ur_PK.php b/core/l10n/ur_PK.php index 7474180ac6..de6a58cea2 100644 --- a/core/l10n/ur_PK.php +++ b/core/l10n/ur_PK.php @@ -15,6 +15,10 @@ $TRANSLATIONS = array( "November" => "نومبر", "December" => "دسمبر", "Settings" => "سیٹینگز", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day ago_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("",""), "Choose" => "منتخب کریں", "Cancel" => "منسوخ کریں", "Yes" => "ہاں", @@ -40,7 +44,6 @@ $TRANSLATIONS = array( "delete" => "ختم کریں", "share" => "شئیر کریں", "Password protected" => "پاسورڈ سے محفوظ کیا گیا ہے", -"ownCloud password reset" => "اون کلاؤڈ پاسورڈ ری سیٹ", "Use the following link to reset your password: {link}" => "اپنا پاسورڈ ری سیٹ کرنے کے لیے اس لنک پر کلک کریں۔ {link}", "You will receive a link to reset your password via Email." => "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے", "Username" => "یوزر نیم", diff --git a/core/l10n/vi.php b/core/l10n/vi.php index 5ba902c355..265d83a426 100644 --- a/core/l10n/vi.php +++ b/core/l10n/vi.php @@ -29,15 +29,13 @@ $TRANSLATIONS = array( "December" => "Tháng 12", "Settings" => "Cài đặt", "seconds ago" => "vài giây trước", -"1 minute ago" => "1 phút trước", -"{minutes} minutes ago" => "{minutes} phút trước", -"1 hour ago" => "1 giờ trước", -"{hours} hours ago" => "{hours} giờ trước", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hôm nay", "yesterday" => "hôm qua", -"{days} days ago" => "{days} ngày trước", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "tháng trước", -"{months} months ago" => "{months} tháng trước", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "tháng trước", "last year" => "năm trước", "years ago" => "năm trước", @@ -83,7 +81,6 @@ $TRANSLATIONS = array( "Email sent" => "Email đã được gửi", "The update was unsuccessful. Please report this issue to the ownCloud community." => "Cập nhật không thành công . Vui lòng thông báo đến Cộng đồng ownCloud .", "The update was successful. Redirecting you to ownCloud now." => "Cập nhật thành công .Hệ thống sẽ đưa bạn tới ownCloud.", -"ownCloud password reset" => "Khôi phục mật khẩu Owncloud ", "Use the following link to reset your password: {link}" => "Dùng đường dẫn sau để khôi phục lại mật khẩu : {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "Liên kết tạo lại mật khẩu đã được gửi tới hộp thư của bạn.
Nếu bạn không thấy nó sau một khoảng thời gian, vui lòng kiểm tra trong thư mục Spam/Rác.
Nếu vẫn không thấy, vui lòng hỏi người quản trị hệ thống.", "Request failed!
Did you make sure your email/username was right?" => "Yêu cầu thất bại!
Bạn có chắc là email/tên đăng nhập của bạn chính xác?", diff --git a/core/l10n/zh_CN.GB2312.php b/core/l10n/zh_CN.GB2312.php index 6b389179b7..7b3a256487 100644 --- a/core/l10n/zh_CN.GB2312.php +++ b/core/l10n/zh_CN.GB2312.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "设置", "seconds ago" => "秒前", -"1 minute ago" => "1 分钟前", -"{minutes} minutes ago" => "{minutes} 分钟前", -"1 hour ago" => "1小时前", -"{hours} hours ago" => "{hours}小时前", +"_%n minute ago_::_%n minutes ago_" => array("%n 分钟以前"), +"_%n hour ago_::_%n hours ago_" => array("%n 小时以前"), "today" => "今天", "yesterday" => "昨天", -"{days} days ago" => "{days} 天前", +"_%n day ago_::_%n days ago_" => array("%n 天以前"), "last month" => "上个月", -"{months} months ago" => "{months}月前", +"_%n month ago_::_%n months ago_" => array("%n 个月以前"), "months ago" => "月前", "last year" => "去年", "years ago" => "年前", @@ -86,7 +84,7 @@ $TRANSLATIONS = array( "Email sent" => "电子邮件已发送", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升级失败。请向ownCloud社区报告此问题。", "The update was successful. Redirecting you to ownCloud now." => "升级成功。现在为您跳转到ownCloud。", -"ownCloud password reset" => "私有云密码重置", +"%s password reset" => "%s 密码重置", "Use the following link to reset your password: {link}" => "使用下面的链接来重置你的密码:{link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。", "Request failed!
Did you make sure your email/username was right?" => "请求失败!
你确定你的邮件地址/用户名是正确的?", @@ -129,6 +127,7 @@ $TRANSLATIONS = array( "Finish setup" => "完成安装", "%s is available. Get more information on how to update." => "%s 是可用的。获取更多关于升级的信息。", "Log out" => "注销", +"More apps" => "更多应用", "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." => "请修改您的密码以保护账户。", diff --git a/core/l10n/zh_CN.php b/core/l10n/zh_CN.php index 3479baefdd..c216584494 100644 --- a/core/l10n/zh_CN.php +++ b/core/l10n/zh_CN.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "设置", "seconds ago" => "秒前", -"1 minute ago" => "一分钟前", -"{minutes} minutes ago" => "{minutes} 分钟前", -"1 hour ago" => "1小时前", -"{hours} hours ago" => "{hours} 小时前", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"{days} days ago" => "{days} 天前", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "上月", -"{months} months ago" => "{months} 月前", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "月前", "last year" => "去年", "years ago" => "年前", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "邮件已发送", "The update was unsuccessful. Please report this issue to the ownCloud community." => "更新不成功。请汇报将此问题汇报给 ownCloud 社区。", "The update was successful. Redirecting you to ownCloud now." => "更新成功。正在重定向至 ownCloud。", -"ownCloud password reset" => "重置 ownCloud 密码", "Use the following link to reset your password: {link}" => "使用以下链接重置您的密码:{link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重置密码的链接已发送到您的邮箱。
如果您觉得在合理的时间内还未收到邮件,请查看 spam/junk 目录。
如果没有在那里,请询问您的本地管理员。", "Request failed!
Did you make sure your email/username was right?" => "请求失败
您确定您的邮箱/用户名是正确的?", diff --git a/core/l10n/zh_HK.php b/core/l10n/zh_HK.php index c29d91bc53..0a3134f65d 100644 --- a/core/l10n/zh_HK.php +++ b/core/l10n/zh_HK.php @@ -20,9 +20,13 @@ $TRANSLATIONS = array( "November" => "十一月", "December" => "十二月", "Settings" => "設定", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "前一月", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "個月之前", "Cancel" => "取消", "Yes" => "Yes", diff --git a/core/l10n/zh_TW.php b/core/l10n/zh_TW.php index a5b4e5a6c3..d620866bbb 100644 --- a/core/l10n/zh_TW.php +++ b/core/l10n/zh_TW.php @@ -30,15 +30,13 @@ $TRANSLATIONS = array( "December" => "十二月", "Settings" => "設定", "seconds ago" => "幾秒前", -"1 minute ago" => "1 分鐘前", -"{minutes} minutes ago" => "{minutes} 分鐘前", -"1 hour ago" => "1 小時之前", -"{hours} hours ago" => "{hours} 小時前", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"{days} days ago" => "{days} 天前", +"_%n day ago_::_%n days ago_" => array(""), "last month" => "上個月", -"{months} months ago" => "{months} 個月前", +"_%n month ago_::_%n months ago_" => array(""), "months ago" => "幾個月前", "last year" => "去年", "years ago" => "幾年前", @@ -86,7 +84,6 @@ $TRANSLATIONS = array( "Email sent" => "Email 已寄出", "The update was unsuccessful. Please report this issue to the ownCloud community." => "升級失敗,請將此問題回報 ownCloud 社群。", "The update was successful. Redirecting you to ownCloud now." => "升級成功,正將您重新導向至 ownCloud 。", -"ownCloud password reset" => "ownCloud 密碼重設", "Use the following link to reset your password: {link}" => "請至以下連結重設您的密碼: {link}", "The link to reset your password has been sent to your email.
If you do not receive it within a reasonable amount of time, check your spam/junk folders.
If it is not there ask your local administrator ." => "重設密碼的連結已經寄至您的電子郵件信箱,如果您過了一段時間還是沒有收到它,請檢查看看它是不是被放到垃圾郵件了,如果還是沒有的話,請聯絡您的 ownCloud 系統管理員。", "Request failed!
Did you make sure your email/username was right?" => "請求失敗!
您確定填入的電子郵件地址或是帳號名稱是正確的嗎?", diff --git a/core/lostpassword/controller.php b/core/lostpassword/controller.php index 2f99636521..74a5be2b96 100644 --- a/core/lostpassword/controller.php +++ b/core/lostpassword/controller.php @@ -57,7 +57,8 @@ class OC_Core_LostPassword_Controller { $l = OC_L10N::get('core'); $from = OCP\Util::getDefaultEmailAddress('lostpassword-noreply'); try { - OC_Mail::send($email, $_POST['user'], $l->t('ownCloud password reset'), $msg, $from, 'ownCloud'); + $defaults = new OC_Defaults(); + OC_Mail::send($email, $_POST['user'], $l->t('%s password reset', array($defaults->getName())), $msg, $from, $defaults->getName()); } catch (Exception $e) { OC_Template::printErrorPage( 'A problem occurs during sending the e-mail please contact your administrator.'); } diff --git a/core/templates/error.php b/core/templates/error.php index ac91357b35..e8b7a49264 100644 --- a/core/templates/error.php +++ b/core/templates/error.php @@ -1,4 +1,4 @@ -
    +

    • diff --git a/core/templates/filetemplates/template.html b/core/templates/filetemplates/template.html new file mode 100644 index 0000000000..f16e80cb7e --- /dev/null +++ b/core/templates/filetemplates/template.html @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/core/templates/installation.php b/core/templates/installation.php index 77c455304d..8b08770680 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -62,7 +62,7 @@
- t( 'Advanced' )); ?> + t( 'Advanced' )); ?>
+ + + +
  • + class="active"> + + + t('More apps')); ?> + + +
  • +
    diff --git a/core/templates/part.pagenavi.php b/core/templates/part.pagenavi.php deleted file mode 100644 index 2f5c218376..0000000000 --- a/core/templates/part.pagenavi.php +++ /dev/null @@ -1,22 +0,0 @@ -
      - 0):?> -
    1. t( 'prev' )); ?>
    2. - - 0):?> - … - - - -
    3. - -
    4. - - - - … - - - -
    5. t( 'next' )); ?>
    6. - -
    diff --git a/db_structure.xml b/db_structure.xml index ef5de65303..f926ab44cd 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -32,7 +32,7 @@ configvalue clob - true + false diff --git a/l10n/af_ZA/core.po b/l10n/af_ZA/core.po index 9172c1dafc..2aa42f705f 100644 --- a/l10n/af_ZA/core.po +++ b/l10n/af_ZA/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Instellings" -#: js/js.js:753 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:754 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:755 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:756 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:757 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:758 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:760 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:761 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:762 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:763 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "Teken uit" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/af_ZA/files.po b/l10n/af_ZA/files.po index adfb6e8f93..23d5bd7914 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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +194,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +275,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 67021b0b63..020abe02dd 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index 6d1d757e27..491052f17f 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Gebruikers" #: app.php:409 -msgid "Apps" -msgstr "Toepassings" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 202f964f05..8a6009ccb3 100644 --- a/l10n/ar/core.po +++ b/l10n/ar/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,75 @@ msgstr "تشرين الثاني" msgid "December" msgstr "كانون الاول" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "إعدادات" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "منذ ثواني" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "منذ دقيقة" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} منذ دقائق" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "قبل ساعة مضت" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ساعة مضت" - -#: js/js.js:819 msgid "today" msgstr "اليوم" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} يوم سابق" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} شهر مضت" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "شهر مضى" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "السنةالماضية" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "سنة مضت" @@ -377,9 +393,10 @@ msgstr "حصل خطأ في عملية التحديث, يرجى ارسال تقر msgid "The update was successful. Redirecting you to ownCloud now." msgstr "تم التحديث بنجاح , يتم اعادة توجيهك الان الى Owncloud" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "إعادة تعيين كلمة سر ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +595,10 @@ msgstr "" msgid "Log out" msgstr "الخروج" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "تم رفض تسجيل الدخول التلقائي!" diff --git a/l10n/ar/files.po b/l10n/ar/files.po index c3f06d75b7..231fe63b4d 100644 --- a/l10n/ar/files.po +++ b/l10n/ar/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "شارك" msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "إلغاء" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "إعادة تسميه" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "قيد الانتظار" @@ -156,15 +152,17 @@ msgstr "استبدل {new_name} بـ {old_name}" msgid "undo" msgstr "تراجع" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "جاري تنفيذ عملية الحذف" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "جاري رفع 1 ملف" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +210,25 @@ msgstr "حجم" msgid "Modified" msgstr "معدل" -#: js/files.js:763 -msgid "1 folder" -msgstr "مجلد عدد 1" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} مجلدات" - -#: js/files.js:773 -msgid "1 file" -msgstr "ملف واحد" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ملفات" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: lib/app.php:73 #, php-format @@ -309,6 +311,10 @@ msgstr "تحميل" msgid "Unshare" msgstr "إلغاء مشاركة" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "إلغاء" + #: templates/index.php:105 msgid "Upload too large" msgstr "حجم الترفيع أعلى من المسموح" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index c520cd3822..f07045eb58 100644 --- a/l10n/ar/files_trashbin.po +++ b/l10n/ar/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,25 @@ msgstr "اسم" msgid "Deleted" msgstr "تم الحذف" -#: js/trash.js:192 -msgid "1 folder" -msgstr "مجلد عدد 1" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} مجلدات" - -#: js/trash.js:202 -msgid "1 file" -msgstr "ملف واحد" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ملفات" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index 145239687f..040d66a42c 100644 --- a/l10n/ar/lib.po +++ b/l10n/ar/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "المستخدمين" #: app.php:409 -msgid "Apps" -msgstr "التطبيقات" - -#: app.php:417 msgid "Admin" msgstr "المدير" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,62 @@ msgid "seconds ago" msgstr "منذ ثواني" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "منذ دقيقة" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d دقيقة مضت" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "قبل ساعة مضت" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ساعة مضت" - -#: template/functions.php:85 msgid "today" msgstr "اليوم" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "يوم أمس" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d يوم مضى" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "الشهر الماضي" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d شهر مضت" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "السنةالماضية" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "سنة مضت" diff --git a/l10n/be/core.po b/l10n/be/core.po index 888d740721..fb9c15d2cc 100644 --- a/l10n/be/core.po +++ b/l10n/be/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-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,67 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,7 +234,7 @@ msgstr "" #: 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:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +254,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +354,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -377,8 +385,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -461,7 +470,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +587,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/be/files.po b/l10n/be/files.po index 3589633cd9..c25701d9cc 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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" @@ -156,15 +152,15 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +196,33 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/app.php:73 #, php-format @@ -285,45 +281,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index ae698ecde9..770cceb542 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,21 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 56bb86b0ac..c95cd9291f 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,58 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index b5b1ad52f9..cf34714ed7 100644 --- a/l10n/bg_BG/core.po +++ b/l10n/bg_BG/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Настройки" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "преди секунди" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "преди 1 минута" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "преди 1 час" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "днес" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчера" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "последният месец" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "последната година" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "последните години" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "Изход" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/bg_BG/files.po b/l10n/bg_BG/files.po index 6177f5fbda..9c5bdeb8b1 100644 --- a/l10n/bg_BG/files.po +++ b/l10n/bg_BG/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Споделяне" msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Изтриване" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Преименуване" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Чакащо" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "възтановяване" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "Размер" msgid "Modified" msgstr "Променено" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 файл" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} файла" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Изтегляне" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Изтриване" + #: templates/index.php:105 msgid "Upload too large" msgstr "Файлът който сте избрали за качване е прекалено голям" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index d232b3b029..1b16c5b409 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -52,21 +52,17 @@ msgstr "Име" msgid "Deleted" msgstr "Изтрито" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} файла" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 468be09e1a..1aa83779f3 100644 --- a/l10n/bg_BG/lib.po +++ b/l10n/bg_BG/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Потребители" #: app.php:409 -msgid "Apps" -msgstr "Приложения" - -#: app.php:417 msgid "Admin" msgstr "Админ" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "преди секунди" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "преди 1 минута" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "преди %d минути" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "преди 1 час" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "преди %d часа" - -#: template/functions.php:85 msgid "today" msgstr "днес" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчера" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "преди %d дни" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "последният месец" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "преди %d месеца" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "последната година" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "последните години" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index fe30f93c29..ab30218562 100644 --- a/l10n/bn_BD/core.po +++ b/l10n/bn_BD/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "নভেম্বর" msgid "December" msgstr "ডিসেম্বর" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "নিয়ামকসমূহ" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "১ মিনিট পূর্বে" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} মিনিট পূর্বে" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ঘন্টা পূর্বে" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ঘন্টা পূর্বে" - -#: js/js.js:819 msgid "today" msgstr "আজ" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "গতকাল" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} দিন পূর্বে" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "গত মাস" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} মাস পূর্বে" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "মাস পূর্বে" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "গত বছর" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "বছর পূর্বে" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud কূটশব্দ পূনঃনির্ধারণ" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "প্রস্থান" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/bn_BD/files.po b/l10n/bn_BD/files.po index 863cde1d98..d5e9b24e07 100644 --- a/l10n/bn_BD/files.po +++ b/l10n/bn_BD/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "ভাগাভাগি কর" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "মুছে" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "পূনঃনামকরণ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "মুলতুবি" @@ -156,15 +152,13 @@ msgstr "{new_name} কে {old_name} নামে প্রতিস্থাপ msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "১টি ফাইল আপলোড করা হচ্ছে" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "আকার" msgid "Modified" msgstr "পরিবর্তিত" -#: js/files.js:763 -msgid "1 folder" -msgstr "১টি ফোল্ডার" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" - -#: js/files.js:773 -msgid "1 file" -msgstr "১টি ফাইল" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} টি ফাইল" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "ডাউনলোড" msgid "Unshare" msgstr "ভাগাভাগি বাতিল " +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "মুছে" + #: templates/index.php:105 msgid "Upload too large" msgstr "আপলোডের আকারটি অনেক বড়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index f52d33c0a5..eba36ccfd6 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "রাম" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "১টি ফোল্ডার" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" - -#: js/trash.js:202 -msgid "1 file" -msgstr "১টি ফাইল" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} টি ফাইল" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index 2dc3f5e31f..9f5df0a964 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "ব্যবহারকারী" #: app.php:409 -msgid "Apps" -msgstr "অ্যাপ" - -#: app.php:417 msgid "Admin" msgstr "প্রশাসন" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "সেকেন্ড পূর্বে" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "১ মিনিট পূর্বে" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d মিনিট পূর্বে" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ঘন্টা পূর্বে" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "আজ" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "গতকাল" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d দিন পূর্বে" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "গত মাস" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "গত বছর" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "বছর পূর্বে" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 6400ac456e..d544fc01ed 100644 --- a/l10n/bs/core.po +++ b/l10n/bs/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-07-31 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 12:13+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +381,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +583,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/bs/files.po b/l10n/bs/files.po index 40526578de..112380c4ce 100644 --- a/l10n/bs/files.po +++ b/l10n/bs/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-08-02 01:55-0400\n" -"PO-Revision-Date: 2013-08-02 05:40+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +207,19 @@ msgstr "Veličina" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -309,6 +302,10 @@ msgstr "" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index 9fb0dde49f..319adc5d23 100644 --- a/l10n/bs/files_trashbin.po +++ b/l10n/bs/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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,19 @@ msgstr "Ime" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 4def658658..aaa796e103 100644 --- a/l10n/bs/lib.po +++ b/l10n/bs/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,54 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 638088dfd7..a9864b9876 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configuració" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "fa 1 minut" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "fa {minutes} minuts" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "fa 1 hora" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "fa {hours} hores" - -#: js/js.js:819 msgid "today" msgstr "avui" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ahir" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "fa {days} dies" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "el mes passat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "fa {months} mesos" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "l'any passat" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anys enrere" @@ -379,9 +379,10 @@ msgstr "L'actualització ha estat incorrecte. Comuniqueu aquest error a \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Comparteix" msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Esborra" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Reanomena" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendent" @@ -158,15 +154,13 @@ msgstr "s'ha substituït {old_name} per {new_name}" msgid "undo" msgstr "desfés" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "executa d'operació d'esborrar" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fitxer pujant" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "fitxers pujant" @@ -214,21 +208,17 @@ msgstr "Mida" msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 carpeta" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} carpetes" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fitxer" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fitxers" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Baixa" msgid "Unshare" msgstr "Deixa de compartir" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Esborra" + #: templates/index.php:105 msgid "Upload too large" msgstr "La pujada és massa gran" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 6c3703bdd7..b7b99faec2 100644 --- a/l10n/ca/files_encryption.po +++ b/l10n/ca/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 13:30+0000\n" +"Last-Translator: rogerc\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" @@ -73,7 +73,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Assegureu-vos que teniu instal·lat PHP 5.3.3 o una versió superior i que està activat Open SSL i habilitada i configurada correctament l'extensió de PHP. De moment, l'aplicació d'encriptació s'ha desactivat." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index f20e566e4f..69f190dc6a 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Nom" msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 carpeta" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} carpetes" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fitxer" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fitxers" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 375cbe8cb5..28c2be4f31 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: rogerc\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuaris" #: app.php:409 -msgid "Apps" -msgstr "Aplicacions" - -#: app.php:417 msgid "Admin" msgstr "Administració" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ha fallat l'actualització \"%s\"." @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "segons enrere" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "fa 1 minut" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "fa %d minuts" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "fa 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "fa %d hores" - -#: template/functions.php:85 msgid "today" msgstr "avui" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ahir" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "fa %d dies" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "el mes passat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "fa %d mesos" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "l'any passat" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anys enrere" diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index d8c8b13aa2..ed23a4058a 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# janinko , 2013 # Honza K. , 2013 # Martin , 2013 # pstast , 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Martin \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 18:33+0000\n" +"Last-Translator: pstast \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" @@ -141,59 +142,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nastavení" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "před pár vteřinami" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "před minutou" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "před {minutes} minutami" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "před hodinou" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "před {hours} hodinami" - -#: js/js.js:819 msgid "today" msgstr "dnes" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "včera" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "před {days} dny" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "před {months} měsíci" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "před měsíci" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "minulý rok" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "před lety" @@ -381,9 +386,10 @@ msgstr "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,15 +123,11 @@ msgstr "Sdílet" msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Smazat" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Přejmenovat" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Nevyřízené" @@ -159,15 +155,14 @@ msgstr "nahrazeno {new_name} s {old_name}" msgid "undo" msgstr "vrátit zpět" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "provést smazání" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "odesílá se 1 soubor" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "soubory se odesílají" @@ -215,21 +210,19 @@ msgstr "Velikost" msgid "Modified" msgstr "Upraveno" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 složka" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} složek" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 soubor" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} souborů" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -312,6 +305,10 @@ msgstr "Stáhnout" msgid "Unshare" msgstr "Zrušit sdílení" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Smazat" + #: templates/index.php:105 msgid "Upload too large" msgstr "Odesílaný soubor je příliš velký" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index b477743c56..ce70af9cff 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# janinko , 2013 # Honza K. , 2013 # Martin , 2013 # pstast , 2013 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 18:50+0000\n" +"Last-Translator: pstast \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" @@ -74,7 +75,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Ujistěte se prosím, že máte nainstalované PHP 5.3.3 nebo novější a že máte povolené a správně nakonfigurované OpenSSL včetně jeho rozšíření pro PHP. Prozatím byla aplikace pro šifrování vypnuta." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 4f63d6c7db..776ed0a08d 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 18:43+0000\n" +"Last-Translator: pstast \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" @@ -52,21 +52,19 @@ msgstr "Název" msgid "Deleted" msgstr "Smazáno" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 složka" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} složky" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 soubor" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} soubory" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index b1ed4bcc88..bff662e457 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -4,13 +4,14 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-29 18:50+0000\n" -"Last-Translator: Honza K. \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 18:50+0000\n" +"Last-Translator: pstast \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" @@ -21,7 +22,7 @@ msgstr "" #: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "Nelze navrátit: %s" +msgstr "Nelze vrátit: %s" #: js/versions.js:7 msgid "Versions" @@ -29,7 +30,7 @@ msgstr "Verze" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "Selhalo navrácení souboru {file} na verzi {timestamp}." +msgstr "Selhalo vrácení souboru {file} na verzi {timestamp}." #: js/versions.js:79 msgid "More versions..." diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index f6b76bfe8e..5cde183101 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-05 18:00+0000\n" -"Last-Translator: pstast \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,14 +37,10 @@ msgid "Users" msgstr "Uživatelé" #: app.php:409 -msgid "Apps" -msgstr "Aplikace" - -#: app.php:417 msgid "Admin" msgstr "Administrace" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Selhala aktualizace verze \"%s\"." @@ -213,50 +209,50 @@ msgid "seconds ago" msgstr "před pár sekundami" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "před minutou" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "před %d minutami" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "před hodinou" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "před %d hodinami" - -#: template/functions.php:85 msgid "today" msgstr "dnes" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "včera" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "před %d dny" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "minulý měsíc" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "před %d měsíci" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "minulý rok" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "před lety" diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 2776cc98d0..eda31fda90 100644 --- a/l10n/cy_GB/core.po +++ b/l10n/cy_GB/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,67 @@ msgstr "Tachwedd" msgid "December" msgstr "Rhagfyr" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 munud yn ôl" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} munud yn ôl" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 awr yn ôl" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} awr yn ôl" - -#: js/js.js:819 msgid "today" msgstr "heddiw" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ddoe" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} diwrnod yn ôl" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} mis yn ôl" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "y llynedd" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -378,9 +386,10 @@ msgstr "Methodd y diweddariad. Adroddwch y mater hwn i \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Rhannu" msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Dileu" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Ailenwi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "I ddod" @@ -156,15 +152,15 @@ msgstr "newidiwyd {new_name} yn lle {old_name}" msgid "undo" msgstr "dadwneud" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "cyflawni gweithred dileu" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ffeil yn llwytho i fyny" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" @@ -212,21 +208,21 @@ msgstr "Maint" msgid "Modified" msgstr "Addaswyd" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 blygell" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} plygell" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ffeil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ffeil" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/app.php:73 #, php-format @@ -309,6 +305,10 @@ msgstr "Llwytho i lawr" msgid "Unshare" msgstr "Dad-rannu" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Dileu" + #: templates/index.php:105 msgid "Upload too large" msgstr "Maint llwytho i fyny'n rhy fawr" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index 2df508d685..b9b366cf63 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,21 @@ msgstr "Enw" msgid "Deleted" msgstr "Wedi dileu" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 blygell" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} plygell" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ffeil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ffeil" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index 3a0c1d2692..f53ef9f6f2 100644 --- a/l10n/cy_GB/lib.po +++ b/l10n/cy_GB/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Defnyddwyr" #: app.php:409 -msgid "Apps" -msgstr "Pecynnau" - -#: app.php:417 msgid "Admin" msgstr "Gweinyddu" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,54 @@ msgid "seconds ago" msgstr "eiliad yn ôl" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 munud yn ôl" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d munud yn ôl" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 awr yn ôl" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d awr yn ôl" - -#: template/functions.php:85 msgid "today" msgstr "heddiw" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ddoe" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d diwrnod yn ôl" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mis diwethaf" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d mis yn ôl" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "y llynedd" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "blwyddyn yn ôl" diff --git a/l10n/da/core.po b/l10n/da/core.po index e6fec6fa4b..99b3fdb8c6 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -4,15 +4,16 @@ # # Translators: # Sappe, 2013 +# claus_chr , 2013 # Ole Holm Frandsen , 2013 # Peter Jespersen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:00+0000\n" +"Last-Translator: claus_chr \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" @@ -140,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "sekunder siden" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n minut siden" +msgstr[1] "%n minutter siden" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n time siden" +msgstr[1] "%n timer siden" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut siden" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutter siden" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "1 time siden" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timer siden" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dage siden" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "%n dag siden" +msgstr[1] "%n dage siden" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "sidste måned" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} måneder siden" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n måned siden" +msgstr[1] "%n måneder siden" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "måneder siden" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "sidste år" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "år siden" @@ -380,9 +381,10 @@ msgstr "Opdateringen blev ikke udført korrekt. Rapporter venligst problemet til msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Opdateringen blev udført korrekt. Du bliver nu viderestillet til ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Nulstil ownCloud kodeord" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "%s adgangskode nulstillet" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -414,7 +416,7 @@ msgid "" "will be no way to get your data back after your password is reset. If you " "are not sure what to do, please contact your administrator before you " "continue. Do you really want to continue?" -msgstr "" +msgstr "Dine filer er krypterede. Hvis du ikke har aktiveret gendannelsesnøglen kan du ikke få dine data tilbage efter at du har ændret adgangskode. HVis du ikke er sikker på, hvad du skal gøre så kontakt din administrator før du fortsætter. Vil du fortsætte?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -477,7 +479,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Hallo\n\ndette blot for at lade dig vide, at %s har delt %s med dig.\nSe det: %s\n\nHej" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -524,7 +526,7 @@ msgstr "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "" +msgstr "For information om, hvordan du konfigurerer din server korrekt se dokumentationen." #: templates/installation.php:47 msgid "Create an admin account" @@ -581,6 +583,10 @@ msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer." msgid "Log out" msgstr "Log ud" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Flere programmer" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk login afvist!" @@ -616,7 +622,7 @@ msgstr "Alternative logins" msgid "" "Hey there,

    just letting you know that %s shared »%s« with you.
    View it!

    Cheers!" -msgstr "" +msgstr "Hallo,

    dette blot for at lade dig vide, at %s har delt \"%s\" med dig.
    Se det!

    Hej" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/da/files.po b/l10n/da/files.po index 19bbe806b5..168a6cd426 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -4,14 +4,15 @@ # # Translators: # Sappe, 2013 +# claus_chr , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,15 +123,11 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Slet" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Omdøb" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Afventer" @@ -158,15 +155,13 @@ msgstr "erstattede {new_name} med {old_name}" msgid "undo" msgstr "fortryd" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "udfør slet operation" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "Uploader %n fil" +msgstr[1] "Uploader %n filer" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fil uploades" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "uploader filer" @@ -214,21 +209,17 @@ msgstr "Størrelse" msgid "Modified" msgstr "Ændret" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n mappe" +msgstr[1] "%n mapper" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n fil" +msgstr[1] "%n filer" #: lib/app.php:73 #, php-format @@ -311,6 +302,10 @@ msgstr "Download" msgid "Unshare" msgstr "Fjern deling" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Slet" + #: templates/index.php:105 msgid "Upload too large" msgstr "Upload er for stor" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index ad4b78df1c..105ba059f9 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # Sappe, 2013 +# claus_chr , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-14 19:40+0000\n" +"Last-Translator: claus_chr \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" @@ -71,11 +72,11 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Sørg for at PHP 5.3.3 eller nyere er installeret og at OpenSSL sammen med PHP-udvidelsen er aktiveret og korrekt konfigureret. Indtil videre er krypteringsprogrammet deaktiveret." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Følgende brugere er ikke sat op til kryptering:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 9e5c80b304..3f0098ca86 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -4,13 +4,14 @@ # # Translators: # Sappe, 2013 +# claus_chr , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:00+0000\n" +"Last-Translator: claus_chr \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" @@ -52,21 +53,17 @@ msgstr "Navn" msgid "Deleted" msgstr "Slettet" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappe" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n mappe" +msgstr[1] "%n mapper" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n fil" +msgstr[1] "%n filer" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 2f0661d944..8e9c6124d7 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -4,14 +4,15 @@ # # Translators: # Sappe, 2013 +# claus_chr , 2013 # Ole Holm Frandsen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: Sappe\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:00+0000\n" +"Last-Translator: claus_chr \n" "Language-Team: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +37,10 @@ msgid "Users" msgstr "Brugere" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgradering af \"%s\" fejlede" @@ -212,50 +209,46 @@ msgid "seconds ago" msgstr "sekunder siden" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut siden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n minut siden" +msgstr[1] "%n minutter siden" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutter siden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n time siden" +msgstr[1] "%n timer siden" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 time siden" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d timer siden" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dage siden" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "%n dag siden" +msgstr[1] "%n dage siden" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "sidste måned" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d måneder siden" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n måned siden" +msgstr[1] "%n måneder siden" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "sidste år" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år siden" diff --git a/l10n/de/core.po b/l10n/de/core.po index 4944745fba..3d323562a8 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -4,6 +4,7 @@ # # Translators: # arkascha , 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # JamFX , 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,59 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "Gerade eben" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "Vor %n Minute" +msgstr[1] "Vor %n Minuten" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "Vor %n Stunde" +msgstr[1] "Vor %n Stunden" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "vor einer Minute" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "Gestern" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "Vor %n Tag" +msgstr[1] "Vor %n Tagen" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Vor {months} Monaten" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "Vor %n Monat" +msgstr[1] "Vor %n Monaten" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "Vor Jahren" @@ -384,9 +385,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die , 2013 # Marcel Kühlhorn , 2013 # ninov , 2013 # Pwnicorn , 2013 @@ -11,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -124,15 +125,11 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Löschen" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ausstehend" @@ -160,15 +157,13 @@ msgstr "{old_name} ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Löschvorgang ausführen" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "%n Datei wird hochgeladen" +msgstr[1] "%n Dateien werden hochgeladen" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -216,21 +211,17 @@ msgstr "Größe" msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n Ordner" +msgstr[1] "%n Ordner" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n Datei" +msgstr[1] "%n Dateien" #: lib/app.php:73 #, php-format @@ -313,6 +304,10 @@ msgstr "Herunterladen" msgid "Unshare" msgstr "Freigabe aufheben" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Löschen" + #: templates/index.php:105 msgid "Upload too large" msgstr "Der Upload ist zu groß" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index f7cc4dd5ef..0505a20864 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -5,6 +5,7 @@ # Translators: # iLennart21 , 2013 # Stephan Köninger , 2013 +# Mario Siegmann , 2013 # ninov , 2013 # Pwnicorn , 2013 # thillux, 2013 @@ -13,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 14:10+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -76,7 +77,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Bitte stelle sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index dd3f5d772b..4d78f4aabd 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:10+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Name" msgid "Deleted" msgstr "gelöscht" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 Ordner" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "%n Ordner" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "%n Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 109207a62f..88e04aff8a 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:20+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,14 +37,10 @@ msgid "Users" msgstr "Benutzer" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administration" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -213,50 +209,46 @@ msgid "seconds ago" msgstr "Gerade eben" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "vor einer Minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "Vor %n Minuten" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "Vor %n Stunden" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vor %d Stunden" - -#: template/functions.php:85 msgid "today" msgstr "Heute" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "Vor %d Tag(en)" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "Vor %n Tagen" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vor %d Monaten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "Vor %n Monaten" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_AT/core.po b/l10n/de_AT/core.po index 26a530d9ee..621763a9b8 100644 --- a/l10n/de_AT/core.po +++ b/l10n/de_AT/core.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# I Robot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -137,59 +138,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:754 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:755 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:756 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:757 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:758 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:760 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:761 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:762 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:763 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +580,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Mehr Apps" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/de_AT/files.po b/l10n/de_AT/files.po index 8b21b5f169..6bb9f95f5e 100644 --- a/l10n/de_AT/files.po +++ b/l10n/de_AT/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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/de_AT/files_trashbin.po b/l10n/de_AT/files_trashbin.po index 12c2585e9c..a05dc1411b 100644 --- a/l10n/de_AT/files_trashbin.po +++ b/l10n/de_AT/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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de_AT/lib.po b/l10n/de_AT/lib.po index 39a75daead..0984165a84 100644 --- a/l10n/de_AT/lib.po +++ b/l10n/de_AT/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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 09:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po index 355a916194..78e1a2ea08 100644 --- a/l10n/de_CH/core.po +++ b/l10n/de_CH/core.po @@ -5,6 +5,7 @@ # Translators: # arkascha , 2013 # FlorianScholz , 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # Mirodin , 2013 @@ -14,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,59 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Vor 1 Minute" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Vor einer Stunde" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "Gestern" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Vor {months} Monaten" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "Vor Jahren" @@ -384,9 +385,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -128,15 +128,11 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Löschen" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ausstehend" @@ -164,15 +160,13 @@ msgstr "{old_name} wurde ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Löschvorgang ausführen" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -220,21 +214,17 @@ msgstr "Grösse" msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -317,6 +307,10 @@ msgstr "Herunterladen" msgid "Unshare" msgstr "Freigabe aufheben" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Löschen" + #: templates/index.php:105 msgid "Upload too large" msgstr "Der Upload ist zu gross" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po index 11659a6602..1d80e2f437 100644 --- a/l10n/de_CH/files_trashbin.po +++ b/l10n/de_CH/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,21 +53,17 @@ msgstr "Name" msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 Ordner" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po index 5fa64da13b..b694523ffe 100644 --- a/l10n/de_CH/lib.po +++ b/l10n/de_CH/lib.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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 13:40+0000\n" -"Last-Translator: FlorianScholz \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Switzerland) (http://www.transifex.com/projects/p/owncloud/language/de_CH/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -37,14 +37,10 @@ msgid "Users" msgstr "Benutzer" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -213,50 +209,46 @@ msgid "seconds ago" msgstr "Gerade eben" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Vor 1 Minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vor %d Stunden" - -#: template/functions.php:85 msgid "today" msgstr "Heute" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "Vor %d Tag(en)" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vor %d Monaten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index e72058f88c..beccc7cb9a 100644 --- a/l10n/de_DE/core.po +++ b/l10n/de_DE/core.po @@ -5,17 +5,19 @@ # Translators: # arkascha , 2013 # SteinQuadrat, 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 # Mario Siegmann , 2013 # traductor , 2013 +# noxin , 2013 # Mirodin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:30+0000\n" +"Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -143,59 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "Gerade eben" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "Vor %n Minute" +msgstr[1] "Vor %n Minuten" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "Vor %n Stunde" +msgstr[1] "Vor %n Stunden" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "Vor 1 Minute" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} Minuten" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:819 msgid "today" msgstr "Heute" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "Gestern" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Vor {days} Tag(en)" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "Vor %n Tag" +msgstr[1] "Vor %n Tagen" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Vor {months} Monaten" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "Vor %n Monat" +msgstr[1] "Vor %n Monaten" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "Vor Jahren" @@ -383,9 +385,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die , 2013 # Marcel Kühlhorn , 2013 # traductor , 2013 +# noxin , 2013 # Mirodin , 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -127,15 +128,11 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Löschen" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Umbenennen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ausstehend" @@ -163,15 +160,13 @@ msgstr "{old_name} wurde ersetzt durch {new_name}" msgid "undo" msgstr "rückgängig machen" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Löschvorgang ausführen" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "%n Datei wird hoch geladen" +msgstr[1] "%n Dateien werden hoch geladen" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -219,21 +214,17 @@ msgstr "Größe" msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n Ordner" +msgstr[1] "%n Ordner" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n Datei" +msgstr[1] "%n Dateien" #: lib/app.php:73 #, php-format @@ -316,6 +307,10 @@ msgstr "Herunterladen" msgid "Unshare" msgstr "Freigabe aufheben" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Löschen" + #: templates/index.php:105 msgid "Upload too large" msgstr "Der Upload ist zu groß" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index 40c198d080..7e0878a9eb 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 14:10+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +74,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und das OpenSSL zusammen mit der PHP-Erweiterung aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index ea20766b17..1875dbf8bf 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -4,13 +4,14 @@ # # Translators: # Mario Siegmann , 2013 +# noxin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:01+0000\n" +"Last-Translator: noxin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +53,17 @@ msgstr "Name" msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 Ordner" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n Ordner" +msgstr[1] "%n Ordner" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n Dateien" +msgstr[1] "%n Dateien" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 9e998d3694..c702b00041 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -5,13 +5,14 @@ # Translators: # Mario Siegmann , 2013 # traductor , 2013 +# noxin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Mario Siegmann \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:10+0000\n" +"Last-Translator: noxin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +37,10 @@ msgid "Users" msgstr "Benutzer" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Konnte \"%s\" nicht aktualisieren." @@ -212,50 +209,46 @@ msgid "seconds ago" msgstr "Gerade eben" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Vor 1 Minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "Vor %n Minute" +msgstr[1] "Vor %n Minuten" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "Vor %d Minuten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "Vor %n Stunde" +msgstr[1] "Vor %n Stunden" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vor %d Stunden" - -#: template/functions.php:85 msgid "today" msgstr "Heute" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "Gestern" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "Vor %d Tag(en)" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "Vor %n Tag" +msgstr[1] "Vor %n Tagen" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Letzten Monat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vor %d Monaten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "Vor %n Monat" +msgstr[1] "Vor %n Monaten" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Letztes Jahr" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Vor Jahren" diff --git a/l10n/el/core.po b/l10n/el/core.po index be7ecd8335..9ce695662a 100644 --- a/l10n/el/core.po +++ b/l10n/el/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,59 +144,59 @@ msgstr "Νοέμβριος" msgid "December" msgstr "Δεκέμβριος" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ρυθμίσεις" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "δευτερόλεπτα πριν" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 λεπτό πριν" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} λεπτά πριν" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ώρα πριν" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ώρες πριν" - -#: js/js.js:819 msgid "today" msgstr "σήμερα" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "χτες" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} ημέρες πριν" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "τελευταίο μήνα" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} μήνες πριν" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "μήνες πριν" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "τελευταίο χρόνο" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "χρόνια πριν" @@ -384,9 +384,10 @@ msgstr "Η ενημέρωση ήταν ανεπιτυχής. Παρακαλώ σ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Η ενημέρωση ήταν επιτυχής. Μετάβαση στο ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Επαναφορά συνθηματικού ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -585,6 +586,10 @@ msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες π msgid "Log out" msgstr "Αποσύνδεση" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Απορρίφθηκε η αυτόματη σύνδεση!" diff --git a/l10n/el/files.po b/l10n/el/files.po index a4f5443a37..e5be16beb9 100644 --- a/l10n/el/files.po +++ b/l10n/el/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,15 +122,11 @@ msgstr "Διαμοιρασμός" msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Διαγραφή" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Μετονομασία" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Εκκρεμεί" @@ -158,15 +154,13 @@ msgstr "αντικαταστάθηκε το {new_name} με {old_name}" msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "εκτέλεση της διαδικασίας διαγραφής" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 αρχείο ανεβαίνει" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -214,21 +208,17 @@ msgstr "Μέγεθος" msgid "Modified" msgstr "Τροποποιήθηκε" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 φάκελος" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} φάκελοι" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 αρχείο" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} αρχεία" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Λήψη" msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Διαγραφή" + #: templates/index.php:105 msgid "Upload too large" msgstr "Πολύ μεγάλο αρχείο προς αποστολή" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 6c2cab32d4..9419e249a1 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Όνομα" msgid "Deleted" msgstr "Διαγράφηκε" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 φάκελος" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} φάκελοι" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 αρχείο" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} αρχεία" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index b0250c735a..c98f621f36 100644 --- a/l10n/el/lib.po +++ b/l10n/el/lib.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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-06 08:00+0000\n" -"Last-Translator: Efstathios Iosifidis \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Χρήστες" #: app.php:409 -msgid "Apps" -msgstr "Εφαρμογές" - -#: app.php:417 msgid "Admin" msgstr "Διαχειριστής" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Αποτυχία αναβάθμισης του \"%s\"." @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "δευτερόλεπτα πριν" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 λεπτό πριν" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d λεπτά πριν" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ώρα πριν" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ώρες πριν" - -#: template/functions.php:85 msgid "today" msgstr "σήμερα" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "χτες" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ημέρες πριν" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "τελευταίο μήνα" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d μήνες πριν" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "τελευταίο χρόνο" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "χρόνια πριν" diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index a58c1135ed..f644607fac 100644 --- a/l10n/en@pirate/core.po +++ b/l10n/en@pirate/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:754 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:755 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:756 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:757 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:758 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:760 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:761 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:762 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:763 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -378,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -579,6 +580,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/en@pirate/files.po b/l10n/en@pirate/files.po index e3737d260a..68fdd38747 100644 --- a/l10n/en@pirate/files.po +++ b/l10n/en@pirate/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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Download" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po index 03673aa939..c64e4f7a6a 100644 --- a/l10n/en@pirate/files_trashbin.po +++ b/l10n/en@pirate/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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index fb244e8b56..69cf917ce7 100644 --- a/l10n/en@pirate/lib.po +++ b/l10n/en@pirate/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web services under your control" @@ -210,54 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index cdf3f785d4..59d39a60fd 100644 --- a/l10n/eo/core.po +++ b/l10n/eo/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "Novembro" msgid "December" msgstr "Decembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Agordo" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "antaŭ 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "antaŭ {minutes} minutoj" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "antaŭ 1 horo" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "antaŭ {hours} horoj" - -#: js/js.js:819 msgid "today" msgstr "hodiaŭ" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "antaŭ {days} tagoj" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "lastamonate" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "antaŭ {months} monatoj" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "lastajare" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "jaroj antaŭe" @@ -379,9 +379,10 @@ msgstr "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Kunhavigi" msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Forigi" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Alinomigi" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Traktotaj" @@ -157,15 +153,13 @@ msgstr "anstataŭiĝis {new_name} per {old_name}" msgid "undo" msgstr "malfari" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "plenumi forigan operacion" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 dosiero estas alŝutata" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "dosieroj estas alŝutataj" @@ -213,21 +207,17 @@ msgstr "Grando" msgid "Modified" msgstr "Modifita" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dosierujo" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dosierujoj" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 dosiero" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} dosierujoj" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -310,6 +300,10 @@ msgstr "Elŝuti" msgid "Unshare" msgstr "Malkunhavigi" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Forigi" + #: templates/index.php:105 msgid "Upload too large" msgstr "Alŝuto tro larĝa" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index c306eefbc5..def217fe08 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Nomo" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dosierujo" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dosierujoj" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 dosiero" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} dosierujoj" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 3fd499750c..8c48d70948 100644 --- a/l10n/eo/lib.po +++ b/l10n/eo/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Uzantoj" #: app.php:409 -msgid "Apps" -msgstr "Aplikaĵoj" - -#: app.php:417 msgid "Admin" msgstr "Administranto" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "sekundoj antaŭe" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "antaŭ 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "antaŭ %d minutoj" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "antaŭ 1 horo" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "antaŭ %d horoj" - -#: template/functions.php:85 msgid "today" msgstr "hodiaŭ" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "hieraŭ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "antaŭ %d tagoj" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "lastamonate" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "antaŭ %d monatoj" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "lastajare" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "jaroj antaŭe" diff --git a/l10n/es/core.po b/l10n/es/core.po index 32c9c17e3b..195bdf7047 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,6 +5,7 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 +# I Robot , 2013 # msoko , 2013 # pablomillaquen , 2013 # saskarip , 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: pablomillaquen \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 13:50+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -145,59 +146,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ajustes" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "hace segundos" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "hace 1 minuto" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "hace {minutes} minutos" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "Hace 1 hora" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Hace {hours} horas" - -#: js/js.js:819 msgid "today" msgstr "hoy" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "ayer" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "hace {days} días" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "el mes pasado" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Hace {months} meses" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "hace meses" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "el año pasado" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "hace años" @@ -379,15 +380,16 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud." +msgstr "La actualización ha fracasado. Por favor, informe de este problema a la Comunidad de ownCloud." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización se ha realizado con éxito. Redireccionando a ownCloud ahora." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Reseteo contraseña de ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -586,6 +588,10 @@ msgstr "%s esta disponible. Obtener mas información de como actualizar." msgid "Log out" msgstr "Salir" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡Inicio de sesión automático rechazado!" diff --git a/l10n/es/files.po b/l10n/es/files.po index 8a38275c61..593c9f3b6b 100644 --- a/l10n/es/files.po +++ b/l10n/es/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -125,15 +125,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Eliminar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renombrar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendiente" @@ -161,15 +157,13 @@ msgstr "reemplazado {new_name} con {old_name}" msgid "undo" msgstr "deshacer" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Realizar operación de borrado" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "subiendo 1 archivo" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "subiendo archivos" @@ -217,21 +211,17 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 carpeta" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} carpetas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 archivo" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} archivos" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -314,6 +304,10 @@ msgstr "Descargar" msgid "Unshare" msgstr "Dejar de compartir" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Eliminar" + #: templates/index.php:105 msgid "Upload too large" msgstr "Subida demasido grande" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index ccaa90e09d..beb34a8115 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Art O. Pal \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -53,21 +53,17 @@ msgstr "Nombre" msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 carpeta" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} carpetas" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 archivo" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} archivos" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 7306fcc13c..2c3194d687 100644 --- a/l10n/es/files_versions.po +++ b/l10n/es/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Rodrigo Rodríguez , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 05:50+0000\n" +"Last-Translator: Rodrigo Rodríguez \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,15 +29,15 @@ msgstr "Revisiones" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "No se ha podido revertir {archivo} a revisión {timestamp}." #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Más..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "No hay otras versiones disponibles" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 0ac1ec2a97..209038f14e 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: pablomillaquen \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Usuarios" #: app.php:409 -msgid "Apps" -msgstr "Aplicaciones" - -#: app.php:417 msgid "Admin" msgstr "Administración" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falló la actualización \"%s\"." @@ -212,50 +208,46 @@ msgid "seconds ago" msgstr "hace segundos" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "hace 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "hace %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Hace 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Hace %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoy" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ayer" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "hace %d días" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mes pasado" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Hace %d meses" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "año pasado" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "hace años" diff --git a/l10n/es/user_ldap.po b/l10n/es/user_ldap.po index 1fb1c6df32..edabac064f 100644 --- a/l10n/es/user_ldap.po +++ b/l10n/es/user_ldap.po @@ -5,14 +5,15 @@ # Translators: # Agustin Ferrario , 2013 # ordenet , 2013 +# Rodrigo Rodríguez , 2013 # xhiena , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 06:00+0000\n" +"Last-Translator: Rodrigo Rodríguez \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" @@ -30,7 +31,7 @@ msgstr "No se pudo borrar la configuración del servidor" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "La configuración es válida y la conexión puede establecerse!" +msgstr "¡La configuración es válida y la conexión puede establecerse!" #: ajax/testConfiguration.php:39 msgid "" @@ -54,7 +55,7 @@ msgstr "¿Asumir los ajustes actuales de la configuración del servidor?" #: js/settings.js:83 msgid "Keep settings?" -msgstr "Mantener la configuración?" +msgstr "¿Mantener la configuración?" #: js/settings.js:97 msgid "Cannot add server configuration" @@ -248,7 +249,7 @@ msgstr "Apagar la validación por certificado SSL." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Si la conexión funciona sólo con esta opción, importe el certificado SSL del servidor LDAP en su servidor %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index ddd6637a93..b880f91c7a 100644 --- a/l10n/es/user_webdavauth.po +++ b/l10n/es/user_webdavauth.po @@ -6,14 +6,15 @@ # Agustin Ferrario , 2013 # Art O. Pal , 2012 # pggx999 , 2012 +# Rodrigo Rodríguez , 2013 # saskarip , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 05:50+0000\n" +"Last-Translator: Rodrigo Rodríguez \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" @@ -27,11 +28,11 @@ msgstr "Autenticación de WevDAV" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Dirección:" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. 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 "onwCloud enviará las credenciales de usuario a esta dirección. Este complemento verifica la respuesta e interpretará los códigos de respuesta HTTP 401 y 403 como credenciales inválidas y todas las otras respuestas como credenciales válidas." diff --git a/l10n/es_AR/core.po b/l10n/es_AR/core.po index b338b66c65..a64c557f8e 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configuración" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "hace 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "hace {minutes} minutos" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 hora atrás" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "hace {hours} horas" - -#: js/js.js:819 msgid "today" msgstr "hoy" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ayer" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "hace {days} días" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "el mes pasado" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} meses atrás" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "el año pasado" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "años atrás" @@ -378,9 +378,10 @@ msgstr "La actualización no pudo ser completada. Por favor, reportá el inconve msgid "The update was successful. Redirecting you to ownCloud now." msgstr "La actualización fue exitosa. Estás siendo redirigido a ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Restablecer contraseña de ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -579,6 +580,10 @@ msgstr "%s está disponible. Obtené más información sobre cómo actualizar." msgid "Log out" msgstr "Cerrar la sesión" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "¡El inicio de sesión automático fue rechazado!" diff --git a/l10n/es_AR/files.po b/l10n/es_AR/files.po index 3b8bee30bc..46a83c8e5b 100644 --- a/l10n/es_AR/files.po +++ b/l10n/es_AR/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Borrar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Cambiar nombre" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendientes" @@ -158,15 +154,13 @@ msgstr "se reemplazó {new_name} con {old_name}" msgid "undo" msgstr "deshacer" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Llevar a cabo borrado" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Subiendo 1 archivo" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "Subiendo archivos" @@ -214,21 +208,17 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 directorio" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} directorios" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 archivo" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} archivos" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Descargar" msgid "Unshare" msgstr "Dejar de compartir" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Borrar" + #: templates/index.php:105 msgid "Upload too large" msgstr "El tamaño del archivo que querés subir es demasiado grande" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index 2a816ac13b..bdec790f40 100644 --- a/l10n/es_AR/files_trashbin.po +++ b/l10n/es_AR/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Nombre" msgid "Deleted" msgstr "Borrado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 directorio" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} directorios" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 archivo" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} archivos" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 97230b87fe..722cf0c4c6 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: cjtess \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuarios" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Administración" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "No se pudo actualizar \"%s\"." @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "segundos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "hace 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "hace %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "hace 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "hace %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoy" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ayer" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "hace %d días" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "el mes pasado" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "hace %d meses" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "el año pasado" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "años atrás" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 370f8216d2..089c7847e9 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Seaded" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut tagasi" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutit tagasi" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 tund tagasi" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} tundi tagasi" - -#: js/js.js:819 msgid "today" msgstr "täna" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "eile" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} päeva tagasi" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} kuud tagasi" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "aastat tagasi" @@ -379,9 +379,10 @@ msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Jaga" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Kustuta" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Nimeta ümber" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ootel" @@ -158,15 +154,13 @@ msgstr "asendas nime {old_name} nimega {new_name}" msgid "undo" msgstr "tagasi" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "teosta kustutamine" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fail üleslaadimisel" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "faili üleslaadimisel" @@ -214,21 +208,17 @@ msgstr "Suurus" msgid "Modified" msgstr "Muudetud" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 kaust" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} kausta" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fail" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} faili" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Lae alla" msgid "Unshare" msgstr "Lõpeta jagamine" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Kustuta" + #: templates/index.php:105 msgid "Upload too large" msgstr "Üleslaadimine on liiga suur" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index d1ddbdb93f..f39cbd3640 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 11:10+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -72,11 +72,11 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Palun veendu, et on paigaldatud PHP 5.3.3 või uuem ning PHP OpenSSL laiendus on lubatud ning seadistatud korrektselt. Hetkel krüpteerimise rakendus on peatatud." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Järgmised kasutajad pole seadistatud krüpteeringuks:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/et_EE/files_sharing.po b/l10n/et_EE/files_sharing.po index 0eb4a12a9d..f45b12c52b 100644 --- a/l10n/et_EE/files_sharing.po +++ b/l10n/et_EE/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:50+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -32,27 +33,27 @@ msgstr "Saada" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Vabandust, see link ei tundu enam toimivat." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Põhjused võivad olla:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "üksus on eemaldatud" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "link on aegunud" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "jagamine on peatatud" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole." #: templates/public.php:15 #, php-format diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 40067e9eb1..9e88ec56ab 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -51,25 +52,21 @@ msgstr "Nimi" msgid "Deleted" msgstr "Kustutatud" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 kaust" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} kausta" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fail" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} faili" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "taastatud" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/et_EE/files_versions.po b/l10n/et_EE/files_versions.po index b8e03a3142..cfb0bfca4a 100644 --- a/l10n/et_EE/files_versions.po +++ b/l10n/et_EE/files_versions.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 # Rivo Zängov , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-28 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 06:10+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:40+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -29,15 +30,15 @@ msgstr "Versioonid" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "Ebaõnnestus faili {file} taastamine revisjonile {timestamp}" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "Rohkem versioone..." #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "Muid versioone pole saadaval" #: js/versions.js:149 msgid "Restore" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index e54afea757..a0fadcd8fe 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: pisike.sipelgas \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Kasutajad" #: app.php:409 -msgid "Apps" -msgstr "Rakendused" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ebaõnnestunud uuendus \"%s\"." @@ -212,50 +208,46 @@ msgid "seconds ago" msgstr "sekundit tagasi" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut tagasi" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutit tagasi" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 tund tagasi" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d tundi tagasi" - -#: template/functions.php:85 msgid "today" msgstr "täna" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "eile" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d päeva tagasi" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "viimasel kuul" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d kuud tagasi" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "viimasel aastal" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "aastat tagasi" diff --git a/l10n/et_EE/user_ldap.po b/l10n/et_EE/user_ldap.po index 7604805be0..429359f138 100644 --- a/l10n/et_EE/user_ldap.po +++ b/l10n/et_EE/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 11:00+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -92,7 +92,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Hoiatus: rakendused user_ldap ja user_webdavauht ei ole ühilduvad. Töös võib esineda ootamatuid tõrkeid.\nPalu oma süsteemihalduril üks neist rakendustest kasutusest eemaldada." #: templates/settings.php:12 msgid "" @@ -224,7 +224,7 @@ msgstr "Ära kasuta peaserverit" #: templates/settings.php:75 msgid "Only connect to the replica server." -msgstr "" +msgstr "Ühendu ainult replitseeriva serveriga." #: templates/settings.php:76 msgid "Use TLS" @@ -247,7 +247,7 @@ msgstr "Lülita SSL sertifikaadi kontrollimine välja." msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma %s serverisse." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -271,7 +271,7 @@ msgstr "Kasutaja näidatava nime väli" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "LDAP atribuut, mida kasutatakse kasutaja kuvatava nime loomiseks." #: templates/settings.php:84 msgid "Base User Tree" @@ -295,7 +295,7 @@ msgstr "Grupi näidatava nime väli" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "LDAP atribuut, mida kasutatakse ownCloudi grupi kuvatava nime loomiseks." #: templates/settings.php:87 msgid "Base Group Tree" @@ -361,7 +361,7 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "Vaikimisi tekitatakse sisemine kasutajanimi UUID atribuudist. See tagab, et kasutajanimi on unikaalne ja sümboleid pole vaja muuta. Sisemisel kasutajatunnuse puhul on lubatud ainult järgmised sümbolid: [ a-zA-Z0-9_.@- ]. Muud sümbolid asendatakse nende ASCII vastega või lihtsalt hüljatakse. Tõrgete korral lisatakse number või suurendatakse seda. Sisemist kasutajatunnust kasutatakse kasutaja sisemiseks tuvastamiseks. Ühtlasi on see ownCloudis kasutaja vaikimisi kodukataloogi nimeks. See on ka serveri URLi osaks, näiteks kõikidel *DAV teenustel. Selle seadistusega saab tühistada vaikimisi käitumise. Saavutamaks sarnast käitumist eelnevate ownCloud 5 versioonidega, sisesta kasutaja kuvatava nime atribuut järgnevale väljale. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -380,7 +380,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "Vaikimis ownCloud tuvastab automaatselt UUID atribuudi. UUID atribuuti kasutatakse LDAP kasutajate ja gruppide kindlaks tuvastamiseks. Samuti tekitatakse sisemine kasutajanimi UUID alusel, kui pole määratud teisiti. Sa saad tühistada selle seadistuse ning määrata atribuudi omal valikul. Pead veenduma, et valitud atribuut toimib nii kasutajate kui gruppide puhul ning on unikaalne. Vaikimisi seadistuseks jäta tühjaks. Muudatused mõjutavad ainult uusi (lisatud) LDAP kasutajate vastendusi." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -402,7 +402,7 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, peab iga LDAP kasutaja omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutajanimi vastendatakse LDAP kasutaja UUID-iks. Lisaks puhverdatakse DN vähendamaks LDAP päringuid, kuid seda ei kasutata tuvastamisel. ownCloud suudab tuvastada ka DN muutumise. ownCloud sisemist kasutajatunnust kasutatakse üle kogu ownCloudi. Eemaldates vastenduse tekivad kõikjal andmejäägid. Vastenduste eemaldamine ei ole konfiguratsiooni tundlik, see mõjutab kõiki LDAP seadistusi! Ära kunagi eemalda vastendusi produktsioonis! Seda võid teha ainult testis või katsetuste masinas." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/et_EE/user_webdavauth.po b/l10n/et_EE/user_webdavauth.po index 9acee7ab2c..575c051d6a 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/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-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:40+0000\n" +"Last-Translator: pisike.sipelgas \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" @@ -25,11 +25,11 @@ msgstr "WebDAV autentimine" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "Aadress:" #: templates/settings.php:7 msgid "" "The user credentials will be sent to this address. 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 cd98baf255..b732596c72 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segundu" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "orain dela minutu 1" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "orain dela {minutes} minutu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "orain dela ordu bat" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "orain dela {hours} ordu" - -#: js/js.js:819 msgid "today" msgstr "gaur" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "atzo" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "orain dela {days} egun" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "orain dela {months} hilabete" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "hilabete" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "joan den urtean" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "urte" @@ -379,9 +379,10 @@ msgstr "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Elkarbanatu" msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Ezabatu" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Berrizendatu" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Zain" @@ -157,15 +153,13 @@ msgstr " {new_name}-k {old_name} ordezkatu du" msgid "undo" msgstr "desegin" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Ezabatu" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "fitxategi 1 igotzen" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -213,21 +207,17 @@ msgstr "Tamaina" msgid "Modified" msgstr "Aldatuta" -#: js/files.js:763 -msgid "1 folder" -msgstr "karpeta bat" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} karpeta" - -#: js/files.js:773 -msgid "1 file" -msgstr "fitxategi bat" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fitxategi" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -310,6 +300,10 @@ msgstr "Deskargatu" msgid "Unshare" msgstr "Ez elkarbanatu" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Ezabatu" + #: templates/index.php:105 msgid "Upload too large" msgstr "Igoera handiegia da" diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 0c4934d270..ee2efd48c1 100644 --- a/l10n/eu/files_trashbin.po +++ b/l10n/eu/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Izena" msgid "Deleted" msgstr "Ezabatuta" -#: js/trash.js:192 -msgid "1 folder" -msgstr "karpeta bat" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} karpeta" - -#: js/trash.js:202 -msgid "1 file" -msgstr "fitxategi bat" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fitxategi" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index 3cfce3b6f4..99b8dd00c2 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: asieriko \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Erabiltzaileak" #: app.php:409 -msgid "Apps" -msgstr "Aplikazioak" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Ezin izan da \"%s\" eguneratu." @@ -212,50 +208,46 @@ msgid "seconds ago" msgstr "segundu" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "orain dela minutu 1" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "orain dela %d minutu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "orain dela ordu bat" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "orain dela %d ordu" - -#: template/functions.php:85 msgid "today" msgstr "gaur" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "atzo" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "orain dela %d egun" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "joan den hilabetean" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "orain dela %d hilabete" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "joan den urtean" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "urte" diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 55f8108cb9..1324533554 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,55 @@ msgstr "نوامبر" msgid "December" msgstr "دسامبر" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "تنظیمات" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "ثانیه‌ها پیش" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 دقیقه پیش" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{دقیقه ها} دقیقه های پیش" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ساعت پیش" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{ساعت ها} ساعت ها پیش" - -#: js/js.js:819 msgid "today" msgstr "امروز" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "دیروز" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{روزها} روزهای پیش" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "ماه قبل" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{ماه ها} ماه ها پیش" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "ماه‌های قبل" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "سال قبل" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "سال‌های قبل" @@ -378,9 +374,10 @@ msgstr "به روز رسانی ناموفق بود. لطفا این خطا را msgid "The update was successful. Redirecting you to ownCloud now." msgstr "به روزرسانی موفقیت آمیز بود. در حال انتقال شما به OwnCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "پسورد ابرهای شما تغییرکرد" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -579,6 +576,10 @@ msgstr "%s در دسترس است. برای چگونگی به روز رسانی msgid "Log out" msgstr "خروج" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ورود به سیستم اتوماتیک ردشد!" diff --git a/l10n/fa/files.po b/l10n/fa/files.po index bbe0225b17..6e40c2131b 100644 --- a/l10n/fa/files.po +++ b/l10n/fa/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "اشتراک‌گذاری" msgid "Delete permanently" msgstr "حذف قطعی" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "حذف" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "تغییرنام" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "در انتظار" @@ -157,15 +153,12 @@ msgstr "{نام_جدید} با { نام_قدیمی} جایگزین شد." msgid "undo" msgstr "بازگشت" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "انجام عمل حذف" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 پرونده آپلود شد." - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -213,21 +206,15 @@ msgstr "اندازه" msgid "Modified" msgstr "تاریخ" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 پوشه" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{ شمار} پوشه ها" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 پرونده" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{ شمار } فایل ها" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -310,6 +297,10 @@ msgstr "دانلود" msgid "Unshare" msgstr "لغو اشتراک" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "حذف" + #: templates/index.php:105 msgid "Upload too large" msgstr "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index 2f671b8c3e..b7425ae04b 100644 --- a/l10n/fa/files_trashbin.po +++ b/l10n/fa/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "نام" msgid "Deleted" msgstr "حذف شده" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 پوشه" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{ شمار} پوشه ها" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 پرونده" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{ شمار } فایل ها" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index a547252a6b..86524be032 100644 --- a/l10n/fa/lib.po +++ b/l10n/fa/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "کاربران" #: app.php:409 -msgid "Apps" -msgstr " برنامه ها" - -#: app.php:417 msgid "Admin" msgstr "مدیر" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,42 @@ msgid "seconds ago" msgstr "ثانیه‌ها پیش" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 دقیقه پیش" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d دقیقه پیش" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ساعت پیش" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ساعت پیش" - -#: template/functions.php:85 msgid "today" msgstr "امروز" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "دیروز" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d روز پیش" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ماه قبل" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%dماه پیش" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "سال قبل" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "سال‌های قبل" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 8fea4b8d57..8a0396f34e 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:10+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Asetukset" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "sekuntia sitten" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n minuutti sitten" +msgstr[1] "%n minuuttia sitten" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n tunti sitten" +msgstr[1] "%n tuntia sitten" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuutti sitten" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuuttia sitten" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "1 tunti sitten" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} tuntia sitten" - -#: js/js.js:819 msgid "today" msgstr "tänään" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "eilen" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} päivää sitten" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "%n päivä sitten" +msgstr[1] "%n päivää sitten" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "viime kuussa" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} kuukautta sitten" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n kuukausi sitten" +msgstr[1] "%n kuukautta sitten" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "viime vuonna" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "vuotta sitten" @@ -378,9 +378,10 @@ msgstr "Päivitys epäonnistui. Ilmoita ongelmasta \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Jaa" msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Poista" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Nimeä uudelleen" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Odottaa" @@ -157,15 +153,13 @@ msgstr "" msgid "undo" msgstr "kumoa" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "suorita poistotoiminto" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "Lähetetään %n tiedosto" +msgstr[1] "Lähetetään %n tiedostoa" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -213,21 +207,17 @@ msgstr "Koko" msgid "Modified" msgstr "Muokattu" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 kansio" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n kansio" +msgstr[1] "%n kansiota" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} kansiota" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 tiedosto" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} tiedostoa" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n tiedosto" +msgstr[1] "%n tiedostoa" #: lib/app.php:73 #, php-format @@ -310,6 +300,10 @@ msgstr "Lataa" msgid "Unshare" msgstr "Peru jakaminen" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Poista" + #: templates/index.php:105 msgid "Upload too large" msgstr "Lähetettävä tiedosto on liian suuri" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 654d307c87..717af8af88 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:01+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -52,21 +52,17 @@ msgstr "Nimi" msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 kansio" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n kansio" +msgstr[1] "%n kansiota" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} kansiota" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 tiedosto" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} tiedostoa" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n tiedosto" +msgstr[1] "%n tiedostoa" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index ba476ca2d4..c6d87b9c59 100644 --- a/l10n/fi_FI/lib.po +++ b/l10n/fi_FI/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:10+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Käyttäjät" #: app.php:409 -msgid "Apps" -msgstr "Sovellukset" - -#: app.php:417 msgid "Admin" msgstr "Ylläpitäjä" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,56 +207,52 @@ msgid "seconds ago" msgstr "sekuntia sitten" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuutti sitten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n minuutti sitten" +msgstr[1] "%n minuuttia sitten" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuuttia sitten" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n tunti sitten" +msgstr[1] "%n tuntia sitten" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 tunti sitten" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d tuntia sitten" - -#: template/functions.php:85 msgid "today" msgstr "tänään" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "eilen" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d päivää sitten" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "%n päivä sitten" +msgstr[1] "%n päivää sitten" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "viime kuussa" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d kuukautta sitten" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n kuukausi sitten" +msgstr[1] "%n kuukautta sitten" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "viime vuonna" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "vuotta sitten" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Aiheuttaja:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/fr/core.po b/l10n/fr/core.po index cc9facab28..8246c9644d 100644 --- a/l10n/fr/core.po +++ b/l10n/fr/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -142,59 +142,59 @@ msgstr "novembre" msgid "December" msgstr "décembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Paramètres" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "il y a une minute" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "il y a {minutes} minutes" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Il y a une heure" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Il y a {hours} heures" - -#: js/js.js:819 msgid "today" msgstr "aujourd'hui" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "hier" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "il y a {days} jours" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "le mois dernier" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Il y a {months} mois" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "l'année dernière" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "il y a plusieurs années" @@ -382,9 +382,10 @@ msgstr "La mise à jour a échoué. Veuillez signaler ce problème à la \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -123,15 +123,11 @@ msgstr "Partager" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Supprimer" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renommer" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "En attente" @@ -159,15 +155,13 @@ msgstr "{new_name} a été remplacé par {old_name}" msgid "undo" msgstr "annuler" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "effectuer l'opération de suppression" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fichier en cours d'envoi" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "fichiers en cours d'envoi" @@ -215,21 +209,17 @@ msgstr "Taille" msgid "Modified" msgstr "Modifié" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dossier" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dossiers" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fichier" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fichiers" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -312,6 +302,10 @@ msgstr "Télécharger" msgid "Unshare" msgstr "Ne plus partager" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Supprimer" + #: templates/index.php:105 msgid "Upload too large" msgstr "Téléversement trop volumineux" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index d5d08005c6..464c518b8a 100644 --- a/l10n/fr/files_trashbin.po +++ b/l10n/fr/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Nom" msgid "Deleted" msgstr "Effacé" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dossier" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dossiers" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fichier" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fichiers" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index a16420a728..0658f16d43 100644 --- a/l10n/fr/lib.po +++ b/l10n/fr/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Utilisateurs" #: app.php:409 -msgid "Apps" -msgstr "Applications" - -#: app.php:417 msgid "Admin" msgstr "Administration" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "il y a quelques secondes" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "il y a une minute" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "il y a %d minutes" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Il y a une heure" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Il y a %d heures" - -#: template/functions.php:85 msgid "today" msgstr "aujourd'hui" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "hier" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "il y a %d jours" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "le mois dernier" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Il y a %d mois" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "l'année dernière" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "il y a plusieurs années" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 44277fdb62..465eb303ab 100644 --- a/l10n/gl/core.po +++ b/l10n/gl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:30+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "novembro" msgid "December" msgstr "decembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Axustes" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "segundos atrás" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "hai %n minuto" +msgstr[1] "hai %n minutos" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "hai %n hora" +msgstr[1] "hai %n horas" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "hai 1 minuto" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "hai {minutes} minutos" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "Vai 1 hora" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "hai {hours} horas" - -#: js/js.js:819 msgid "today" msgstr "hoxe" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "onte" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "hai {days} días" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "hai %n día" +msgstr[1] "hai %n días" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "último mes" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "hai {months} meses" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "hai %n mes" +msgstr[1] "hai %n meses" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "último ano" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "anos atrás" @@ -378,9 +378,10 @@ msgstr "A actualización non foi satisfactoria, informe deste problema á \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Eliminar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendentes" @@ -157,15 +153,13 @@ msgstr "substituír {new_name} por {old_name}" msgid "undo" msgstr "desfacer" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "realizar a operación de eliminación" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "Cargando %n ficheiro" +msgstr[1] "Cargando %n ficheiros" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Enviándose 1 ficheiro" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "ficheiros enviándose" @@ -213,21 +207,17 @@ msgstr "Tamaño" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 cartafol" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n cartafol" +msgstr[1] "%n cartafoles" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} cartafoles" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n ficheiro" +msgstr[1] "%n ficheiros" #: lib/app.php:73 #, php-format @@ -310,6 +300,10 @@ msgstr "Descargar" msgid "Unshare" msgstr "Deixar de compartir" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Eliminar" + #: templates/index.php:105 msgid "Upload too large" msgstr "Envío demasiado grande" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index e939f970b2..1395e13a4f 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 18:50+0000\n" +"Last-Translator: mbouzada \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" @@ -73,7 +73,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de o OpenSSL xunto coa extensión PHP estean activados e configurados correctamente. Polo de agora foi desactivado o aplicativo de cifrado." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index d1f2e6dd95..ad7adc59d7 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:20+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -52,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 cartafol" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n cartafol" +msgstr[1] "%n cartafoles" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} cartafoles" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n ficheiro" +msgstr[1] "%n ficheiros" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index e166c0d1ad..8f5d1c95fa 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: mbouzada \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:30+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuarios" #: app.php:409 -msgid "Apps" -msgstr "Aplicativos" - -#: app.php:417 msgid "Admin" msgstr "Administración" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Non foi posíbel anovar «%s»." @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "segundos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "hai 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "hai %n minuto" +msgstr[1] "hai %n minutos" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "hai %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "hai %n hora" +msgstr[1] "hai %n horas" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Vai 1 hora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Vai %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoxe" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "onte" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "hai %d días" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "hai %n día" +msgstr[1] "hai %n días" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "último mes" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Vai %d meses" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "hai %n mes" +msgstr[1] "hai %n meses" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "último ano" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/he/core.po b/l10n/he/core.po index 2643cd36c6..44845c5b9e 100644 --- a/l10n/he/core.po +++ b/l10n/he/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "נובמבר" msgid "December" msgstr "דצמבר" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "הגדרות" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "שניות" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "לפני דקה אחת" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "לפני {minutes} דקות" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "לפני שעה" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "לפני {hours} שעות" - -#: js/js.js:819 msgid "today" msgstr "היום" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "אתמול" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "לפני {days} ימים" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "חודש שעבר" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "לפני {months} חודשים" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "חודשים" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "שנה שעברה" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "שנים" @@ -378,9 +378,10 @@ msgstr "תהליך העדכון לא הושלם בהצלחה. נא דווח את msgid "The update was successful. Redirecting you to ownCloud now." msgstr "תהליך העדכון הסתיים בהצלחה. עכשיו מנתב אותך אל ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "איפוס הססמה של ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -579,6 +580,10 @@ msgstr "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע msgid "Log out" msgstr "התנתקות" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "בקשת הכניסה האוטומטית נדחתה!" diff --git a/l10n/he/files.po b/l10n/he/files.po index bdb977b587..523cab114d 100644 --- a/l10n/he/files.po +++ b/l10n/he/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "שתף" msgid "Delete permanently" msgstr "מחק לצמיתות" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "מחיקה" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "שינוי שם" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "ממתין" @@ -157,15 +153,13 @@ msgstr "{new_name} הוחלף ב־{old_name}" msgid "undo" msgstr "ביטול" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "ביצוע פעולת מחיקה" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "קובץ אחד נשלח" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "קבצים בהעלאה" @@ -213,21 +207,17 @@ msgstr "גודל" msgid "Modified" msgstr "זמן שינוי" -#: js/files.js:763 -msgid "1 folder" -msgstr "תיקייה אחת" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} תיקיות" - -#: js/files.js:773 -msgid "1 file" -msgstr "קובץ אחד" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} קבצים" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -310,6 +300,10 @@ msgstr "הורדה" msgid "Unshare" msgstr "הסר שיתוף" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "מחיקה" + #: templates/index.php:105 msgid "Upload too large" msgstr "העלאה גדולה מידי" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 80c6181d83..b938a87bca 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -52,21 +52,17 @@ msgstr "שם" msgid "Deleted" msgstr "נמחק" -#: js/trash.js:192 -msgid "1 folder" -msgstr "תיקייה אחת" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} תיקיות" - -#: js/trash.js:202 -msgid "1 file" -msgstr "קובץ אחד" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} קבצים" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index 3596f6929c..a529727243 100644 --- a/l10n/he/lib.po +++ b/l10n/he/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "משתמשים" #: app.php:409 -msgid "Apps" -msgstr "יישומים" - -#: app.php:417 msgid "Admin" msgstr "מנהל" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "שניות" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "לפני דקה אחת" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "לפני %d דקות" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "לפני שעה" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "לפני %d שעות" - -#: template/functions.php:85 msgid "today" msgstr "היום" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "אתמול" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "לפני %d ימים" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "חודש שעבר" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "לפני %d חודשים" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "שנה שעברה" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "שנים" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index 55e08635f2..b9bb38c3e7 100644 --- a/l10n/hi/core.po +++ b/l10n/hi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "नवंबर" msgid "December" msgstr "दिसम्बर" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "सेटिंग्स" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -378,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -579,6 +580,10 @@ msgstr "" msgid "Log out" msgstr "लोग आउट" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/hi/files.po b/l10n/hi/files.po index 3530d6c912..e15750a984 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "साझा करें" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index cf42b90f12..6ebcc05414 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 82f9745909..d2b0c7fad2 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "उपयोगकर्ता" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 5354c2149a..521c5d6034 100644 --- a/l10n/hr/core.po +++ b/l10n/hr/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,63 @@ msgstr "Studeni" msgid "December" msgstr "Prosinac" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Postavke" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "danas" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "jučer" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "prošli mjesec" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mjeseci" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "godina" @@ -377,9 +381,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud resetiranje lozinke" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +583,10 @@ msgstr "" msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/hr/files.po b/l10n/hr/files.po index 4ff002b38e..ad1dd62f47 100644 --- a/l10n/hr/files.po +++ b/l10n/hr/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Obriši" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Promjeni ime" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "U tijeku" @@ -156,15 +152,14 @@ msgstr "" msgid "undo" msgstr "vrati" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 datoteka se učitava" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -212,21 +207,19 @@ msgstr "Veličina" msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -309,6 +302,10 @@ msgstr "Preuzimanje" msgid "Unshare" msgstr "Makni djeljenje" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Obriši" + #: templates/index.php:105 msgid "Upload too large" msgstr "Prijenos je preobiman" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 0e918d9686..76a24e0c67 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,19 @@ msgstr "Ime" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index 04da1356f0..c9c913ffa1 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Korisnici" #: app.php:409 -msgid "Apps" -msgstr "Aplikacije" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,50 @@ msgid "seconds ago" msgstr "sekundi prije" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "danas" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "jučer" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "prošli mjesec" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "prošlu godinu" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "godina" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index 56e2927a7c..5348acb3a5 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Beállítások" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 perce" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} perce" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 órája" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} órája" - -#: js/js.js:819 msgid "today" msgstr "ma" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "tegnap" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} napja" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} hónapja" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "több hónapja" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "tavaly" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "több éve" @@ -379,9 +379,10 @@ msgstr "A frissítés nem sikerült. Kérem értesítse erről a problémáról msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A frissítés sikeres volt. Visszairányítjuk az ownCloud szolgáltatáshoz." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud jelszó-visszaállítás" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -580,6 +581,10 @@ msgstr "%s rendelkezésre áll. További információ a frissítéshez." msgid "Log out" msgstr "Kilépés" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Az automatikus bejelentkezés sikertelen!" diff --git a/l10n/hu_HU/files.po b/l10n/hu_HU/files.po index f1b1413105..f3c43820b2 100644 --- a/l10n/hu_HU/files.po +++ b/l10n/hu_HU/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Megosztás" msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Törlés" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Átnevezés" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Folyamatban" @@ -157,15 +153,13 @@ msgstr "{new_name} fájlt kicseréltük ezzel: {old_name}" msgid "undo" msgstr "visszavonás" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "a törlés végrehajtása" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fájl töltődik föl" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "fájl töltődik föl" @@ -213,21 +207,17 @@ msgstr "Méret" msgid "Modified" msgstr "Módosítva" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappa" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappa" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fájl" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fájl" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -310,6 +300,10 @@ msgstr "Letöltés" msgid "Unshare" msgstr "A megosztás visszavonása" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Törlés" + #: templates/index.php:105 msgid "Upload too large" msgstr "A feltöltés túl nagy" diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 3c285437d3..4e5d7207c9 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:30+0000\n" -"Last-Translator: Laszlo Tornoci \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Név" msgid "Deleted" msgstr "Törölve" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappa" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mappa" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fájl" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fájl" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index 40fca00f72..d517cddd32 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: ebela \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Felhasználók" #: app.php:409 -msgid "Apps" -msgstr "Alkalmazások" - -#: app.php:417 msgid "Admin" msgstr "Adminsztráció" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Sikertelen Frissítés \"%s\"." @@ -212,50 +208,46 @@ msgid "seconds ago" msgstr "pár másodperce" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 perce" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d perce" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 órája" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d órája" - -#: template/functions.php:85 msgid "today" msgstr "ma" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "tegnap" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d napja" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "múlt hónapban" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d hónapja" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "tavaly" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "több éve" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index d9387c503c..0b7d7fdbaa 100644 --- a/l10n/hy/core.po +++ b/l10n/hy/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "Նոյեմբեր" msgid "December" msgstr "Դեկտեմբեր" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: 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:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -461,7 +462,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/hy/files.po b/l10n/hy/files.po index 78f3d8894a..43c435dd47 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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Ջնջել" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Բեռնել" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Ջնջել" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index f04b85a189..b1c3d30842 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 40f120e535..a5d0fdb5e6 100644 --- a/l10n/hy/lib.po +++ b/l10n/hy/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 68c2afbe4c..cb317dbb05 100644 --- a/l10n/ia/core.po +++ b/l10n/ia/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configurationes" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Reinitialisation del contrasigno de ownCLoud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "Clauder le session" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ia/files.po b/l10n/ia/files.po index 0a41eed86a..d9fb2c5d01 100644 --- a/l10n/ia/files.po +++ b/l10n/ia/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Deler" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "Dimension" msgid "Modified" msgstr "Modificate" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Discargar" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Deler" + #: templates/index.php:105 msgid "Upload too large" msgstr "Incargamento troppo longe" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index 32466e7c95..0ac362ef50 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Nomine" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 5a15ebc1e9..c60af2f1aa 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Usatores" #: app.php:409 -msgid "Apps" -msgstr "Applicationes" - -#: app.php:417 msgid "Admin" msgstr "Administration" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/id/core.po b/l10n/id/core.po index e610cd15ca..b3db705977 100644 --- a/l10n/id/core.po +++ b/l10n/id/core.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Setelan" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 menit yang lalu" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} menit yang lalu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 jam yang lalu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} jam yang lalu" - -#: js/js.js:819 msgid "today" msgstr "hari ini" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "kemarin" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} hari yang lalu" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} bulan yang lalu" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "beberapa tahun lalu" @@ -377,9 +373,10 @@ msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Bagikan" msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Hapus" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Ubah nama" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Menunggu" @@ -156,15 +152,12 @@ msgstr "mengganti {new_name} dengan {old_name}" msgid "undo" msgstr "urungkan" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Lakukan operasi penghapusan" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 berkas diunggah" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "berkas diunggah" @@ -212,21 +205,15 @@ msgstr "Ukuran" msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} folder" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 berkas" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} berkas" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "Unduh" msgid "Unshare" msgstr "Batalkan berbagi" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Hapus" + #: templates/index.php:105 msgid "Upload too large" msgstr "Yang diunggah terlalu besar" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 81e0acc646..5f5941b22a 100644 --- a/l10n/id/files_trashbin.po +++ b/l10n/id/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "Nama" msgid "Deleted" msgstr "Dihapus" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 folder" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} folder" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 berkas" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} berkas" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 808d582a7d..e1a8dc80a6 100644 --- a/l10n/id/lib.po +++ b/l10n/id/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Pengguna" #: app.php:409 -msgid "Apps" -msgstr "Aplikasi" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "beberapa detik yang lalu" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 menit yang lalu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d menit yang lalu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 jam yang lalu" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d jam yang lalu" - -#: template/functions.php:85 msgid "today" msgstr "hari ini" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "kemarin" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d hari yang lalu" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "bulan kemarin" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d bulan yang lalu" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "tahun kemarin" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "beberapa tahun lalu" diff --git a/l10n/is/core.po b/l10n/is/core.po index cc6af8f2f4..478150b094 100644 --- a/l10n/is/core.po +++ b/l10n/is/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "Nóvember" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Stillingar" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sek." -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Fyrir 1 mínútu" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} min síðan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Fyrir 1 klst." +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "fyrir {hours} klst." - -#: js/js.js:819 msgid "today" msgstr "í dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "í gær" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagar síðan" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "fyrir {months} mánuðum" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "síðasta ári" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "einhverjum árum" @@ -378,9 +378,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Uppfærslan heppnaðist. Beini þér til ownCloud nú." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "endursetja ownCloud lykilorð" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -579,6 +580,10 @@ msgstr "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir." msgid "Log out" msgstr "Útskrá" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Sjálfvirkri innskráningu hafnað!" diff --git a/l10n/is/files.po b/l10n/is/files.po index c29690db97..516265cd8b 100644 --- a/l10n/is/files.po +++ b/l10n/is/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Deila" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Eyða" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Endurskýra" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Bíður" @@ -156,15 +152,13 @@ msgstr "yfirskrifaði {new_name} með {old_name}" msgid "undo" msgstr "afturkalla" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 skrá innsend" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "Stærð" msgid "Modified" msgstr "Breytt" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappa" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} möppur" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 skrá" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} skrár" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Niðurhal" msgid "Unshare" msgstr "Hætta deilingu" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Eyða" + #: templates/index.php:105 msgid "Upload too large" msgstr "Innsend skrá er of stór" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index 814df955bf..c28f1236b6 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Nafn" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappa" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} möppur" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 skrá" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} skrár" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index 32295e15e8..5926c37fa9 100644 --- a/l10n/is/lib.po +++ b/l10n/is/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Notendur" #: app.php:409 -msgid "Apps" -msgstr "Forrit" - -#: app.php:417 msgid "Admin" msgstr "Stjórnun" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "sek." #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Fyrir 1 mínútu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "fyrir %d mínútum" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Fyrir 1 klst." - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "fyrir %d klst." - -#: template/functions.php:85 msgid "today" msgstr "í dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "í gær" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "fyrir %d dögum" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "síðasta mánuði" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "fyrir %d mánuðum" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "síðasta ári" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "einhverjum árum" diff --git a/l10n/it/core.po b/l10n/it/core.po index b9a49a7b18..84687acd09 100644 --- a/l10n/it/core.po +++ b/l10n/it/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -140,59 +140,59 @@ msgstr "Novembre" msgid "December" msgstr "Dicembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Un minuto fa" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuti fa" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ora fa" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ore fa" - -#: js/js.js:819 msgid "today" msgstr "oggi" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ieri" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} giorni fa" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "mese scorso" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} mesi fa" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mesi fa" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "anno scorso" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anni fa" @@ -380,9 +380,10 @@ msgstr "L'aggiornamento non è riuscito. Segnala il problema alla \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Condividi" msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Elimina" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Rinomina" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "In corso" @@ -158,15 +154,13 @@ msgstr "sostituito {new_name} con {old_name}" msgid "undo" msgstr "annulla" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "esegui l'operazione di eliminazione" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 file in fase di caricamento" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "caricamento file" @@ -214,21 +208,17 @@ msgstr "Dimensione" msgid "Modified" msgstr "Modificato" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 cartella" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} cartelle" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 file" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} file" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Scarica" msgid "Unshare" msgstr "Rimuovi condivisione" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Elimina" + #: templates/index.php:105 msgid "Upload too large" msgstr "Caricamento troppo grande" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index cc862c79a1..390dd69d83 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 07:20+0000\n" +"Last-Translator: Vincenzo Reale \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -73,7 +73,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Assicurati che sia installato PHP 5.3.3 o versioni successive e che l'estensione OpenSSL di PHP sia abilitata e configurata correttamente. Per ora, l'applicazione di cifratura è disabilitata." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index 0d65d206ef..188d8e7e9c 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 cartella" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} cartelle" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 file" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} file" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index ef7fe07c14..506821d1d7 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: Vincenzo Reale \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Utenti" #: app.php:409 -msgid "Apps" -msgstr "Applicazioni" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Aggiornamento non riuscito \"%s\"." @@ -212,50 +208,46 @@ msgid "seconds ago" msgstr "secondi fa" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Un minuto fa" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuti fa" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ora fa" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ore fa" - -#: template/functions.php:85 msgid "today" msgstr "oggi" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ieri" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d giorni fa" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mese scorso" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d mesi fa" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "anno scorso" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anni fa" diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 9833951b0c..07c9dd2169 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -140,59 +140,55 @@ msgstr "11月" msgid "December" msgstr "12月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "設定" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "数秒前" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 分前" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 時間前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} 時間前" - -#: js/js.js:819 msgid "today" msgstr "今日" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨日" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 日前" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "一月前" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} 月前" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "月前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "一年前" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "年前" @@ -380,9 +376,10 @@ msgstr "更新に成功しました。この問題を \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -124,15 +124,11 @@ msgstr "共有" msgid "Delete permanently" msgstr "完全に削除する" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "削除" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "名前の変更" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "中断" @@ -160,15 +156,12 @@ msgstr "{old_name} を {new_name} に置換" msgid "undo" msgstr "元に戻す" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "削除を実行" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "ファイルを1つアップロード中" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -216,21 +209,15 @@ msgstr "サイズ" msgid "Modified" msgstr "変更" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 フォルダ" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n個のフォルダ" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} フォルダ" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ファイル" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ファイル" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n個のファイル" #: lib/app.php:73 #, php-format @@ -313,6 +300,10 @@ msgstr "ダウンロード" msgid "Unshare" msgstr "共有解除" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "削除" + #: templates/index.php:105 msgid "Upload too large" msgstr "アップロードには大きすぎます。" diff --git a/l10n/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 4e95658778..669ed7fa41 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-10 01:40+0000\n" +"Last-Translator: tt yn \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" @@ -73,7 +73,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index de488024e0..a52a506736 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# plazmism , 2013 # tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:50+0000\n" +"Last-Translator: plazmism \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" @@ -52,21 +53,15 @@ msgstr "名前" msgid "Deleted" msgstr "削除済み" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 フォルダ" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n個のフォルダ" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} フォルダ" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ファイル" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ファイル" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n個のファイル" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index 7291b237c9..b037427159 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/lib.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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 09:37+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "ユーザ" #: app.php:409 -msgid "Apps" -msgstr "アプリ" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "\"%s\" へのアップグレードに失敗しました。" @@ -211,50 +207,42 @@ msgid "seconds ago" msgstr "数秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 分前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 時間前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d 時間前" - -#: template/functions.php:85 msgid "today" msgstr "今日" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨日" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 日前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "一月前" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d 分前" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "一年前" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "年前" diff --git a/l10n/ja_JP/user_ldap.po b/l10n/ja_JP/user_ldap.po index 40aad3dd56..294bcdd8cc 100644 --- a/l10n/ja_JP/user_ldap.po +++ b/l10n/ja_JP/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" -"Last-Translator: tt yn \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 04:30+0000\n" +"Last-Translator: Daisuke Deguchi \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -247,7 +247,7 @@ msgstr "SSL証明書の確認を無効にする。" msgid "" "If connection only works with this option, import the LDAP server's SSL " "certificate in your %s server." -msgstr "" +msgstr "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書を %s サーバにインポートしてください。" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -271,7 +271,7 @@ msgstr "ユーザ表示名のフィールド" #: templates/settings.php:83 msgid "The LDAP attribute to use to generate the user's display name." -msgstr "" +msgstr "ユーザの表示名の生成に利用するLDAP属性" #: templates/settings.php:84 msgid "Base User Tree" @@ -295,7 +295,7 @@ msgstr "グループ表示名のフィールド" #: templates/settings.php:86 msgid "The LDAP attribute to use to generate the groups's display name." -msgstr "" +msgstr "ユーザのグループ表示名の生成に利用するLDAP属性" #: templates/settings.php:87 msgid "Base Group Tree" @@ -361,7 +361,7 @@ msgid "" "behavior as before ownCloud 5 enter the user display name attribute in the " "following field. Leave it empty for default behavior. Changes will have " "effect only on newly mapped (added) LDAP users." -msgstr "" +msgstr "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -380,7 +380,7 @@ msgid "" "You must make sure that the attribute of your choice can be fetched for both" " users and groups and it is unique. Leave it empty for default behavior. " "Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" +msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -402,7 +402,7 @@ msgid "" " is not configuration sensitive, it affects all LDAP configurations! Never " "clear the mappings in a production environment, only in a testing or " "experimental stage." -msgstr "" +msgstr "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index a6e96b91fe..a553cde32b 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:815 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:754 -msgid "1 minute ago" -msgstr "1 წუთის წინ" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:755 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:756 -msgid "1 hour ago" -msgstr "1 საათის წინ" - -#: js/js.js:757 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:758 +#: js/js.js:818 msgid "today" msgstr "დღეს" -#: js/js.js:759 +#: js/js.js:819 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:760 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:761 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:762 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:763 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ka/files.po b/l10n/ka/files.po index bae4e7aefa..00dc4cd081 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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +205,15 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "გადმოწერა" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index 90098bc62c..36d83d1478 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 9c181af82e..32eb5dd2cd 100644 --- a/l10n/ka/lib.po +++ b/l10n/ka/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "მომხმარებლები" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "წამის წინ" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d წუთის წინ" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 საათის წინ" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "დღეს" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "გუშინ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d დღის წინ" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index ad8ac29253..1da987a21e 100644 --- a/l10n/ka_GE/core.po +++ b/l10n/ka_GE/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "ნოემბერი" msgid "December" msgstr "დეკემბერი" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "პარამეტრები" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 წუთის წინ" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} წუთის წინ" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 საათის წინ" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} საათის წინ" - -#: js/js.js:819 msgid "today" msgstr "დღეს" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} დღის წინ" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "გასულ თვეში" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} თვის წინ" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "თვის წინ" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ბოლო წელს" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "წლის წინ" @@ -377,9 +373,10 @@ msgstr "განახლება ვერ განხორციელდ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "განახლება ვერ განხორციელდა. გადამისამართება თქვენს ownCloud–ზე." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud პაროლის შეცვლა" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "გამოსვლა" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ავტომატური შესვლა უარყოფილია!" diff --git a/l10n/ka_GE/files.po b/l10n/ka_GE/files.po index 1225213814..81c8680710 100644 --- a/l10n/ka_GE/files.po +++ b/l10n/ka_GE/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "გაზიარება" msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "წაშლა" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "გადარქმევა" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "მოცდის რეჟიმში" @@ -156,15 +152,12 @@ msgstr "{new_name} შეცვლილია {old_name}–ით" msgid "undo" msgstr "დაბრუნება" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "მიმდინარეობს წაშლის ოპერაცია" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ფაილის ატვირთვა" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "ფაილები იტვირთება" @@ -212,21 +205,15 @@ msgstr "ზომა" msgid "Modified" msgstr "შეცვლილია" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 საქაღალდე" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} საქაღალდე" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ფაილი" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ფაილი" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "ჩამოტვირთვა" msgid "Unshare" msgstr "გაუზიარებადი" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "წაშლა" + #: templates/index.php:105 msgid "Upload too large" msgstr "ასატვირთი ფაილი ძალიან დიდია" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index e41aedc0bc..b41813f0a6 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "სახელი" msgid "Deleted" msgstr "წაშლილი" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 საქაღალდე" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} საქაღალდე" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ფაილი" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ფაილი" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index cbc529f589..9546faa340 100644 --- a/l10n/ka_GE/lib.po +++ b/l10n/ka_GE/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "მომხმარებელი" #: app.php:409 -msgid "Apps" -msgstr "აპლიკაციები" - -#: app.php:417 msgid "Admin" msgstr "ადმინისტრატორი" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "წამის წინ" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 წუთის წინ" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d წუთის წინ" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 საათის წინ" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d საათის წინ" - -#: template/functions.php:85 msgid "today" msgstr "დღეს" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "გუშინ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d დღის წინ" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "გასულ თვეში" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d თვის წინ" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ბოლო წელს" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "წლის წინ" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index fe73859444..a6e47dc7ed 100644 --- a/l10n/kn/core.po +++ b/l10n/kn/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-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,7 +222,7 @@ msgstr "" #: 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:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +242,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +342,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -461,7 +458,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/kn/files.po b/l10n/kn/files.po index 83638dc16f..5bee995f8d 100644 --- a/l10n/kn/files.po +++ b/l10n/kn/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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" @@ -156,15 +152,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +193,27 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -285,45 +272,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 0f12a8c380..4a8a4c3ae7 100644 --- a/l10n/kn/files_trashbin.po +++ b/l10n/kn/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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 9b637e4cf9..6e1f85cdd1 100644 --- a/l10n/kn/lib.po +++ b/l10n/kn/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index bce48a1497..f8be8d34af 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "설정" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "초 전" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1분 전" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes}분 전" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1시간 전" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours}시간 전" - -#: js/js.js:819 msgid "today" msgstr "오늘" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "어제" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days}일 전" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "지난 달" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months}개월 전" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "개월 전" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "작년" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "년 전" @@ -379,9 +375,10 @@ msgstr "업데이트가 실패하였습니다. 이 문제를 \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "공유" msgid "Delete permanently" msgstr "영원히 삭제" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "삭제" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "이름 바꾸기" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "대기 중" @@ -158,15 +154,12 @@ msgstr "{old_name}이(가) {new_name}(으)로 대체됨" msgid "undo" msgstr "되돌리기" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "삭제 작업중" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "파일 1개 업로드 중" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "파일 업로드중" @@ -214,21 +207,15 @@ msgstr "크기" msgid "Modified" msgstr "수정됨" -#: js/files.js:763 -msgid "1 folder" -msgstr "폴더 1개" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "폴더 {count}개" - -#: js/files.js:773 -msgid "1 file" -msgstr "파일 1개" - -#: js/files.js:775 -msgid "{count} files" -msgstr "파일 {count}개" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -311,6 +298,10 @@ msgstr "다운로드" msgid "Unshare" msgstr "공유 해제" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "삭제" + #: templates/index.php:105 msgid "Upload too large" msgstr "업로드한 파일이 너무 큼" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 3588a2c90b..3e48f534a1 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "이름" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "폴더 1개" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "폴더 {count}개" - -#: js/trash.js:202 -msgid "1 file" -msgstr "파일 1개" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "파일 {count}개" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index a603bde297..7b58ff4c09 100644 --- a/l10n/ko/lib.po +++ b/l10n/ko/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "사용자" #: app.php:409 -msgid "Apps" -msgstr "앱" - -#: app.php:417 msgid "Admin" msgstr "관리자" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,42 @@ msgid "seconds ago" msgstr "초 전" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1분 전" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d분 전" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1시간 전" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d시간 전" - -#: template/functions.php:85 msgid "today" msgstr "오늘" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "어제" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d일 전" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "지난 달" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d개월 전" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "작년" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "년 전" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 1e7f34752e..bb8c2a9f71 100644 --- a/l10n/ku_IQ/core.po +++ b/l10n/ku_IQ/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "ده‌ستكاری" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "چوونەدەرەوە" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ku_IQ/files.po b/l10n/ku_IQ/files.po index 571c319066..b293758910 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "داگرتن" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 214868ccf4..1addb81ba4 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "ناو" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 84017f953c..4ae5859b98 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "به‌كارهێنه‌ر" #: app.php:409 -msgid "Apps" -msgstr "به‌رنامه‌كان" - -#: app.php:417 msgid "Admin" msgstr "به‌ڕێوه‌به‌ری سه‌ره‌كی" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/l10n.pl b/l10n/l10n.pl index 2790ca9201..851be8f7cc 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -159,7 +159,7 @@ elsif( $task eq 'write' ){ push( @variants, $string->msgstr_n()->{$variant} ); } - push( @strings, "\"$identifier\" => array(".join(@variants, ",").")"); + push( @strings, "\"$identifier\" => array(".join(",", @variants).")"); } else{ # singular translations diff --git a/l10n/lb/core.po b/l10n/lb/core.po index 17b0206087..8af84cd24e 100644 --- a/l10n/lb/core.po +++ b/l10n/lb/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Astellungen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 Minutt hir" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "virun {minutes} Minutten" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "virun 1 Stonn" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "virun {hours} Stonnen" - -#: js/js.js:819 msgid "today" msgstr "haut" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "gëschter" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "virun {days} Deeg" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "leschte Mount" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "virun {months} Méint" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "Méint hir" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "Joren hir" @@ -378,9 +378,10 @@ msgstr "Den Update war net erfollegräich. Mell dëse Problem w.e.gl der\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Deelen" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Läschen" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "réckgängeg man" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "Gréisst" msgid "Modified" msgstr "Geännert" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Download" msgid "Unshare" msgstr "Net méi deelen" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Läschen" + #: templates/index.php:105 msgid "Upload too large" msgstr "Upload ze grouss" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 6fe10d536f..6e89845dc2 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Numm" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index ede1c573d7..1e270aee7a 100644 --- a/l10n/lb/lib.po +++ b/l10n/lb/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Benotzer" #: app.php:409 -msgid "Apps" -msgstr "Applikatiounen" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "Sekonnen hir" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 Minutt hir" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "vrun 1 Stonn" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "haut" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "gëschter" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "Läschte Mount" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "Läscht Joer" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "Joren hier" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index c4af4073b1..40770b80fd 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,63 @@ msgstr "Lapkritis" msgid "December" msgstr "Gruodis" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Prieš 1 minutę" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "Prieš {count} minutes" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "prieš 1 valandą" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "prieš {hours} valandas" - -#: js/js.js:819 msgid "today" msgstr "šiandien" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "vakar" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "Prieš {days} dienas" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "prieš {months} mėnesių" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "praeitais metais" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "prieš metus" @@ -379,9 +383,10 @@ msgstr "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Dalintis" msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Ištrinti" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Pervadinti" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Laukiantis" @@ -157,15 +153,14 @@ msgstr "pakeiskite {new_name} į {old_name}" msgid "undo" msgstr "anuliuoti" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "ištrinti" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "įkeliamas 1 failas" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "įkeliami failai" @@ -213,21 +208,19 @@ msgstr "Dydis" msgid "Modified" msgstr "Pakeista" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 aplankalas" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} aplankalai" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 failas" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} failai" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -310,6 +303,10 @@ msgstr "Atsisiųsti" msgid "Unshare" msgstr "Nebesidalinti" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Ištrinti" + #: templates/index.php:105 msgid "Upload too large" msgstr "Įkėlimui failas per didelis" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index 65bd9c97b1..febfc2f1b0 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -52,21 +52,19 @@ msgstr "Pavadinimas" msgid "Deleted" msgstr "Ištrinti" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 aplankalas" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} aplankalai" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 failas" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} failai" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index a3da13549d..14bb5eb634 100644 --- a/l10n/lt_LT/lib.po +++ b/l10n/lt_LT/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Vartotojai" #: app.php:409 -msgid "Apps" -msgstr "Programos" - -#: app.php:417 msgid "Admin" msgstr "Administravimas" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,50 @@ msgid "seconds ago" msgstr "prieš sekundę" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Prieš 1 minutę" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "prieš %d minučių" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "prieš 1 valandą" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "prieš %d valandų" - -#: template/functions.php:85 msgid "today" msgstr "šiandien" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "vakar" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "prieš %d dienų" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "praeitą mėnesį" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "prieš %d mėnesių" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "praeitais metais" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "prieš metus" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index fc072311c2..c4920a2fa3 100644 --- a/l10n/lv/core.po +++ b/l10n/lv/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,63 @@ msgstr "Novembris" msgid "December" msgstr "Decembris" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "pirms 1 minūtes" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "pirms {minutes} minūtēm" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "pirms 1 stundas" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "pirms {hours} stundām" - -#: js/js.js:819 msgid "today" msgstr "šodien" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "vakar" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "pirms {days} dienām" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "pirms {months} mēnešiem" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "gadus atpakaļ" @@ -377,9 +381,10 @@ msgstr "Atjaunināšana beidzās nesekmīgi. Lūdzu, ziņojiet par šo problēmu msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Atjaunināšana beidzās sekmīgi. Tagad pārsūta jūs uz ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud paroles maiņa" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +583,10 @@ msgstr "" msgid "Log out" msgstr "Izrakstīties" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automātiskā ierakstīšanās ir noraidīta!" diff --git a/l10n/lv/files.po b/l10n/lv/files.po index 1fa692dd98..bc8feee326 100644 --- a/l10n/lv/files.po +++ b/l10n/lv/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Dalīties" msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Dzēst" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Pārsaukt" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Gaida savu kārtu" @@ -156,15 +152,14 @@ msgstr "aizvietoja {new_name} ar {old_name}" msgid "undo" msgstr "atsaukt" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "veikt dzēšanas darbību" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Augšupielādē 1 datni" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +207,19 @@ msgstr "Izmērs" msgid "Modified" msgstr "Mainīts" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mape" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapes" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 datne" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} datnes" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -309,6 +302,10 @@ msgstr "Lejupielādēt" msgid "Unshare" msgstr "Pārtraukt dalīšanos" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Dzēst" + #: templates/index.php:105 msgid "Upload too large" msgstr "Datne ir par lielu, lai to augšupielādētu" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index b6e95e0a2c..0bee8becab 100644 --- a/l10n/lv/files_trashbin.po +++ b/l10n/lv/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,19 @@ msgstr "Nosaukums" msgid "Deleted" msgstr "Dzēsts" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mape" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapes" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 datne" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} datnes" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index 276da094bc..94dcd5afe0 100644 --- a/l10n/lv/lib.po +++ b/l10n/lv/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Lietotāji" #: app.php:409 -msgid "Apps" -msgstr "Lietotnes" - -#: app.php:417 msgid "Admin" msgstr "Administratori" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,50 @@ msgid "seconds ago" msgstr "sekundes atpakaļ" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "pirms 1 minūtes" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "pirms %d minūtēm" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "pirms 1 stundas" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "pirms %d stundām" - -#: template/functions.php:85 msgid "today" msgstr "šodien" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "vakar" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "pirms %d dienām" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "pagājušajā mēnesī" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "pirms %d mēnešiem" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "gājušajā gadā" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "gadus atpakaļ" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index 7964654529..b99d5913b4 100644 --- a/l10n/mk/core.po +++ b/l10n/mk/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "Ноември" msgid "December" msgstr "Декември" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Подесувања" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "пред секунди" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "пред 1 минута" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "пред {minutes} минути" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "пред 1 час" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "пред {hours} часови" - -#: js/js.js:819 msgid "today" msgstr "денеска" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчера" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "пред {days} денови" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "минатиот месец" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "пред {months} месеци" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "пред месеци" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "минатата година" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "пред години" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ресетирање на лозинка за ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "Одјава" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Одбиена автоматска најава!" diff --git a/l10n/mk/files.po b/l10n/mk/files.po index 8d0f82ab97..7273af472e 100644 --- a/l10n/mk/files.po +++ b/l10n/mk/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Сподели" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Избриши" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Преименувај" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Чека" @@ -156,15 +152,13 @@ msgstr "заменета {new_name} со {old_name}" msgid "undo" msgstr "врати" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 датотека се подига" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "Големина" msgid "Modified" msgstr "Променето" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 датотека" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} датотеки" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Преземи" msgid "Unshare" msgstr "Не споделувај" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Избриши" + #: templates/index.php:105 msgid "Upload too large" msgstr "Фајлот кој се вчитува е преголем" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 9c165cf040..b92b21c1c4 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Име" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папки" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 датотека" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} датотеки" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index d874bda2e5..a8128ea681 100644 --- a/l10n/mk/lib.po +++ b/l10n/mk/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Корисници" #: app.php:409 -msgid "Apps" -msgstr "Аппликации" - -#: app.php:417 msgid "Admin" msgstr "Админ" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "пред секунди" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "пред 1 минута" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "пред %d минути" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "пред 1 час" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "пред %d часови" - -#: template/functions.php:85 msgid "today" msgstr "денеска" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчера" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "пред %d денови" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "минатиот месец" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "пред %d месеци" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "минатата година" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "пред години" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 1beda2b844..9cf341368a 100644 --- a/l10n/ml_IN/core.po +++ b/l10n/ml_IN/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-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: 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:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -461,7 +462,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ml_IN/files.po b/l10n/ml_IN/files.po index 056f4c8f4b..6152a6603b 100644 --- a/l10n/ml_IN/files.po +++ b/l10n/ml_IN/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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +194,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +275,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po index 56f3b0e82b..42c24ca642 100644 --- a/l10n/ml_IN/files_trashbin.po +++ b/l10n/ml_IN/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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 8590f74b67..8da360f24d 100644 --- a/l10n/ml_IN/lib.po +++ b/l10n/ml_IN/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index 6d08651f9e..1214253362 100644 --- a/l10n/ms_MY/core.po +++ b/l10n/ms_MY/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "November" msgid "December" msgstr "Disember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Tetapan" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,9 +373,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Set semula kata lalaun ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "Log keluar" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ms_MY/files.po b/l10n/ms_MY/files.po index 57d517951b..4ac055f2b8 100644 --- a/l10n/ms_MY/files.po +++ b/l10n/ms_MY/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Kongsi" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Padam" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Dalam proses" @@ -156,15 +152,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +205,15 @@ msgstr "Saiz" msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "Muat turun" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Padam" + #: templates/index.php:105 msgid "Upload too large" msgstr "Muatnaik terlalu besar" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index b083fa30d7..cb56fbd774 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "Nama" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index 1c115a0327..529c2d9612 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Pengguna" #: app.php:409 -msgid "Apps" -msgstr "Aplikasi" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 511c253152..29ad3b362d 100644 --- a/l10n/my_MM/core.po +++ b/l10n/my_MM/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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "နိုဝင်ဘာ" msgid "December" msgstr "ဒီဇင်ဘာ" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:753 +#: js/js.js:815 msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" -#: js/js.js:754 -msgid "1 minute ago" -msgstr "၁ မိနစ်အရင်က" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:755 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:756 -msgid "1 hour ago" -msgstr "၁ နာရီ အရင်က" - -#: js/js.js:757 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:758 +#: js/js.js:818 msgid "today" msgstr "ယနေ့" -#: js/js.js:759 +#: js/js.js:819 msgid "yesterday" msgstr "မနေ့က" -#: js/js.js:760 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:761 +#: js/js.js:821 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: js/js.js:762 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:763 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:824 msgid "last year" msgstr "မနှစ်က" -#: js/js.js:765 +#: js/js.js:825 msgid "years ago" msgstr "နှစ် အရင်က" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/my_MM/files.po b/l10n/my_MM/files.po index 19a7af920e..e13e42e4de 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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +205,15 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "ဒေါင်းလုတ်" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 5b874f2174..0611fe45b5 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 2dc174649a..bac9d830bf 100644 --- a/l10n/my_MM/lib.po +++ b/l10n/my_MM/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "သုံးစွဲသူ" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "အက်ဒမင်" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "စက္ကန့်အနည်းငယ်က" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "၁ မိနစ်အရင်က" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d မိနစ်အရင်က" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "၁ နာရီ အရင်က" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d နာရီအရင်က" - -#: template/functions.php:85 msgid "today" msgstr "ယနေ့" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "မနေ့က" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ရက် အရင်က" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ပြီးခဲ့သောလ" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d လအရင်က" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "မနှစ်က" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "နှစ် အရင်က" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index f14bb06038..0201469d37 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutt siden" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutter siden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 time siden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timer siden" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dager siden" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "forrige måned" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} måneder siden" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "måneder siden" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "forrige år" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "år siden" @@ -378,9 +378,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Tilbakestill ownCloud passord" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -579,6 +580,10 @@ msgstr "" msgid "Log out" msgstr "Logg ut" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk pålogging avvist!" diff --git a/l10n/nb_NO/files.po b/l10n/nb_NO/files.po index df1d934aed..bc5dd59d24 100644 --- a/l10n/nb_NO/files.po +++ b/l10n/nb_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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Slett" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Omdøp" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ventende" @@ -158,15 +154,13 @@ msgstr "erstatt {new_name} med {old_name}" msgid "undo" msgstr "angre" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "utfør sletting" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fil lastes opp" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "filer lastes opp" @@ -214,21 +208,17 @@ msgstr "Størrelse" msgid "Modified" msgstr "Endret" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Last ned" msgid "Unshare" msgstr "Avslutt deling" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Slett" + #: templates/index.php:105 msgid "Upload too large" msgstr "Filen er for stor" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index f7b3957358..72e2ce3e7b 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -52,21 +52,17 @@ msgstr "Navn" msgid "Deleted" msgstr "Slettet" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappe" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 9ddd3f5c57..5e2ffdb8ff 100644 --- a/l10n/nb_NO/lib.po +++ b/l10n/nb_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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Brukere" #: app.php:409 -msgid "Apps" -msgstr "Apper" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "sekunder siden" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutt siden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutter siden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 time siden" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d timer siden" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dager siden" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "forrige måned" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d måneder siden" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "forrige år" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år siden" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index 34bd08ae62..d20e5a3d3a 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-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: 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:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -461,7 +462,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ne/files.po b/l10n/ne/files.po index 26e7154708..306604617a 100644 --- a/l10n/ne/files.po +++ b/l10n/ne/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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +194,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +275,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index 5b7a422b1f..06099b3a41 100644 --- a/l10n/ne/files_trashbin.po +++ b/l10n/ne/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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 5445c8e816..4fcfd8bc3e 100644 --- a/l10n/ne/lib.po +++ b/l10n/ne/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 99be9d2691..0502d44098 100644 --- a/l10n/nl/core.po +++ b/l10n/nl/core.po @@ -4,13 +4,14 @@ # # Translators: # André Koot , 2013 +# kwillems , 2013 # Jorcee , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -139,59 +140,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Instellingen" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuut geleden" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuten geleden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 uur geleden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} uren geleden" - -#: js/js.js:819 msgid "today" msgstr "vandaag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "gisteren" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagen geleden" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "vorige maand" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} maanden geleden" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "vorig jaar" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "jaar geleden" @@ -379,9 +380,10 @@ msgstr "De update is niet geslaagd. Meld dit probleem aan bij de documentation." -msgstr "" +msgstr "Bekijk de documentatie voor Informatie over het correct configureren van uw server." #: templates/installation.php:47 msgid "Create an admin account" @@ -580,6 +582,10 @@ msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." msgid "Log out" msgstr "Afmelden" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Meer applicaties" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatische aanmelding geweigerd!" diff --git a/l10n/nl/files.po b/l10n/nl/files.po index 80c72b3ce1..59bcbd7a4f 100644 --- a/l10n/nl/files.po +++ b/l10n/nl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Delen" msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Verwijder" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Hernoem" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "In behandeling" @@ -157,15 +153,13 @@ msgstr "verving {new_name} met {old_name}" msgid "undo" msgstr "ongedaan maken" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "uitvoeren verwijderactie" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 bestand wordt ge-upload" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "bestanden aan het uploaden" @@ -213,21 +207,17 @@ msgstr "Grootte" msgid "Modified" msgstr "Aangepast" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 map" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappen" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 bestand" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} bestanden" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -310,6 +300,10 @@ msgstr "Downloaden" msgid "Unshare" msgstr "Stop met delen" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Verwijder" + #: templates/index.php:105 msgid "Upload too large" msgstr "Upload is te groot" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index 21aadb194f..67a24bf1ac 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:40+0000\n" +"Last-Translator: Len \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" @@ -72,11 +72,11 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Wees er zeker van dat PHP5.3.3 of nieuwer is geïstalleerd en dat de OpenSSL PHP extensie is ingeschakeld en correct geconfigureerd. De versleutel-app is voorlopig uitgeschakeld." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "De volgende gebruikers hebben geen configuratie voor encryptie:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/nl/files_sharing.po b/l10n/nl/files_sharing.po index e0c421cf23..cf2ebc5ccc 100644 --- a/l10n/nl/files_sharing.po +++ b/l10n/nl/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # André Koot , 2013 +# Len , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:20+0000\n" +"Last-Translator: Len \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" @@ -32,27 +33,27 @@ msgstr "Verzenden" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "Sorry, deze link lijkt niet meer in gebruik te zijn." #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "Redenen kunnen zijn:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "bestand was verwijderd" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "de link is verlopen" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "delen is uitgeschakeld" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd." #: templates/public.php:15 #, php-format diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 1ec33cc8a5..9227cb640a 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Naam" msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 map" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mappen" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 bestand" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} bestanden" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index cdb43a7072..833787fb04 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: Len \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Gebruikers" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Beheerder" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Upgrade \"%s\" mislukt." @@ -212,50 +208,46 @@ msgid "seconds ago" msgstr "seconden geleden" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuut geleden" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuten geleden" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 uur geleden" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d uren geleden" - -#: template/functions.php:85 msgid "today" msgstr "vandaag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "gisteren" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dagen geleden" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "vorige maand" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d maanden geleden" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "vorig jaar" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "jaar geleden" diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index afacadbe8a..f2b74b11fb 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:30+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -198,7 +198,7 @@ msgstr "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omda #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Conntroleer de installatie handleiding goed." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -247,11 +247,11 @@ msgstr "Bij laden van elke pagina één taak uitvoeren" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen." #: templates/admin.php:128 msgid "Sharing" @@ -280,7 +280,7 @@ msgstr "Sta publieke uploads toe" #: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden" #: templates/admin.php:160 msgid "Allow resharing" @@ -309,14 +309,14 @@ msgstr "Afdwingen HTTPS" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s via HTTPS to enable or disable the SSL " "enforcement." -msgstr "" +msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." #: templates/admin.php:211 msgid "Log" diff --git a/l10n/nl/user_ldap.po b/l10n/nl/user_ldap.po index 3409fb6860..cea243ef79 100644 --- a/l10n/nl/user_ldap.po +++ b/l10n/nl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-12 10:20+0000\n" "Last-Translator: Len \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -92,7 +92,7 @@ msgid "" "Warning: Apps user_ldap and user_webdavauth are incompatible. You may" " experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "" +msgstr "Waarschuwing: De Apps user_ldap en user_webdavauth zijn incompatible. U kunt onverwacht gedrag ervaren. Vraag uw beheerder om een van beide apps de deactiveren." #: templates/settings.php:12 msgid "" diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index db50c0e88a..29908b4d1b 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutt sidan" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutt sidan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 time sidan" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timar sidan" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagar sidan" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "førre månad" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} månadar sidan" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "i fjor" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "år sidan" @@ -379,9 +379,10 @@ msgstr "Oppdateringa feila. Ver venleg og rapporter feilen til \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Slett" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Endra namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Under vegs" @@ -158,15 +154,13 @@ msgstr "bytte ut {new_name} med {old_name}" msgid "undo" msgstr "angre" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "utfør sletting" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fil lastar opp" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "filer lastar opp" @@ -214,21 +208,17 @@ msgstr "Storleik" msgid "Modified" msgstr "Endra" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Last ned" msgid "Unshare" msgstr "Udel" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Slett" + #: templates/index.php:105 msgid "Upload too large" msgstr "For stor opplasting" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index eea84fc24a..c10ee6cd50 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -52,21 +52,17 @@ msgstr "Namn" msgid "Deleted" msgstr "Sletta" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mappe" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index bcd30436ad..a344f828b7 100644 --- a/l10n/nn_NO/lib.po +++ b/l10n/nn_NO/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Brukarar" #: app.php:409 -msgid "Apps" -msgstr "Program" - -#: app.php:417 msgid "Admin" msgstr "Administrer" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "sekund sidan" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutt sidan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 time sidan" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "førre månad" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "i fjor" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år sidan" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 5a22dd98cc..33d3488ee9 100644 --- a/l10n/oc/core.po +++ b/l10n/oc/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "Novembre" msgid "December" msgstr "Decembre" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configuracion" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuta a" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "uèi" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ièr" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "mes passat" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses a" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "an passat" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "ans a" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "senhal d'ownCloud tornat botar" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "Sortida" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/oc/files.po b/l10n/oc/files.po index 56a56738f8..fc4c603ab8 100644 --- a/l10n/oc/files.po +++ b/l10n/oc/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Parteja" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Escafa" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Torna nomenar" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Al esperar" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "defar" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 fichièr al amontcargar" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -212,21 +206,17 @@ msgstr "Talha" msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Avalcarga" msgid "Unshare" msgstr "Pas partejador" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Escafa" + #: templates/index.php:105 msgid "Upload too large" msgstr "Amontcargament tròp gròs" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index 7b98ed6770..1f47311fec 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Nom" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 95eaa629e8..7624e58769 100644 --- a/l10n/oc/lib.po +++ b/l10n/oc/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Usancièrs" #: app.php:409 -msgid "Apps" -msgstr "Apps" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "segonda a" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuta a" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutas a" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "uèi" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ièr" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d jorns a" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "mes passat" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "an passat" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "ans a" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index f69729c588..5f7f67f6df 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutę temu" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minut temu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 godzinę temu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} godzin temu" - -#: js/js.js:819 msgid "today" msgstr "dziś" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dni temu" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} miesięcy temu" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "lat temu" @@ -379,9 +383,10 @@ msgstr "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Udostępnij" msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Usuń" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Zmień nazwę" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Oczekujące" @@ -158,15 +154,14 @@ msgstr "zastąpiono {new_name} przez {old_name}" msgid "undo" msgstr "cofnij" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "wykonaj operację usunięcia" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 plik wczytywany" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "pliki wczytane" @@ -214,21 +209,19 @@ msgstr "Rozmiar" msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "Ilość folderów: {count}" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 plik" - -#: js/files.js:775 -msgid "{count} files" -msgstr "Ilość plików: {count}" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -311,6 +304,10 @@ msgstr "Pobierz" msgid "Unshare" msgstr "Zatrzymaj współdzielenie" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Usuń" + #: templates/index.php:105 msgid "Upload too large" msgstr "Ładowany plik jest za duży" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 83b17801f2..4c116aa680 100644 --- a/l10n/pl/files_encryption.po +++ b/l10n/pl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 11:50+0000\n" +"Last-Translator: Cyryl Sochacki \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" @@ -60,22 +60,22 @@ msgid "" "ownCloud system (e.g. your corporate directory). You can update your private" " key password in your personal settings to recover access to your encrypted " "files." -msgstr "" +msgstr "Klucz prywatny nie jest ważny! Prawdopodobnie Twoje hasło zostało zmienione poza systemem ownCloud (np. w katalogu firmy). Aby odzyskać dostęp do zaszyfrowanych plików można zaktualizować hasło klucza prywatnego w ustawieniach osobistych." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Brak wymagań." #: hooks/hooks.php:45 msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Proszę upewnić się, że PHP 5.3.3 lub nowszy jest zainstalowany i że OpenSSL oraz rozszerzenie PHP jest włączone i poprawnie skonfigurowane. Obecnie szyfrowanie aplikacji zostało wyłączone." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index 659a37b200..fd82c9bdd6 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,19 @@ msgstr "Nazwa" msgid "Deleted" msgstr "Usunięte" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 folder" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "Ilość folderów: {count}" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 plik" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "Ilość plików: {count}" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 54c16bb62d..6cdef8fb47 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Cyryl Sochacki \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Użytkownicy" #: app.php:409 -msgid "Apps" -msgstr "Aplikacje" - -#: app.php:417 msgid "Admin" msgstr "Administrator" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Błąd przy aktualizacji \"%s\"." @@ -211,50 +207,50 @@ msgid "seconds ago" msgstr "sekund temu" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutę temu" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minut temu" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 godzinę temu" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d godzin temu" - -#: template/functions.php:85 msgid "today" msgstr "dziś" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "wczoraj" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dni temu" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "w zeszłym miesiącu" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d miesiecy temu" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "w zeszłym roku" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "lat temu" diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index ccbbcd7539..66939daefc 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-13 09:11-0400\n" +"PO-Revision-Date: 2013-08-13 12:00+0000\n" "Last-Translator: Cyryl Sochacki \n" "Language-Team: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -197,7 +197,7 @@ msgstr "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożl #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Proszę sprawdź ponownie przewodnik instalacji." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -308,7 +308,7 @@ msgstr "Wymuś HTTPS" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." #: templates/admin.php:199 #, php-format diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index fccecc4f3f..d1f5964e4b 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 09:30+0000\n" "Last-Translator: Flávio Veras \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ajustes" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "segundos atrás" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minuto atrás" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "1 hora atrás" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} horas atrás" - -#: js/js.js:819 msgid "today" msgstr "hoje" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "ontem" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dias atrás" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "último mês" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} meses atrás" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "último ano" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "anos atrás" @@ -379,9 +379,10 @@ msgstr "A atualização falhou. Por favor, relate este problema para a \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -123,15 +123,11 @@ msgstr "Compartilhar" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Excluir" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendente" @@ -159,15 +155,13 @@ msgstr "Substituído {old_name} por {new_name} " msgid "undo" msgstr "desfazer" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "realizar operação de exclusão" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "enviando 1 arquivo" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "enviando arquivos" @@ -215,21 +209,17 @@ msgstr "Tamanho" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 pasta" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 arquivo" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} arquivos" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -312,6 +302,10 @@ msgstr "Baixar" msgid "Unshare" msgstr "Descompartilhar" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Excluir" + #: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index bc02483c4b..6b636c6d00 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 12:30+0000\n" +"Last-Translator: Flávio Veras \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" @@ -73,7 +73,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Por favor, certifique-se que o PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está habilitado e configurado corretamente. Por enquanto, o aplicativo de criptografia foi desativado." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 2141331b27..3464db7a91 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Excluído" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 pasta" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 arquivo" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} arquivos" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 63261adbfd..b8ce85263a 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Usuários" #: app.php:409 -msgid "Apps" -msgstr "Aplicações" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Falha na atualização de \"%s\"." @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "segundos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minuto atrás" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minutos atrás" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 hora atrás" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d horas atrás" - -#: template/functions.php:85 msgid "today" msgstr "hoje" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ontem" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dias atrás" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "último mês" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d meses atrás" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "último ano" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index e11e0f9854..7b568baeca 100644 --- a/l10n/pt_PT/core.po +++ b/l10n/pt_PT/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -141,59 +141,59 @@ msgstr "Novembro" msgid "December" msgstr "Dezembro" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Configurações" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "Há 1 minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Há 1 horas" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Há {hours} horas atrás" - -#: js/js.js:819 msgid "today" msgstr "hoje" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ontem" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dias atrás" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "ultímo mês" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Há {months} meses atrás" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ano passado" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "anos atrás" @@ -381,9 +381,10 @@ msgstr "A actualização falhou. Por favor reporte este incidente seguindo este msgid "The update was successful. Redirecting you to ownCloud now." msgstr "A actualização foi concluída com sucesso. Vai ser redireccionado para o ownCloud agora." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Reposição da password ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -582,6 +583,10 @@ msgstr "%s está disponível. Tenha mais informações como actualizar." msgid "Log out" msgstr "Sair" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Login automático rejeitado!" diff --git a/l10n/pt_PT/files.po b/l10n/pt_PT/files.po index 161a889dc9..6c6d02291a 100644 --- a/l10n/pt_PT/files.po +++ b/l10n/pt_PT/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -122,15 +122,11 @@ msgstr "Partilhar" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Eliminar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renomear" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pendente" @@ -158,15 +154,13 @@ msgstr "substituido {new_name} por {old_name}" msgid "undo" msgstr "desfazer" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Executar a tarefa de apagar" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "A enviar 1 ficheiro" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "A enviar os ficheiros" @@ -214,21 +208,17 @@ msgstr "Tamanho" msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 pasta" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -311,6 +301,10 @@ msgstr "Transferir" msgid "Unshare" msgstr "Deixar de partilhar" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Eliminar" + #: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index cf52c64206..e23fb508d1 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Nome" msgid "Deleted" msgstr "Apagado" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 pasta" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index df6290845f..890855582c 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Helder Meneses \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Utilizadores" #: app.php:409 -msgid "Apps" -msgstr "Aplicações" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "A actualização \"%s\" falhou." @@ -211,50 +207,46 @@ msgid "seconds ago" msgstr "Minutos atrás" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "Há 1 minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "há %d minutos" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Há 1 horas" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Há %d horas" - -#: template/functions.php:85 msgid "today" msgstr "hoje" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ontem" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "há %d dias" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ultímo mês" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Há %d meses atrás" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ano passado" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "anos atrás" diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 1b3bb503e0..39cd512c1a 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: corneliu.e \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -141,59 +141,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Setări" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut în urmă" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minute in urmă" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Acum o oră" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ore în urmă" - -#: js/js.js:819 msgid "today" msgstr "astăzi" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ieri" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} zile in urmă" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "ultima lună" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} luni în urmă" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ultimul an" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "ani în urmă" @@ -381,9 +385,10 @@ msgstr "Actualizarea a eșuat! Raportați problema către \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -123,15 +123,11 @@ msgstr "Partajează" msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Șterge" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Redenumire" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "În așteptare" @@ -159,15 +155,14 @@ msgstr "{new_name} inlocuit cu {old_name}" msgid "undo" msgstr "Anulează ultima acțiune" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "efectueaza operatiunea de stergere" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "un fișier se încarcă" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "fișiere se încarcă" @@ -215,21 +210,19 @@ msgstr "Dimensiune" msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} foldare" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fisier" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} fisiere" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -312,6 +305,10 @@ msgstr "Descarcă" msgid "Unshare" msgstr "Anulare partajare" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Șterge" + #: templates/index.php:105 msgid "Upload too large" msgstr "Fișierul încărcat este prea mare" diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 822b86ba32..59197c9f4f 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,19 @@ msgstr "Nume" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 folder" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} foldare" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fisier" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} fisiere" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 42f5f30ea3..28319ce8b4 100644 --- a/l10n/ro/lib.po +++ b/l10n/ro/lib.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# I Robot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 13:50+0000\n" "Last-Translator: I Robot \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -34,14 +35,10 @@ msgid "Users" msgstr "Utilizatori" #: app.php:409 -msgid "Apps" -msgstr "Aplicații" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -203,57 +200,57 @@ msgstr "Serverul de web nu este încă setat corespunzător pentru a permite sin #: setup.php:185 #, php-format msgid "Please double check the installation guides." -msgstr "Vă rugăm să verificați ghiduri de instalare." +msgstr "Vă rugăm să verificați ghiduri de instalare." #: template/functions.php:80 msgid "seconds ago" msgstr "secunde în urmă" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut în urmă" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minute în urmă" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Acum o ora" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ore in urma" - -#: template/functions.php:85 msgid "today" msgstr "astăzi" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ieri" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d zile în urmă" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "ultima lună" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d luni in urma" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ultimul an" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "ani în urmă" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index b588107d34..81dee27e6c 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Den4md \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -144,59 +144,63 @@ msgstr "Ноябрь" msgid "December" msgstr "Декабрь" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Конфигурация" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "несколько секунд назад" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 минуту назад" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} минут назад" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "час назад" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} часов назад" - -#: js/js.js:819 msgid "today" msgstr "сегодня" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчера" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} дней назад" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "в прошлом месяце" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} месяцев назад" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "несколько месяцев назад" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "в прошлом году" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "несколько лет назад" @@ -384,9 +388,10 @@ msgstr "При обновлении произошла ошибка. Пожал msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Обновление прошло успешно. Перенаправляемся в Ваш ownCloud..." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Сброс пароля " +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -585,6 +590,10 @@ msgstr "%s доступно. Получить дополнительную ин msgid "Log out" msgstr "Выйти" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отключен!" diff --git a/l10n/ru/files.po b/l10n/ru/files.po index 2df5536397..1c35fe5430 100644 --- a/l10n/ru/files.po +++ b/l10n/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -124,15 +124,11 @@ msgstr "Открыть доступ" msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Удалить" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Переименовать" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Ожидание" @@ -160,15 +156,14 @@ msgstr "заменено {new_name} на {old_name}" msgid "undo" msgstr "отмена" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "выполнить операцию удаления" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "загружается 1 файл" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "файлы загружаются" @@ -216,21 +211,19 @@ msgstr "Размер" msgid "Modified" msgstr "Изменён" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 файл" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} файлов" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -313,6 +306,10 @@ msgstr "Скачать" msgid "Unshare" msgstr "Закрыть общий доступ" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Удалить" + #: templates/index.php:105 msgid "Upload too large" msgstr "Файл слишком велик" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index f76ec68235..c0a473a4e6 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Den4md \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,19 @@ msgstr "Имя" msgid "Deleted" msgstr "Удалён" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} файлов" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 5280cba75e..fe99071b8b 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: Alexander Shashkevych \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Пользователи" #: app.php:409 -msgid "Apps" -msgstr "Приложения" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Не смог обновить \"%s\"." @@ -212,50 +208,50 @@ msgid "seconds ago" msgstr "несколько секунд назад" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 минуту назад" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d минут назад" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "час назад" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d часов назад" - -#: template/functions.php:85 msgid "today" msgstr "сегодня" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчера" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d дней назад" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "в прошлом месяце" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d месяцев назад" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "в прошлом году" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "несколько лет назад" diff --git a/l10n/ru_RU/core.po b/l10n/ru_RU/core.po deleted file mode 100644 index 06111cdf7c..0000000000 --- a/l10n/ru_RU/core.po +++ /dev/null @@ -1,617 +0,0 @@ -# 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-06-04 02:29+0200\n" -"PO-Revision-Date: 2013-06-03 00:32+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: 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 -msgid "Choose" -msgstr "" - -#: js/oc-dialogs.js:122 -msgid "Cancel" -msgstr "Отмена" - -#: js/oc-dialogs.js:141 js/oc-dialogs.js:200 -msgid "Error loading file picker template" -msgstr "" - -#: js/oc-dialogs.js:164 -msgid "Yes" -msgstr "" - -#: js/oc-dialogs.js:172 -msgid "No" -msgstr "" - -#: js/oc-dialogs.js:185 -msgid "Ok" -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:26 -msgid "Password" -msgstr "" - -#: js/share.js:173 -msgid "Email link to person" -msgstr "" - -#: js/share.js:174 -msgid "Send" -msgstr "" - -#: js/share.js:178 -msgid "Set expiration date" -msgstr "" - -#: js/share.js:179 -msgid "Expiration date" -msgstr "" - -#: js/share.js:211 -msgid "Share via email:" -msgstr "" - -#: js/share.js:213 -msgid "No people found" -msgstr "" - -#: js/share.js:251 -msgid "Resharing is not allowed" -msgstr "" - -#: js/share.js:287 -msgid "Shared in {item} with {user}" -msgstr "" - -#: js/share.js:308 -msgid "Unshare" -msgstr "" - -#: js/share.js:320 -msgid "can edit" -msgstr "" - -#: js/share.js:322 -msgid "access control" -msgstr "" - -#: js/share.js:325 -msgid "create" -msgstr "" - -#: js/share.js:328 -msgid "update" -msgstr "" - -#: js/share.js:331 -msgid "delete" -msgstr "" - -#: js/share.js:334 -msgid "share" -msgstr "" - -#: js/share.js:368 js/share.js:564 -msgid "Password protected" -msgstr "" - -#: js/share.js:577 -msgid "Error unsetting expiration date" -msgstr "" - -#: js/share.js:589 -msgid "Error setting expiration date" -msgstr "" - -#: js/share.js:604 -msgid "Sending ..." -msgstr "" - -#: js/share.js:615 -msgid "Email sent" -msgstr "" - -#: js/update.js:14 -msgid "" -"The update was unsuccessful. Please report this issue to the ownCloud " -"community." -msgstr "" - -#: js/update.js:18 -msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "" - -#: lostpassword/controller.php:48 -msgid "ownCloud password reset" -msgstr "" - -#: lostpassword/templates/email.php:2 -msgid "Use the following link to reset your password: {link}" -msgstr "" - -#: lostpassword/templates/lostpassword.php:4 -msgid "" -"The link to reset your password has been sent to your email.
    If you do " -"not receive it within a reasonable amount of time, check your spam/junk " -"folders.
    If it is not there ask your local administrator ." -msgstr "" - -#: lostpassword/templates/lostpassword.php:12 -msgid "Request failed!
    Did you make sure your email/username was right?" -msgstr "" - -#: lostpassword/templates/lostpassword.php:15 -msgid "You will receive a link to reset your password via Email." -msgstr "" - -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 -#: templates/login.php:19 -msgid "Username" -msgstr "" - -#: lostpassword/templates/lostpassword.php:21 -msgid "Request reset" -msgstr "" - -#: lostpassword/templates/resetpassword.php:4 -msgid "Your password was reset" -msgstr "" - -#: lostpassword/templates/resetpassword.php:5 -msgid "To login page" -msgstr "" - -#: lostpassword/templates/resetpassword.php:8 -msgid "New password" -msgstr "" - -#: lostpassword/templates/resetpassword.php:11 -msgid "Reset password" -msgstr "" - -#: strings.php:5 -msgid "Personal" -msgstr "" - -#: strings.php:6 -msgid "Users" -msgstr "" - -#: strings.php:7 -msgid "Apps" -msgstr "" - -#: strings.php:8 -msgid "Admin" -msgstr "" - -#: strings.php:9 -msgid "Help" -msgstr "" - -#: templates/403.php:12 -msgid "Access forbidden" -msgstr "" - -#: templates/404.php:12 -msgid "Cloud not found" -msgstr "" - -#: templates/edit_categories_dialog.php:4 -msgid "Edit categories" -msgstr "" - -#: templates/edit_categories_dialog.php:16 -msgid "Add" -msgstr "Добавить" - -#: templates/installation.php:24 templates/installation.php:31 -#: templates/installation.php:38 -msgid "Security Warning" -msgstr "" - -#: templates/installation.php:25 -msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" - -#: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "" - -#: templates/installation.php:32 -msgid "" -"No secure random number generator is available, please enable the PHP " -"OpenSSL extension." -msgstr "" - -#: templates/installation.php:33 -msgid "" -"Without a secure random number generator an attacker may be able to predict " -"password reset tokens and take over your account." -msgstr "" - -#: templates/installation.php:39 -msgid "" -"Your data directory and files are probably accessible from the internet " -"because the .htaccess file does not work." -msgstr "" - -#: templates/installation.php:40 -msgid "" -"For information how to properly configure your server, please see the documentation." -msgstr "" - -#: templates/installation.php:44 -msgid "Create an admin account" -msgstr "" - -#: templates/installation.php:62 -msgid "Advanced" -msgstr "" - -#: templates/installation.php:64 -msgid "Data folder" -msgstr "" - -#: templates/installation.php:74 -msgid "Configure the database" -msgstr "" - -#: 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:137 -msgid "Database user" -msgstr "" - -#: templates/installation.php:144 -msgid "Database password" -msgstr "" - -#: templates/installation.php:149 -msgid "Database name" -msgstr "" - -#: templates/installation.php:159 -msgid "Database tablespace" -msgstr "" - -#: templates/installation.php:166 -msgid "Database host" -msgstr "" - -#: templates/installation.php:172 -msgid "Finish setup" -msgstr "" - -#: templates/layout.guest.php:40 -msgid "web services under your control" -msgstr "" - -#: templates/layout.user.php:37 -#, php-format -msgid "%s is available. Get more information on how to update." -msgstr "" - -#: templates/layout.user.php:62 -msgid "Log out" -msgstr "" - -#: templates/login.php:9 -msgid "Automatic logon rejected!" -msgstr "" - -#: templates/login.php:10 -msgid "" -"If you did not change your password recently, your account may be " -"compromised!" -msgstr "" - -#: templates/login.php:12 -msgid "Please change your password to secure your account again." -msgstr "" - -#: templates/login.php:34 -msgid "Lost your password?" -msgstr "" - -#: templates/login.php:39 -msgid "remember" -msgstr "" - -#: templates/login.php:41 -msgid "Log in" -msgstr "" - -#: templates/login.php:47 -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/ru_RU/files.po b/l10n/ru_RU/files.po deleted file mode 100644 index 097c3e00ba..0000000000 --- a/l10n/ru_RU/files.po +++ /dev/null @@ -1,322 +0,0 @@ -# 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-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-04-26 08:00+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: 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/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 "Размер загружаемого файла превысил максимально допустимый в директиве MAX_FILE_SIZE, специфицированной в HTML-форме" - -#: 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:116 -msgid "Share" -msgstr "Сделать общим" - -#: js/fileactions.js:126 -msgid "Delete permanently" -msgstr "" - -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Удалить" - -#: js/fileactions.js:194 -msgid "Rename" -msgstr "" - -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 -msgid "Pending" -msgstr "" - -#: js/filelist.js:259 js/filelist.js:261 -msgid "{new_name} already exists" -msgstr "" - -#: js/filelist.js:259 js/filelist.js:261 -msgid "replace" -msgstr "" - -#: js/filelist.js:259 -msgid "suggest name" -msgstr "" - -#: js/filelist.js:259 js/filelist.js:261 -msgid "cancel" -msgstr "" - -#: js/filelist.js:306 -msgid "replaced {new_name} with {old_name}" -msgstr "" - -#: js/filelist.js:306 -msgid "undo" -msgstr "" - -#: js/filelist.js:331 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:413 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:416 js/filelist.js:470 -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:231 -msgid "" -"Your download is being prepared. This might take some time if the files are " -"big." -msgstr "" - -#: js/files.js:264 -msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "" - -#: js/files.js:277 -msgid "Not enough space available" -msgstr "" - -#: js/files.js:317 -msgid "Upload cancelled." -msgstr "" - -#: js/files.js:413 -msgid "" -"File upload is in progress. Leaving the page now will cancel the upload." -msgstr "" - -#: js/files.js:486 -msgid "URL cannot be empty." -msgstr "" - -#: js/files.js:491 -msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "" - -#: js/files.js:520 js/files.js:536 js/files.js:826 js/files.js:864 -msgid "Error" -msgstr "Ошибка" - -#: js/files.js:877 templates/index.php:69 -msgid "Name" -msgstr "Имя" - -#: js/files.js:878 templates/index.php:80 -msgid "Size" -msgstr "" - -#: js/files.js:879 templates/index.php:82 -msgid "Modified" -msgstr "" - -#: js/files.js:898 -msgid "1 folder" -msgstr "" - -#: js/files.js:900 -msgid "{count} folders" -msgstr "" - -#: js/files.js:908 -msgid "1 file" -msgstr "" - -#: js/files.js:910 -msgid "{count} files" -msgstr "" - -#: lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" - -#: lib/app.php:73 -msgid "Unable to rename file" -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:54 -msgid "You don’t have write permissions here." -msgstr "" - -#: templates/index.php:61 -msgid "Nothing in here. Upload something!" -msgstr "" - -#: templates/index.php:75 -msgid "Download" -msgstr "Загрузка" - -#: templates/index.php:87 templates/index.php:88 -msgid "Unshare" -msgstr "" - -#: templates/index.php:107 -msgid "Upload too large" -msgstr "" - -#: templates/index.php:109 -msgid "" -"The files you are trying to upload exceed the maximum size for file uploads " -"on this server." -msgstr "" - -#: templates/index.php:114 -msgid "Files are being scanned, please wait." -msgstr "" - -#: templates/index.php:117 -msgid "Current scanning" -msgstr "" - -#: templates/upgrade.php:2 -msgid "Upgrading filesystem cache..." -msgstr "" diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po deleted file mode 100644 index 4690ff8916..0000000000 --- a/l10n/ru_RU/files_encryption.po +++ /dev/null @@ -1,103 +0,0 @@ -# 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-05-30 02:27+0200\n" -"PO-Revision-Date: 2013-05-30 00:27+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/adminrecovery.php:29 -msgid "Recovery key successfully enabled" -msgstr "" - -#: ajax/adminrecovery.php:34 -msgid "" -"Could not enable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/adminrecovery.php:48 -msgid "Recovery key successfully disabled" -msgstr "" - -#: ajax/adminrecovery.php:53 -msgid "" -"Could not disable recovery key. Please check your recovery key password!" -msgstr "" - -#: ajax/changeRecoveryPassword.php:49 -msgid "Password successfully changed." -msgstr "" - -#: ajax/changeRecoveryPassword.php:51 -msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" - -#: js/settings-admin.js:11 -msgid "Saving..." -msgstr "Сохранение" - -#: templates/settings-admin.php:5 templates/settings-personal.php:4 -msgid "Encryption" -msgstr "" - -#: templates/settings-admin.php:9 -msgid "" -"Enable encryption passwords recovery key (allow sharing to recovery key):" -msgstr "" - -#: templates/settings-admin.php:13 -msgid "Recovery account password" -msgstr "" - -#: templates/settings-admin.php:20 templates/settings-personal.php:18 -msgid "Enabled" -msgstr "" - -#: templates/settings-admin.php:28 templates/settings-personal.php:26 -msgid "Disabled" -msgstr "" - -#: templates/settings-admin.php:32 -msgid "Change encryption passwords recovery key:" -msgstr "" - -#: templates/settings-admin.php:39 -msgid "Old Recovery account password" -msgstr "" - -#: templates/settings-admin.php:46 -msgid "New Recovery account password" -msgstr "" - -#: templates/settings-admin.php:51 -msgid "Change Password" -msgstr "" - -#: templates/settings-personal.php:9 -msgid "Enable password recovery by sharing all files with your administrator:" -msgstr "" - -#: templates/settings-personal.php:11 -msgid "" -"Enabling this option will allow you to reobtain access to your encrypted " -"files if your password is lost" -msgstr "" - -#: templates/settings-personal.php:27 -msgid "File recovery settings updated" -msgstr "" - -#: templates/settings-personal.php:28 -msgid "Could not update file recovery" -msgstr "" diff --git a/l10n/ru_RU/files_external.po b/l10n/ru_RU/files_external.po deleted file mode 100644 index 96563330fb..0000000000 --- a/l10n/ru_RU/files_external.po +++ /dev/null @@ -1,123 +0,0 @@ -# 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-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: 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:431 -msgid "" -"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " -"is not possible. Please ask your system administrator to install it." -msgstr "" - -#: lib/config.php:434 -msgid "" -"Warning: The FTP support in PHP is not enabled or installed. Mounting" -" of FTP shares is not possible. Please ask your system administrator to " -"install it." -msgstr "" - -#: lib/config.php:437 -msgid "" -"Warning: The Curl support in PHP is not enabled or installed. " -"Mounting of ownCloud / WebDAV or GoogleDrive 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/ru_RU/files_sharing.po b/l10n/ru_RU/files_sharing.po deleted file mode 100644 index 2c8af92a3a..0000000000 --- a/l10n/ru_RU/files_sharing.po +++ /dev/null @@ -1,48 +0,0 @@ -# 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-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: 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/ru_RU/files_trashbin.po b/l10n/ru_RU/files_trashbin.po deleted file mode 100644 index 958cf6f2dd..0000000000 --- a/l10n/ru_RU/files_trashbin.po +++ /dev/null @@ -1,84 +0,0 @@ -# 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-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: 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:97 -msgid "perform restore operation" -msgstr "" - -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 -msgid "Error" -msgstr "Ошибка" - -#: js/trash.js:34 -msgid "delete file permanently" -msgstr "" - -#: js/trash.js:123 -msgid "Delete permanently" -msgstr "" - -#: js/trash.js:176 templates/index.php:17 -msgid "Name" -msgstr "Имя" - -#: js/trash.js:177 templates/index.php:27 -msgid "Deleted" -msgstr "" - -#: js/trash.js:186 -msgid "1 folder" -msgstr "" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:196 -msgid "1 file" -msgstr "" - -#: js/trash.js:198 -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/ru_RU/files_versions.po b/l10n/ru_RU/files_versions.po deleted file mode 100644 index 39fe47d2ed..0000000000 --- a/l10n/ru_RU/files_versions.po +++ /dev/null @@ -1,57 +0,0 @@ -# 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: 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/ru_RU/lib.po b/l10n/ru_RU/lib.po deleted file mode 100644 index 1172cc70fe..0000000000 --- a/l10n/ru_RU/lib.po +++ /dev/null @@ -1,245 +0,0 @@ -# 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-06-04 02:29+0200\n" -"PO-Revision-Date: 2013-06-03 00:32+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: app.php:357 -msgid "Help" -msgstr "" - -#: app.php:370 -msgid "Personal" -msgstr "" - -#: app.php:381 -msgid "Settings" -msgstr "Настройки" - -#: app.php:393 -msgid "Users" -msgstr "" - -#: app.php:406 -msgid "Apps" -msgstr "" - -#: app.php:414 -msgid "Admin" -msgstr "" - -#: files.php:210 -msgid "ZIP download is turned off." -msgstr "" - -#: files.php:211 -msgid "Files need to be downloaded one by one." -msgstr "" - -#: files.php:212 files.php:245 -msgid "Back to Files" -msgstr "" - -#: files.php:242 -msgid "Selected files too large to generate zip file." -msgstr "" - -#: helper.php:236 -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:329 setup.php:374 -msgid "PostgreSQL username and/or password not valid" -msgstr "" - -#: setup.php:133 setup.php:238 -msgid "You need to enter either an existing account or the administrator." -msgstr "" - -#: setup.php:155 -msgid "Oracle connection could not be established" -msgstr "" - -#: setup.php:237 -msgid "MySQL username and/or password not valid" -msgstr "" - -#: setup.php:291 setup.php:395 setup.php:404 setup.php:422 setup.php:432 -#: setup.php:441 setup.php:474 setup.php:540 setup.php:566 setup.php:573 -#: setup.php:584 setup.php:591 setup.php:600 setup.php:608 setup.php:617 -#: setup.php:623 -#, php-format -msgid "DB Error: \"%s\"" -msgstr "" - -#: setup.php:292 setup.php:396 setup.php:405 setup.php:423 setup.php:433 -#: setup.php:442 setup.php:475 setup.php:541 setup.php:567 setup.php:574 -#: setup.php:585 setup.php:601 setup.php:609 setup.php:618 -#, php-format -msgid "Offending command was: \"%s\"" -msgstr "" - -#: setup.php:308 -#, php-format -msgid "MySQL user '%s'@'localhost' exists already." -msgstr "" - -#: setup.php:309 -msgid "Drop this user from MySQL" -msgstr "" - -#: setup.php:314 -#, php-format -msgid "MySQL user '%s'@'%%' already exists" -msgstr "" - -#: setup.php:315 -msgid "Drop this user from MySQL." -msgstr "" - -#: setup.php:466 setup.php:533 -msgid "Oracle username and/or password not valid" -msgstr "" - -#: setup.php:592 setup.php:624 -#, php-format -msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "" - -#: setup.php:644 -#, php-format -msgid "MS SQL username and/or password not valid: %s" -msgstr "" - -#: setup.php:867 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "" - -#: setup.php:868 -#, php-format -msgid "Please double check the installation guides." -msgstr "" - -#: template.php:113 -msgid "seconds ago" -msgstr "" - -#: template.php:114 -msgid "1 minute ago" -msgstr "" - -#: template.php:115 -#, php-format -msgid "%d minutes ago" -msgstr "" - -#: template.php:116 -msgid "1 hour ago" -msgstr "" - -#: template.php:117 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template.php:118 -msgid "today" -msgstr "" - -#: template.php:119 -msgid "yesterday" -msgstr "" - -#: template.php:120 -#, php-format -msgid "%d days ago" -msgstr "" - -#: template.php:121 -msgid "last month" -msgstr "" - -#: template.php:122 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template.php:123 -msgid "last year" -msgstr "" - -#: template.php:124 -msgid "years ago" -msgstr "" - -#: vcategories.php:188 vcategories.php:249 -#, php-format -msgid "Could not find category \"%s\"" -msgstr "" diff --git a/l10n/ru_RU/settings.po b/l10n/ru_RU/settings.po deleted file mode 100644 index 34972e5304..0000000000 --- a/l10n/ru_RU/settings.po +++ /dev/null @@ -1,496 +0,0 @@ -# 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-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-06-02 23:17+0000\n" -"Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/apps/ocs.php:20 -msgid "Unable to load list from App Store" -msgstr "" - -#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 -#: ajax/togglegroups.php:20 -msgid "Authentication error" -msgstr "" - -#: ajax/changedisplayname.php:31 -msgid "Your display name has been changed." -msgstr "" - -#: ajax/changedisplayname.php:34 -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:118 -msgid "Saving..." -msgstr "Сохранение" - -#: js/users.js:47 -msgid "deleted" -msgstr "удалено" - -#: js/users.js:47 -msgid "undo" -msgstr "" - -#: js/users.js:79 -msgid "Unable to remove user" -msgstr "" - -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 -msgid "Groups" -msgstr "Группы" - -#: js/users.js:95 templates/users.php:85 templates/users.php:120 -msgid "Group Admin" -msgstr "" - -#: js/users.js:115 templates/users.php:160 -msgid "Delete" -msgstr "Удалить" - -#: js/users.js:269 -msgid "add group" -msgstr "" - -#: js/users.js:428 -msgid "A valid username must be provided" -msgstr "" - -#: js/users.js:429 js/users.js:435 js/users.js:450 -msgid "Error creating user" -msgstr "" - -#: js/users.js:434 -msgid "A valid password must be provided" -msgstr "" - -#: personal.php:35 personal.php:36 -msgid "__language_name__" -msgstr "" - -#: templates/admin.php:15 -msgid "Security Warning" -msgstr "" - -#: templates/admin.php:18 -msgid "" -"Your data directory and your files are probably accessible from the " -"internet. The .htaccess file that ownCloud provides is not working. We " -"strongly suggest that you configure your webserver in a way that the data " -"directory is no longer accessible or you move the data directory outside the" -" webserver document root." -msgstr "" - -#: templates/admin.php:29 -msgid "Setup Warning" -msgstr "" - -#: templates/admin.php:32 -msgid "" -"Your web server is not yet properly setup to allow files synchronization " -"because the WebDAV interface seems to be broken." -msgstr "" - -#: templates/admin.php:33 -#, php-format -msgid "Please double check the installation guides." -msgstr "" - -#: templates/admin.php:44 -msgid "Module 'fileinfo' missing" -msgstr "" - -#: templates/admin.php:47 -msgid "" -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this " -"module to get best results with mime-type detection." -msgstr "" - -#: templates/admin.php:58 -msgid "Locale not working" -msgstr "" - -#: templates/admin.php:63 -#, php-format -msgid "" -"This ownCloud server can't set system locale to %s. This means that there " -"might be problems with certain characters in file names. We strongly suggest" -" to install the required packages on your system to support %s." -msgstr "" - -#: templates/admin.php:75 -msgid "Internet connection not working" -msgstr "" - -#: templates/admin.php:78 -msgid "" -"This ownCloud server has no working internet connection. This means that " -"some of the features like mounting of external storage, notifications about " -"updates or installation of 3rd party apps don´t work. Accessing files from " -"remote and sending of notification emails might also not work. We suggest to" -" enable internet connection for this server if you want to have all features" -" of ownCloud." -msgstr "" - -#: templates/admin.php:92 -msgid "Cron" -msgstr "" - -#: templates/admin.php:101 -msgid "Execute one task with each page loaded" -msgstr "" - -#: templates/admin.php:111 -msgid "" -"cron.php is registered at a webcron service. Call the cron.php page in the " -"owncloud root once a minute over http." -msgstr "" - -#: templates/admin.php:121 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "" - -#: templates/admin.php:128 -msgid "Sharing" -msgstr "" - -#: templates/admin.php:134 -msgid "Enable Share API" -msgstr "" - -#: templates/admin.php:135 -msgid "Allow apps to use the Share API" -msgstr "" - -#: templates/admin.php:142 -msgid "Allow links" -msgstr "" - -#: templates/admin.php:143 -msgid "Allow users to share items to the public with links" -msgstr "" - -#: templates/admin.php:150 -msgid "Allow resharing" -msgstr "" - -#: templates/admin.php:151 -msgid "Allow users to share items shared with them again" -msgstr "" - -#: templates/admin.php:158 -msgid "Allow users to share with anyone" -msgstr "" - -#: templates/admin.php:161 -msgid "Allow users to only share with users in their groups" -msgstr "" - -#: templates/admin.php:168 -msgid "Security" -msgstr "" - -#: templates/admin.php:181 -msgid "Enforce HTTPS" -msgstr "" - -#: templates/admin.php:182 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "" - -#: templates/admin.php:185 -msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "" - -#: templates/admin.php:195 -msgid "Log" -msgstr "" - -#: templates/admin.php:196 -msgid "Log level" -msgstr "" - -#: templates/admin.php:227 -msgid "More" -msgstr "" - -#: templates/admin.php:228 -msgid "Less" -msgstr "" - -#: templates/admin.php:235 templates/personal.php:111 -msgid "Version" -msgstr "" - -#: templates/admin.php:237 templates/personal.php:114 -msgid "" -"Developed by the ownCloud community, the source code is " -"licensed under the AGPL." -msgstr "" - -#: templates/apps.php:11 -msgid "Add your App" -msgstr "" - -#: templates/apps.php:12 -msgid "More Apps" -msgstr "" - -#: templates/apps.php:28 -msgid "Select an App" -msgstr "" - -#: templates/apps.php:34 -msgid "See application page at apps.owncloud.com" -msgstr "" - -#: templates/apps.php:36 -msgid "-licensed by " -msgstr "" - -#: templates/apps.php:38 -msgid "Update" -msgstr "" - -#: templates/help.php:4 -msgid "User Documentation" -msgstr "" - -#: templates/help.php:6 -msgid "Administrator Documentation" -msgstr "" - -#: templates/help.php:9 -msgid "Online Documentation" -msgstr "" - -#: templates/help.php:11 -msgid "Forum" -msgstr "" - -#: templates/help.php:14 -msgid "Bugtracker" -msgstr "" - -#: templates/help.php:17 -msgid "Commercial Support" -msgstr "" - -#: templates/personal.php:8 -#, php-format -msgid "You have used %s of the available %s" -msgstr "" - -#: templates/personal.php:15 -msgid "Get the apps to sync your files" -msgstr "" - -#: templates/personal.php:26 -msgid "Show First Run Wizard again" -msgstr "" - -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 -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:81 -msgid "Display Name" -msgstr "" - -#: templates/personal.php:71 -msgid "Email" -msgstr "Email" - -#: templates/personal.php:73 -msgid "Your email address" -msgstr "" - -#: templates/personal.php:74 -msgid "Fill in an email address to enable password recovery" -msgstr "" - -#: templates/personal.php:83 templates/personal.php:84 -msgid "Language" -msgstr "" - -#: templates/personal.php:95 -msgid "Help translate" -msgstr "" - -#: templates/personal.php:100 -msgid "WebDAV" -msgstr "" - -#: templates/personal.php:102 -msgid "Use this address to connect to your ownCloud in your file manager" -msgstr "" - -#: templates/users.php:21 templates/users.php:80 -msgid "Login Name" -msgstr "" - -#: templates/users.php:30 -msgid "Create" -msgstr "" - -#: templates/users.php:34 -msgid "Admin Recovery Password" -msgstr "" - -#: templates/users.php:38 -msgid "Default Storage" -msgstr "" - -#: templates/users.php:44 templates/users.php:138 -msgid "Unlimited" -msgstr "" - -#: templates/users.php:62 templates/users.php:153 -msgid "Other" -msgstr "Другое" - -#: templates/users.php:87 -msgid "Storage" -msgstr "" - -#: templates/users.php:98 -msgid "change display name" -msgstr "" - -#: templates/users.php:102 -msgid "set new password" -msgstr "" - -#: templates/users.php:133 -msgid "Default" -msgstr "" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/ru_RU/user_ldap.po deleted file mode 100644 index 42a5e0fe72..0000000000 --- a/l10n/ru_RU/user_ldap.po +++ /dev/null @@ -1,419 +0,0 @@ -# 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-06-03 02:27+0200\n" -"PO-Revision-Date: 2013-04-26 08:02+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: ajax/clearMappings.php:34 -msgid "Failed to clear the mappings." -msgstr "" - -#: 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:111 -msgid "mappings cleared" -msgstr "" - -#: js/settings.js:112 -msgid "Success" -msgstr "Успех" - -#: js/settings.js:117 -msgid "Error" -msgstr "Ошибка" - -#: js/settings.js:141 -msgid "Connection test succeeded" -msgstr "" - -#: js/settings.js:146 -msgid "Connection test failed" -msgstr "" - -#: js/settings.js:156 -msgid "Do you really want to delete the current Server Configuration?" -msgstr "" - -#: js/settings.js:157 -msgid "Confirm Deletion" -msgstr "" - -#: templates/settings.php:9 -msgid "" -"Warning: Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behaviour. Please ask your system administrator to " -"disable one of them." -msgstr "" - -#: templates/settings.php:12 -msgid "" -"Warning: The PHP LDAP module is not installed, the backend will not " -"work. Please ask your system administrator to install it." -msgstr "" - -#: templates/settings.php:16 -msgid "Server configuration" -msgstr "" - -#: templates/settings.php:32 -msgid "Add Server Configuration" -msgstr "" - -#: templates/settings.php:37 -msgid "Host" -msgstr "" - -#: templates/settings.php:39 -msgid "" -"You can omit the protocol, except you require SSL. Then start with ldaps://" -msgstr "" - -#: templates/settings.php:40 -msgid "Base DN" -msgstr "" - -#: templates/settings.php:41 -msgid "One Base DN per line" -msgstr "" - -#: templates/settings.php:42 -msgid "You can specify Base DN for users and groups in the Advanced tab" -msgstr "" - -#: templates/settings.php:44 -msgid "User DN" -msgstr "" - -#: templates/settings.php:46 -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:47 -msgid "Password" -msgstr "" - -#: templates/settings.php:50 -msgid "For anonymous access, leave DN and Password empty." -msgstr "" - -#: templates/settings.php:51 -msgid "User Login Filter" -msgstr "" - -#: templates/settings.php:54 -#, php-format -msgid "" -"Defines the filter to apply, when login is attempted. %%uid replaces the " -"username in the login action." -msgstr "" - -#: templates/settings.php:55 -#, php-format -msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" -msgstr "" - -#: templates/settings.php:56 -msgid "User List Filter" -msgstr "" - -#: templates/settings.php:59 -msgid "Defines the filter to apply, when retrieving users." -msgstr "" - -#: templates/settings.php:60 -msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" - -#: templates/settings.php:61 -msgid "Group Filter" -msgstr "" - -#: templates/settings.php:64 -msgid "Defines the filter to apply, when retrieving groups." -msgstr "" - -#: templates/settings.php:65 -msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" - -#: templates/settings.php:69 -msgid "Connection Settings" -msgstr "" - -#: templates/settings.php:71 -msgid "Configuration Active" -msgstr "" - -#: templates/settings.php:71 -msgid "When unchecked, this configuration will be skipped." -msgstr "" - -#: templates/settings.php:72 -msgid "Port" -msgstr "" - -#: templates/settings.php:73 -msgid "Backup (Replica) Host" -msgstr "" - -#: templates/settings.php:73 -msgid "" -"Give an optional backup host. It must be a replica of the main LDAP/AD " -"server." -msgstr "" - -#: templates/settings.php:74 -msgid "Backup (Replica) Port" -msgstr "" - -#: templates/settings.php:75 -msgid "Disable Main Server" -msgstr "" - -#: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" - -#: templates/settings.php:76 -msgid "Use TLS" -msgstr "" - -#: templates/settings.php:76 -msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" - -#: templates/settings.php:77 -msgid "Case insensitve LDAP server (Windows)" -msgstr "" - -#: templates/settings.php:78 -msgid "Turn off SSL certificate validation." -msgstr "" - -#: templates/settings.php:78 -msgid "" -"If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "" - -#: templates/settings.php:78 -msgid "Not recommended, use for testing only." -msgstr "" - -#: templates/settings.php:79 -msgid "Cache Time-To-Live" -msgstr "" - -#: templates/settings.php:79 -msgid "in seconds. A change empties the cache." -msgstr "" - -#: templates/settings.php:81 -msgid "Directory Settings" -msgstr "" - -#: templates/settings.php:83 -msgid "User Display Name Field" -msgstr "" - -#: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "" - -#: templates/settings.php:84 -msgid "Base User Tree" -msgstr "" - -#: templates/settings.php:84 -msgid "One User Base DN per line" -msgstr "" - -#: templates/settings.php:85 -msgid "User Search Attributes" -msgstr "" - -#: templates/settings.php:85 templates/settings.php:88 -msgid "Optional; one attribute per line" -msgstr "" - -#: templates/settings.php:86 -msgid "Group Display Name Field" -msgstr "" - -#: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "" - -#: templates/settings.php:87 -msgid "Base Group Tree" -msgstr "" - -#: templates/settings.php:87 -msgid "One Group Base DN per line" -msgstr "" - -#: templates/settings.php:88 -msgid "Group Search Attributes" -msgstr "" - -#: templates/settings.php:89 -msgid "Group-Member association" -msgstr "" - -#: templates/settings.php:91 -msgid "Special Attributes" -msgstr "" - -#: templates/settings.php:93 -msgid "Quota Field" -msgstr "" - -#: templates/settings.php:94 -msgid "Quota Default" -msgstr "" - -#: templates/settings.php:94 -msgid "in bytes" -msgstr "" - -#: templates/settings.php:95 -msgid "Email Field" -msgstr "" - -#: templates/settings.php:96 -msgid "User Home Folder Naming Rule" -msgstr "" - -#: templates/settings.php:96 -msgid "" -"Leave empty for user name (default). Otherwise, specify an LDAP/AD " -"attribute." -msgstr "" - -#: templates/settings.php:101 -msgid "Internal Username" -msgstr "" - -#: templates/settings.php:102 -msgid "" -"By default the internal username will be created from the UUID attribute. It" -" makes sure that the username is unique and characters do not need to be " -"converted. The internal username has the restriction that only these " -"characters are allowed: [ a-zA-Z0-9_.@- ]. Other characters are replaced " -"with their ASCII correspondence or simply omitted. On collisions a number " -"will be added/increased. The internal username is used to identify a user " -"internally. It is also the default name for the user home folder in " -"ownCloud. It is also a port of remote URLs, for instance for all *DAV " -"services. With this setting, the default behaviour can be overriden. To " -"achieve a similar behaviour as before ownCloud 5 enter the user display name" -" attribute in the following field. Leave it empty for default behaviour. " -"Changes will have effect only on newly mapped (added) LDAP users." -msgstr "" - -#: templates/settings.php:103 -msgid "Internal Username Attribute:" -msgstr "" - -#: templates/settings.php:104 -msgid "Override UUID detection" -msgstr "" - -#: templates/settings.php:105 -msgid "" -"By default, ownCloud autodetects the UUID attribute. The UUID attribute is " -"used to doubtlessly identify LDAP users and groups. Also, the internal " -"username will be created based on the UUID, if not specified otherwise " -"above. You can override the setting and pass an attribute of your choice. " -"You must make sure that the attribute of your choice can be fetched for both" -" users and groups and it is unique. Leave it empty for default behaviour. " -"Changes will have effect only on newly mapped (added) LDAP users and groups." -msgstr "" - -#: templates/settings.php:106 -msgid "UUID Attribute:" -msgstr "" - -#: templates/settings.php:107 -msgid "Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:108 -msgid "" -"ownCloud uses usernames to store and assign (meta) data. In order to " -"precisely identify and recognize users, each LDAP user will have a internal " -"username. This requires a mapping from ownCloud username to LDAP user. The " -"created username is mapped to the UUID of the LDAP user. Additionally the DN" -" is cached as well to reduce LDAP interaction, but it is not used for " -"identification. If the DN changes, the changes will be found by ownCloud. " -"The internal ownCloud name is used all over in ownCloud. Clearing the " -"Mappings will have leftovers everywhere. Clearing the Mappings is not " -"configuration sensitive, it affects all LDAP configurations! Do never clear " -"the mappings in a production environment. Only clear mappings in a testing " -"or experimental stage." -msgstr "" - -#: templates/settings.php:109 -msgid "Clear Username-LDAP User Mapping" -msgstr "" - -#: templates/settings.php:109 -msgid "Clear Groupname-LDAP Group Mapping" -msgstr "" - -#: templates/settings.php:111 -msgid "Test Configuration" -msgstr "" - -#: templates/settings.php:111 -msgid "Help" -msgstr "" diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/ru_RU/user_webdavauth.po deleted file mode 100644 index b2e9152457..0000000000 --- a/l10n/ru_RU/user_webdavauth.po +++ /dev/null @@ -1,36 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# -# Translators: -# AnnaSch , 2013 -# AnnaSch , 2012 -# skoptev , 2012 -msgid "" -msgstr "" -"Project-Id-Version: ownCloud\n" -"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2012-11-09 09:06+0000\n" -"Last-Translator: FULL NAME \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru_RU\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" - -#: 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/si_LK/core.po b/l10n/si_LK/core.po index 596c381bd5..01e83cce14 100644 --- a/l10n/si_LK/core.po +++ b/l10n/si_LK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "නොවැම්බර්" msgid "December" msgstr "දෙසැම්බර්" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "සිටුවම්" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 මිනිත්තුවකට පෙර" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "අද" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "ඊයේ" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "පෙර මාසයේ" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "මාස කීපයකට පෙර" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud මුරපදය ප්‍රත්‍යාරම්භ කරන්න" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "නික්මීම" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/si_LK/files.po b/l10n/si_LK/files.po index ea23e23410..57a6b5a168 100644 --- a/l10n/si_LK/files.po +++ b/l10n/si_LK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "බෙදා හදා ගන්න" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "මකා දමන්න" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "නැවත නම් කරන්න" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "නිෂ්ප්‍රභ කරන්න" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ගොනුවක් උඩගත කෙරේ" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "ප්‍රමාණය" msgid "Modified" msgstr "වෙනස් කළ" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 ෆොල්ඩරයක්" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ගොනුවක්" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "බාන්න" msgid "Unshare" msgstr "නොබෙදු" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "මකා දමන්න" + #: templates/index.php:105 msgid "Upload too large" msgstr "උඩුගත කිරීම විශාල වැඩිය" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 249cb24f18..ef616c5a54 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "නම" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 ෆොල්ඩරයක්" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ගොනුවක්" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index 59d4f49d1f..838b32a1fd 100644 --- a/l10n/si_LK/lib.po +++ b/l10n/si_LK/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "පරිශීලකයන්" #: app.php:409 -msgid "Apps" -msgstr "යෙදුම්" - -#: app.php:417 msgid "Admin" msgstr "පරිපාලක" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "තත්පරයන්ට පෙර" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 මිනිත්තුවකට පෙර" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d මිනිත්තුවන්ට පෙර" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "අද" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "ඊයේ" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d දිනකට පෙර" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "පෙර මාසයේ" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "පෙර අවුරුද්දේ" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "අවුරුදු කීපයකට පෙර" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 2c7327788a..d92fbb1532 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-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,63 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,7 +230,7 @@ msgstr "" #: 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:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +250,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +350,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -377,8 +381,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -461,7 +466,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +583,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/sk/files.po b/l10n/sk/files.po index 7972570bed..03e5389517 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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" @@ -156,15 +152,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +195,31 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -285,45 +278,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 07aa2e17a0..322a3dbd56 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,19 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 9d5bd19be2..1956868b0d 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,54 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 306cd20179..025c8016e0 100644 --- a/l10n/sk_SK/core.po +++ b/l10n/sk_SK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,59 +138,63 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "pred minútou" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "pred {minutes} minútami" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Pred 1 hodinou" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Pred {hours} hodinami." - -#: js/js.js:819 msgid "today" msgstr "dnes" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "včera" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "pred {days} dňami" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Pred {months} mesiacmi." +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "minulý rok" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "pred rokmi" @@ -378,9 +382,10 @@ msgstr "Aktualizácia nebola úspešná. Problém nahláste na \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Zdieľať" msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Zmazať" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Premenovať" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Prebieha" @@ -157,15 +153,14 @@ msgstr "prepísaný {new_name} súborom {old_name}" msgid "undo" msgstr "vrátiť" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "vykonať zmazanie" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 súbor sa posiela " - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "nahrávanie súborov" @@ -213,21 +208,19 @@ msgstr "Veľkosť" msgid "Modified" msgstr "Upravené" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 priečinok" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} priečinkov" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 súbor" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} súborov" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -310,6 +303,10 @@ msgstr "Sťahovanie" msgid "Unshare" msgstr "Zrušiť zdieľanie" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Zmazať" + #: templates/index.php:105 msgid "Upload too large" msgstr "Nahrávanie je príliš veľké" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 08b4ef72b6..31b22df580 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,19 @@ msgstr "Názov" msgid "Deleted" msgstr "Zmazané" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 priečinok" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} priečinkov" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 súbor" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} súborov" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index ef108b73c8..b403893d8b 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/lib.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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-07 19:40+0000\n" -"Last-Translator: mhh \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Používatelia" #: app.php:409 -msgid "Apps" -msgstr "Aplikácie" - -#: app.php:417 msgid "Admin" msgstr "Administrátor" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Zlyhala aktualizácia \"%s\"." @@ -211,50 +207,50 @@ msgid "seconds ago" msgstr "pred sekundami" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "pred minútou" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "pred %d minútami" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Pred 1 hodinou" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Pred %d hodinami." - -#: template/functions.php:85 msgid "today" msgstr "dnes" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "včera" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "pred %d dňami" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "minulý mesiac" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Pred %d mesiacmi." +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "minulý rok" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "pred rokmi" diff --git a/l10n/sl/core.po b/l10n/sl/core.po index 0adf177e22..f659c22faf 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: barbarak \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,67 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "pred minuto" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "pred {minutes} minutami" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Pred 1 uro" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "pred {hours} urami" - -#: js/js.js:819 msgid "today" msgstr "danes" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "včeraj" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "pred {days} dnevi" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "pred {months} meseci" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "lansko leto" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "let nazaj" @@ -379,9 +387,10 @@ msgstr "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Souporaba" msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Izbriši" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Preimenuj" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "V čakanju ..." @@ -157,15 +153,15 @@ msgstr "preimenovano ime {new_name} z imenom {old_name}" msgid "undo" msgstr "razveljavi" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "izvedi opravilo brisanja" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Pošiljanje 1 datoteke" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "poteka pošiljanje datotek" @@ -213,21 +209,21 @@ msgstr "Velikost" msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mapa" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} map" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 datoteka" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} datotek" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/app.php:73 #, php-format @@ -310,6 +306,10 @@ msgstr "Prejmi" msgid "Unshare" msgstr "Prekliči souporabo" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Izbriši" + #: templates/index.php:105 msgid "Upload too large" msgstr "Prekoračenje omejitve velikosti" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index f53916993d..4ad47a2048 100644 --- a/l10n/sl/files_encryption.po +++ b/l10n/sl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-11 08:50+0000\n" +"Last-Translator: barbarak \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" @@ -71,11 +71,11 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Preverite, da imate na strežniku nameščen paket PHP 5.3.3 ali novejši in da je omogočen in pravilno nastavljen PHP OpenSSL . Zaenkrat je šifriranje onemogočeno." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" -msgstr "" +msgstr "Naslednji uporabniki še nimajo nastavljenega šifriranja:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index e565146577..866885ca0c 100644 --- a/l10n/sl/files_trashbin.po +++ b/l10n/sl/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,21 @@ msgstr "Ime" msgid "Deleted" msgstr "Izbrisano" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mapa" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} map" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 datoteka" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} datotek" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index ce4d702109..fc3455dabd 100644 --- a/l10n/sl/lib.po +++ b/l10n/sl/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "Uporabniki" #: app.php:409 -msgid "Apps" -msgstr "Programi" - -#: app.php:417 msgid "Admin" msgstr "Skrbništvo" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,54 @@ msgid "seconds ago" msgstr "pred nekaj sekundami" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "pred minuto" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "pred %d minutami" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Pred 1 uro" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "Pred %d urami" - -#: template/functions.php:85 msgid "today" msgstr "danes" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "včeraj" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "pred %d dnevi" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "zadnji mesec" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "Pred %d meseci" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "lansko leto" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "let nazaj" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index fb2fca5fb7..0c6e10ceee 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Odeen \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Parametra" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minutë më parë" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuta më parë" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 orë më parë" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} orë më parë" - -#: js/js.js:819 msgid "today" msgstr "sot" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "dje" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} ditë më parë" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} muaj më parë" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "vite më parë" @@ -379,9 +379,10 @@ msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Nda" msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Elimino" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Riemërto" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Pezulluar" @@ -156,15 +152,13 @@ msgstr "U zëvëndësua {new_name} me {old_name}" msgid "undo" msgstr "anulo" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "ekzekuto operacionin e eliminimit" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Po ngarkohet 1 skedar" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "po ngarkoj skedarët" @@ -212,21 +206,17 @@ msgstr "Dimensioni" msgid "Modified" msgstr "Modifikuar" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dosje" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dosje" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 skedar" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} skedarë" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "Shkarko" msgid "Unshare" msgstr "Hiq ndarjen" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Elimino" + #: templates/index.php:105 msgid "Upload too large" msgstr "Ngarkimi është shumë i madh" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 5347573c14..cd243657ba 100644 --- a/l10n/sq/files_trashbin.po +++ b/l10n/sq/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "Emri" msgid "Deleted" msgstr "Eliminuar" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dosje" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dosje" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 skedar" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} skedarë" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 2a56dcbd7f..7fa5b3bf04 100644 --- a/l10n/sq/lib.po +++ b/l10n/sq/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Përdoruesit" #: app.php:409 -msgid "Apps" -msgstr "App" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "sekonda më parë" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minutë më parë" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuta më parë" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 orë më parë" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d orë më parë" - -#: template/functions.php:85 msgid "today" msgstr "sot" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "dje" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ditë më parë" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "muajin e shkuar" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d muaj më parë" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "vitin e shkuar" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "vite më parë" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index a283542378..8072e39202 100644 --- a/l10n/sr/core.po +++ b/l10n/sr/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,63 @@ msgstr "Новембар" msgid "December" msgstr "Децембар" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Поставке" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "пре неколико секунди" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "пре 1 минут" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "пре {minutes} минута" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "Пре једног сата" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "Пре {hours} сата (сати)" - -#: js/js.js:819 msgid "today" msgstr "данас" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "јуче" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "пре {days} дана" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "прошлог месеца" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "Пре {months} месеца (месеци)" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "месеци раније" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "прошле године" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "година раније" @@ -377,9 +381,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Поништавање лозинке за ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +583,10 @@ msgstr "" msgid "Log out" msgstr "Одјава" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Аутоматска пријава је одбијена!" diff --git a/l10n/sr/files.po b/l10n/sr/files.po index daab5774e6..53d08ff07c 100644 --- a/l10n/sr/files.po +++ b/l10n/sr/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "Дели" msgid "Delete permanently" msgstr "Обриши за стално" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Обриши" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Преименуј" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "На чекању" @@ -156,15 +152,14 @@ msgstr "замењено {new_name} са {old_name}" msgid "undo" msgstr "опозови" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "обриши" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "Отпремам 1 датотеку" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "датотеке се отпремају" @@ -212,21 +207,19 @@ msgstr "Величина" msgid "Modified" msgstr "Измењено" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 фасцикла" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} фасцикле/и" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 датотека" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} датотеке/а" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -309,6 +302,10 @@ msgstr "Преузми" msgid "Unshare" msgstr "Укини дељење" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Обриши" + #: templates/index.php:105 msgid "Upload too large" msgstr "Датотека је превелика" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index 18293c900b..9fed460b7d 100644 --- a/l10n/sr/files_trashbin.po +++ b/l10n/sr/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,19 @@ msgstr "Име" msgid "Deleted" msgstr "Обрисано" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 фасцикла" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} фасцикле/и" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 датотека" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} датотеке/а" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index 3f9b8db253..28031d756c 100644 --- a/l10n/sr/lib.po +++ b/l10n/sr/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Корисници" #: app.php:409 -msgid "Apps" -msgstr "Апликације" - -#: app.php:417 msgid "Admin" msgstr "Администратор" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,50 @@ msgid "seconds ago" msgstr "пре неколико секунди" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "пре 1 минут" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "пре %d минута" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "Пре једног сата" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "пре %d сата/и" - -#: template/functions.php:85 msgid "today" msgstr "данас" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "јуче" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "пре %d дана" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "прошлог месеца" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "пре %d месеца/и" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "прошле године" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "година раније" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 49ce87eb10..507913d3bf 100644 --- a/l10n/sr@latin/core.po +++ b/l10n/sr@latin/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,63 @@ msgstr "Novembar" msgid "December" msgstr "Decembar" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Podešavanja" -#: js/js.js:753 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:754 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:755 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:756 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:757 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:758 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:759 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:760 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:761 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:762 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:763 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:764 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:765 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +381,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +583,10 @@ msgstr "" msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/sr@latin/files.po b/l10n/sr@latin/files.po index e30f663a08..50e770f67b 100644 --- a/l10n/sr@latin/files.po +++ b/l10n/sr@latin/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-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Obriši" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,14 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +207,19 @@ msgstr "Veličina" msgid "Modified" msgstr "Zadnja izmena" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format @@ -309,6 +302,10 @@ msgstr "Preuzmi" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Obriši" + #: templates/index.php:105 msgid "Upload too large" msgstr "Pošiljka je prevelika" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index fc0635646c..f1524d3b93 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,19 @@ msgstr "Ime" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index 2218d64277..fd83ff452b 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Korisnici" #: app.php:409 -msgid "Apps" -msgstr "Programi" - -#: app.php:417 msgid "Admin" msgstr "Adninistracija" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index 96edceb621..36486c22d6 100644 --- a/l10n/sv/core.po +++ b/l10n/sv/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -141,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Inställningar" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 minut sedan" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuter sedan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 timme sedan" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} timmar sedan" - -#: js/js.js:819 msgid "today" msgstr "i dag" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} dagar sedan" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "förra månaden" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} månader sedan" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "månader sedan" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "förra året" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "år sedan" @@ -381,9 +381,10 @@ msgstr "Uppdateringen misslyckades. Rapportera detta problem till \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -124,15 +124,11 @@ msgstr "Dela" msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Radera" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Byt namn" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Väntar" @@ -160,15 +156,13 @@ msgstr "ersatt {new_name} med {old_name}" msgid "undo" msgstr "ångra" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "utför raderingen" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 filuppladdning" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "filer laddas upp" @@ -216,21 +210,17 @@ msgstr "Storlek" msgid "Modified" msgstr "Ändrad" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mapp" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappar" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} filer" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -313,6 +303,10 @@ msgstr "Ladda ner" msgid "Unshare" msgstr "Sluta dela" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Radera" + #: templates/index.php:105 msgid "Upload too large" msgstr "För stor uppladdning" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index c9d78f13d3..53394af770 100644 --- a/l10n/sv/files_encryption.po +++ b/l10n/sv/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:59+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-11 08:07-0400\n" +"PO-Revision-Date: 2013-08-09 12:41+0000\n" +"Last-Translator: Magnus Höglund \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,7 +74,7 @@ msgid "" "Please make sure that PHP 5.3.3 or newer is installed and that OpenSSL " "together with the PHP extension is enabled and configured properly. For now," " the encryption app has been disabled." -msgstr "" +msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och korrekt konfigurerad. Kryptering är tillsvidare inaktiverad." #: hooks/hooks.php:263 msgid "Following users are not set up for encryption:" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index 98a9df0dec..ac516cb4cb 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Magnus Höglund \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,17 @@ msgstr "Namn" msgid "Deleted" msgstr "Raderad" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 mapp" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} mappar" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index e889ebc259..1f5f24739b 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -36,14 +36,10 @@ msgid "Users" msgstr "Användare" #: app.php:409 -msgid "Apps" -msgstr "Program" - -#: app.php:417 msgid "Admin" msgstr "Admin" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "Misslyckades med att uppgradera \"%s\"." @@ -212,50 +208,46 @@ msgid "seconds ago" msgstr "sekunder sedan" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 minut sedan" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d minuter sedan" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 timme sedan" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d timmar sedan" - -#: template/functions.php:85 msgid "today" msgstr "i dag" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "i går" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d dagar sedan" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "förra månaden" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d månader sedan" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "förra året" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "år sedan" diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 78b1d8f498..19567db98d 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-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-25 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:723 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,7 +226,7 @@ msgstr "" #: 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:129 js/share.js:142 js/share.js:149 -#: js/share.js:631 js/share.js:643 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,7 +246,7 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" @@ -346,23 +346,23 @@ msgstr "" msgid "share" msgstr "" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:631 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:643 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -461,7 +462,7 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/sw_KE/files.po b/l10n/sw_KE/files.po index 1187272d81..80c9d290d8 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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-22 05:55+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +194,29 @@ msgstr "" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -285,45 +275,49 @@ msgstr "" msgid "From link" msgstr "" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "" -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + +#: templates/index.php:105 msgid "Upload too large" msgstr "" -#: templates/index.php:109 +#: templates/index.php:107 msgid "" "The files you are trying to upload exceed the maximum size for file uploads " "on this server." msgstr "" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index 1cce275797..3edc43234c 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-07-30 01:55-0400\n" -"PO-Revision-Date: 2013-07-30 05:56+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 5f0afb54ab..ed7bf38925 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "" @@ -210,54 +206,50 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index edc3e7168d..b39ec3ce71 100644 --- a/l10n/ta_LK/core.po +++ b/l10n/ta_LK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "கார்த்திகை" msgid "December" msgstr "மார்கழி" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "அமைப்புகள்" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 நிமிடத்திற்கு முன் " - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{நிமிடங்கள்} நிமிடங்களுக்கு முன் " +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 மணித்தியாலத்திற்கு முன்" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{மணித்தியாலங்கள்} மணித்தியாலங்களிற்கு முன்" - -#: js/js.js:819 msgid "today" msgstr "இன்று" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "நேற்று" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{நாட்கள்} நாட்களுக்கு முன்" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "கடந்த மாதம்" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{மாதங்கள்} மாதங்களிற்கு முன்" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "மாதங்களுக்கு முன்" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "கடந்த வருடம்" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "வருடங்களுக்கு முன்" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "ownCloud இன் கடவுச்சொல் மீளமைப்பு" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "விடுபதிகை செய்க" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!" diff --git a/l10n/ta_LK/files.po b/l10n/ta_LK/files.po index c1d5cd594e..ef480f6d5f 100644 --- a/l10n/ta_LK/files.po +++ b/l10n/ta_LK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "பகிர்வு" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "நீக்குக" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "பெயர்மாற்றம்" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "நிலுவையிலுள்ள" @@ -156,15 +152,13 @@ msgstr "{new_name} ஆனது {old_name} இனால் மாற்றப் msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "அளவு" msgid "Modified" msgstr "மாற்றப்பட்டது" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 கோப்புறை" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 கோப்பு" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{எண்ணிக்கை} கோப்புகள்" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "பதிவிறக்குக" msgid "Unshare" msgstr "பகிரப்படாதது" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "நீக்குக" + #: templates/index.php:105 msgid "Upload too large" msgstr "பதிவேற்றல் மிகப்பெரியது" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 83e8e56765..6cf36b94cd 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "பெயர்" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 கோப்புறை" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 கோப்பு" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{எண்ணிக்கை} கோப்புகள்" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index bf7c398a45..7b29aad397 100644 --- a/l10n/ta_LK/lib.po +++ b/l10n/ta_LK/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "பயனாளர்" #: app.php:409 -msgid "Apps" -msgstr "செயலிகள்" - -#: app.php:417 msgid "Admin" msgstr "நிர்வாகம்" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "செக்கன்களுக்கு முன்" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 நிமிடத்திற்கு முன் " +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d நிமிடங்களுக்கு முன்" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 மணித்தியாலத்திற்கு முன்" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d மணித்தியாலத்திற்கு முன்" - -#: template/functions.php:85 msgid "today" msgstr "இன்று" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "நேற்று" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d நாட்களுக்கு முன்" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "கடந்த மாதம்" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d மாதத்திற்கு முன்" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "கடந்த வருடம்" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "வருடங்களுக்கு முன்" diff --git a/l10n/te/core.po b/l10n/te/core.po index 29dc5eaa0f..7cd1f3cd42 100644 --- a/l10n/te/core.po +++ b/l10n/te/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "నవంబర్" msgid "December" msgstr "డిసెంబర్" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "అమరికలు" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "క్షణాల క్రితం" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 నిమిషం క్రితం" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} నిమిషాల క్రితం" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 గంట క్రితం" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} గంటల క్రితం" - -#: js/js.js:819 msgid "today" msgstr "ఈరోజు" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "నిన్న" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} రోజుల క్రితం" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "పోయిన నెల" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} నెలల క్రితం" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "నెలల క్రితం" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "సంవత్సరాల క్రితం" @@ -377,8 +377,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "నిష్క్రమించు" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/te/files.po b/l10n/te/files.po index c2e030fd6a..8f42d68cd8 100644 --- a/l10n/te/files.po +++ b/l10n/te/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "తొలగించు" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "పరిమాణం" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "తొలగించు" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index 6fdda4a8c9..b4d02b2255 100644 --- a/l10n/te/files_trashbin.po +++ b/l10n/te/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "పేరు" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 370f405c28..ed3dcbca48 100644 --- a/l10n/te/lib.po +++ b/l10n/te/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "వాడుకరులు" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "క్షణాల క్రితం" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 నిమిషం క్రితం" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 గంట క్రితం" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "ఈరోజు" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "నిన్న" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "పోయిన నెల" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "పోయిన సంవత్సరం" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "సంవత్సరాల క్రితం" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index b0796ac8e8..4ad9a4187e 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/share.php:97 #, php-format @@ -137,59 +138,59 @@ msgstr "" msgid "December" msgstr "" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "" @@ -377,8 +378,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +580,10 @@ msgstr "" msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/templates/files.pot b/l10n/templates/files.pot index 88cd6e591d..cf40a67202 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/move.php:17 #, php-format @@ -120,15 +121,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +153,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +207,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +300,10 @@ msgstr "" msgid "Unshare" msgstr "" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 3a9064c432..ef73dc7961 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 1f22eb0b38..6fa1622281 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_sharing.pot b/l10n/templates/files_sharing.pot index c071f7d65d..2e1bbd584b 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 493571b97c..2836a306cd 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: ajax/delete.php:42 #, php-format @@ -51,21 +52,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 92fd83bea1..eb2c4eba9c 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 4d1067b2f2..befa7cfeba 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: app.php:360 msgid "Help" @@ -34,14 +35,10 @@ msgid "Users" msgstr "" #: app.php:409 -msgid "Apps" -msgstr "" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +207,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/templates/settings.pot b/l10n/templates/settings.pot index 4a428b9897..80d557594e 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_ldap.pot b/l10n/templates/user_ldap.pot index 72356b7d73..e4a2c71a93 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index 2ef2a44d6c..0c13a6a320 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-08-09 07:59-0400\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index e719e85d4a..b385925517 100644 --- a/l10n/th_TH/core.po +++ b/l10n/th_TH/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "พฤศจิกายน" msgid "December" msgstr "ธันวาคม" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "ตั้งค่า" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 นาทีก่อนหน้านี้" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} นาทีก่อนหน้านี้" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 ชั่วโมงก่อนหน้านี้" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} ชั่วโมงก่อนหน้านี้" - -#: js/js.js:819 msgid "today" msgstr "วันนี้" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "เมื่อวานนี้" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{day} วันก่อนหน้านี้" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "เดือนที่แล้ว" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} เดือนก่อนหน้านี้" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "เดือน ที่ผ่านมา" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "ปีที่แล้ว" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "ปี ที่ผ่านมา" @@ -377,9 +373,10 @@ msgstr "การอัพเดทไม่เป็นผลสำเร็จ msgid "The update was successful. Redirecting you to ownCloud now." msgstr "การอัพเดทเสร็จเรียบร้อยแล้ว กำลังเปลี่ยนเส้นทางไปที่ ownCloud อยู่ในขณะนี้" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "รีเซ็ตรหัสผ่าน ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "ออกจากระบบ" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว" diff --git a/l10n/th_TH/files.po b/l10n/th_TH/files.po index cb5abcd2e6..23054636f7 100644 --- a/l10n/th_TH/files.po +++ b/l10n/th_TH/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "แชร์" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "ลบ" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "เปลี่ยนชื่อ" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "อยู่ระหว่างดำเนินการ" @@ -156,15 +152,12 @@ msgstr "แทนที่ {new_name} ด้วย {old_name} แล้ว" msgid "undo" msgstr "เลิกทำ" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "ดำเนินการตามคำสั่งลบ" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "การอัพโหลดไฟล์" @@ -212,21 +205,15 @@ msgstr "ขนาด" msgid "Modified" msgstr "แก้ไขแล้ว" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 โฟลเดอร์" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} โฟลเดอร์" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ไฟล์" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ไฟล์" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "ดาวน์โหลด" msgid "Unshare" msgstr "ยกเลิกการแชร์" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "ลบ" + #: templates/index.php:105 msgid "Upload too large" msgstr "ไฟล์ที่อัพโหลดมีขนาดใหญ่เกินไป" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index c237d68d6d..d4723ca5dc 100644 --- a/l10n/th_TH/files_trashbin.po +++ b/l10n/th_TH/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "ชื่อ" msgid "Deleted" msgstr "ลบแล้ว" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 โฟลเดอร์" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} โฟลเดอร์" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ไฟล์" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ไฟล์" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index 314f740f6b..afaf5b524b 100644 --- a/l10n/th_TH/lib.po +++ b/l10n/th_TH/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "ผู้ใช้งาน" #: app.php:409 -msgid "Apps" -msgstr "แอปฯ" - -#: app.php:417 msgid "Admin" msgstr "ผู้ดูแล" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "วินาที ก่อนหน้านี้" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 นาทีก่อนหน้านี้" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d นาทีที่ผ่านมา" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 ชั่วโมงก่อนหน้านี้" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d ชั่วโมงก่อนหน้านี้" - -#: template/functions.php:85 msgid "today" msgstr "วันนี้" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "เมื่อวานนี้" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d วันที่ผ่านมา" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "เดือนที่แล้ว" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d เดือนมาแล้ว" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "ปีที่แล้ว" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "ปี ที่ผ่านมา" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index b94e914f03..671988fe77 100644 --- a/l10n/tr/core.po +++ b/l10n/tr/core.po @@ -4,13 +4,14 @@ # # Translators: # ismail yenigül , 2013 +# tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:20+0000\n" +"Last-Translator: tridinebandim\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 +26,7 @@ msgstr "%s sizinle »%s« paylaşımında bulundu" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." -msgstr "Kategori türü desteklenmemektedir." +msgstr "Kategori türü girilmedi." #: ajax/vcategories/add.php:30 msgid "No category to add?" @@ -138,59 +139,59 @@ msgstr "Kasım" msgid "December" msgstr "Aralık" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "saniye önce" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n dakika önce" +msgstr[1] "%n dakika önce" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n saat önce" +msgstr[1] "%n saat önce" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "1 dakika önce" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} dakika önce" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "1 saat önce" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} saat önce" - -#: js/js.js:819 msgid "today" msgstr "bugün" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "dün" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} gün önce" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "%n gün önce" +msgstr[1] "%n gün önce" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "geçen ay" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} ay önce" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n ay önce" +msgstr[1] "%n ay önce" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "ay önce" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "geçen yıl" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "yıl önce" @@ -378,9 +379,10 @@ msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin documentation." -msgstr "" +msgstr "Server'ınızı nasıl ayarlayacağınıza dair bilgi için, lütfen dokümantasyon sayfasını ziyaret edin." #: templates/installation.php:47 msgid "Create an admin account" @@ -579,6 +581,10 @@ msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." msgid "Log out" msgstr "Çıkış yap" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Daha fazla Uygulama" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Otomatik oturum açma reddedildi!" diff --git a/l10n/tr/files.po b/l10n/tr/files.po index da9b5f4378..8ef98d31c6 100644 --- a/l10n/tr/files.po +++ b/l10n/tr/files.po @@ -4,12 +4,13 @@ # # Translators: # ismail yenigül , 2013 +# tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -121,15 +122,11 @@ msgstr "Paylaş" msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Sil" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "İsim değiştir." -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Bekliyor" @@ -157,15 +154,13 @@ msgstr "{new_name} ismi {old_name} ile değiştirildi" msgid "undo" msgstr "geri al" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "Silme işlemini gerçekleştir" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "%n dosya yükleniyor" +msgstr[1] "%n dosya yükleniyor" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 dosya yüklendi" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "Dosyalar yükleniyor" @@ -213,21 +208,17 @@ msgstr "Boyut" msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dizin" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n dizin" +msgstr[1] "%n dizin" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dizin" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 dosya" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} dosya" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n dosya" +msgstr[1] "%n dosya" #: lib/app.php:73 #, php-format @@ -310,6 +301,10 @@ msgstr "İndir" msgid "Unshare" msgstr "Paylaşılmayan" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Sil" + #: templates/index.php:105 msgid "Upload too large" msgstr "Yükleme çok büyük" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index 2fb786621b..f46712fc9f 100644 --- a/l10n/tr/files_trashbin.po +++ b/l10n/tr/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:20+0000\n" +"Last-Translator: tridinebandim\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" @@ -51,25 +52,21 @@ msgstr "İsim" msgid "Deleted" msgstr "Silindi" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 dizin" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "%n dizin" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} dizin" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 dosya" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} dosya" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "%n dosya" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" -msgstr "" +msgstr "geri yüklendi" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index 8b7f4d190f..1146ef5bfd 100644 --- a/l10n/tr/lib.po +++ b/l10n/tr/lib.po @@ -4,13 +4,14 @@ # # Translators: # ismail yenigül , 2013 +# tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:30+0000\n" +"Last-Translator: tridinebandim\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" @@ -35,17 +36,13 @@ msgid "Users" msgstr "Kullanıcılar" #: app.php:409 -msgid "Apps" -msgstr "Uygulamalar" - -#: app.php:417 msgid "Admin" msgstr "Yönetici" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." -msgstr "" +msgstr "\"%s\" yükseltme başarısız oldu." #: defaults.php:35 msgid "web services under your control" @@ -54,7 +51,7 @@ msgstr "Bilgileriniz güvenli ve şifreli" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "\"%s\" açılamıyor" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. " #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,52 @@ msgid "seconds ago" msgstr "saniye önce" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 dakika önce" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "%n dakika önce" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d dakika önce" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "%n saat önce" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 saat önce" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d saat önce" - -#: template/functions.php:85 msgid "today" msgstr "bugün" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "dün" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d gün önce" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "%n gün önce" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "geçen ay" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d ay önce" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "%n ay önce" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "geçen yıl" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "yıl önce" #: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Neden olan:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/tr/settings.po b/l10n/tr/settings.po index fd3d00a306..7521d03f55 100644 --- a/l10n/tr/settings.po +++ b/l10n/tr/settings.po @@ -4,13 +4,14 @@ # # Translators: # ismail yenigül , 2013 +# tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 11:00+0000\n" +"Last-Translator: tridinebandim\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" @@ -181,7 +182,7 @@ msgid "" "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 dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. .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." #: templates/admin.php:29 msgid "Setup Warning" @@ -196,7 +197,7 @@ msgstr "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırı #: templates/admin.php:33 #, php-format msgid "Please double check the installation guides." -msgstr "" +msgstr "Lütfen kurulum kılavuzlarını tekrar kontrol edin." #: templates/admin.php:44 msgid "Module 'fileinfo' missing" @@ -218,7 +219,7 @@ msgid "" "System locale can't be set 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 "Sistem yereli %s olarak değiştirilemedi. Bu, dosya adlarındaki bazı karakterlerde sorun olabileceği anlamına gelir. %s desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." #: templates/admin.php:75 msgid "Internet connection not working" @@ -231,7 +232,7 @@ msgid "" "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." -msgstr "" +msgstr "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz." #: templates/admin.php:92 msgid "Cron" @@ -245,11 +246,11 @@ msgstr "Yüklenen her sayfa ile bir görev çalıştır" msgid "" "cron.php is registered at a webcron service to call cron.php once a minute " "over http." -msgstr "" +msgstr "Http üzerinden dakikada bir çalıştırılmak üzere, cron.php bir webcron hizmetine kaydedildi." #: templates/admin.php:121 msgid "Use systems cron service to call the cron.php file once a minute." -msgstr "" +msgstr "cron.php dosyasını dakikada bir çağırmak için sistemin cron hizmetini kullan. " #: templates/admin.php:128 msgid "Sharing" @@ -273,7 +274,7 @@ msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantı #: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Herkes tarafından yüklemeye izin ver" #: templates/admin.php:152 msgid "" @@ -307,14 +308,14 @@ msgstr "HTTPS bağlantısına zorla" #: templates/admin.php:193 #, php-format msgid "Forces the clients to connect to %s via an encrypted connection." -msgstr "" +msgstr "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar." #: templates/admin.php:199 #, php-format msgid "" "Please connect to your %s 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 ,%s a HTTPS ile bağlanın." #: templates/admin.php:211 msgid "Log" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index 3355bfab96..962ef65e3e 100644 --- a/l10n/ug/core.po +++ b/l10n/ug/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "ئوغلاق" msgid "December" msgstr "كۆنەك" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "تەڭشەكلەر" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 مىنۇت ئىلگىرى" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 سائەت ئىلگىرى" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "بۈگۈن" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "تۈنۈگۈن" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "تىزىمدىن چىق" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ug/files.po b/l10n/ug/files.po index efcb39c0c6..9356e0fa38 100644 --- a/l10n/ug/files.po +++ b/l10n/ug/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "ھەمبەھىر" msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "ئۆچۈر" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "ئات ئۆزگەرت" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "كۈتۈۋاتىدۇ" @@ -156,15 +152,12 @@ msgstr "" msgid "undo" msgstr "يېنىۋال" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 ھۆججەت يۈكلىنىۋاتىدۇ" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "ھۆججەت يۈكلىنىۋاتىدۇ" @@ -212,21 +205,15 @@ msgstr "چوڭلۇقى" msgid "Modified" msgstr "ئۆزگەرتكەن" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 قىسقۇچ" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ھۆججەت" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} ھۆججەت" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "چۈشۈر" msgid "Unshare" msgstr "ھەمبەھىرلىمە" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "ئۆچۈر" + #: templates/index.php:105 msgid "Upload too large" msgstr "يۈكلەندىغىنى بەك چوڭ" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 39319be3ea..df0057cd76 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "ئاتى" msgid "Deleted" msgstr "ئۆچۈرۈلدى" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 قىسقۇچ" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 ھۆججەت" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} ھۆججەت" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index 018931a3d7..657d41ba62 100644 --- a/l10n/ug/lib.po +++ b/l10n/ug/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "ئىشلەتكۈچىلەر" #: app.php:409 -msgid "Apps" -msgstr "ئەپلەر" - -#: app.php:417 msgid "Admin" msgstr "" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 مىنۇت ئىلگىرى" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d مىنۇت ئىلگىرى" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 سائەت ئىلگىرى" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d سائەت ئىلگىرى" - -#: template/functions.php:85 msgid "today" msgstr "بۈگۈن" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "تۈنۈگۈن" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d كۈن ئىلگىرى" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d ئاي ئىلگىرى" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 2d8ce3b796..e5cc3c9037 100644 --- a/l10n/uk/core.po +++ b/l10n/uk/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,63 @@ msgstr "Листопад" msgid "December" msgstr "Грудень" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Налаштування" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "секунди тому" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 хвилину тому" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} хвилин тому" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 годину тому" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} години тому" - -#: js/js.js:819 msgid "today" msgstr "сьогодні" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "вчора" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} днів тому" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "минулого місяця" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} місяців тому" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "місяці тому" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "минулого року" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "роки тому" @@ -377,9 +381,10 @@ msgstr "Оновлення виконалось неуспішно. Будь л msgid "The update was successful. Redirecting you to ownCloud now." msgstr "Оновлення виконалось успішно. Перенаправляємо вас на ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "скидання пароля ownCloud" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +583,10 @@ msgstr "" msgid "Log out" msgstr "Вихід" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматичний вхід в систему відхилений!" diff --git a/l10n/uk/files.po b/l10n/uk/files.po index 298b776c92..7622ad56c5 100644 --- a/l10n/uk/files.po +++ b/l10n/uk/files.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# zubr139 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -120,15 +121,11 @@ msgstr "Поділитися" msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Видалити" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Перейменувати" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Очікування" @@ -156,15 +153,14 @@ msgstr "замінено {new_name} на {old_name}" msgid "undo" msgstr "відмінити" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "виконати операцію видалення" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 файл завантажується" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "файли завантажуються" @@ -212,26 +208,24 @@ msgstr "Розмір" msgid "Modified" msgstr "Змінено" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 папка" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 файл" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} файлів" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/app.php:73 #, php-format msgid "%s could not be renamed" -msgstr "" +msgstr "%s не може бути перейменований" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -309,6 +303,10 @@ msgstr "Завантажити" msgid "Unshare" msgstr "Закрити доступ" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Видалити" + #: templates/index.php:105 msgid "Upload too large" msgstr "Файл занадто великий" @@ -329,11 +327,11 @@ msgstr "Поточне сканування" #: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "каталог" #: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "каталоги" #: templates/part.list.php:85 msgid "file" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 5fbe66a5b7..617e1276bf 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Soul Kim \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -52,21 +52,19 @@ msgstr "Ім'я" msgid "Deleted" msgstr "Видалено" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 папка" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} файлів" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 89913155b8..7c870f656c 100644 --- a/l10n/uk/lib.po +++ b/l10n/uk/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Користувачі" #: app.php:409 -msgid "Apps" -msgstr "Додатки" - -#: app.php:417 msgid "Admin" msgstr "Адмін" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,50 @@ msgid "seconds ago" msgstr "секунди тому" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 хвилину тому" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d хвилин тому" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 годину тому" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d годин тому" - -#: template/functions.php:85 msgid "today" msgstr "сьогодні" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "вчора" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d днів тому" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "минулого місяця" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d місяців тому" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "минулого року" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "роки тому" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index d925b8e02d..4555d21ef8 100644 --- a/l10n/ur_PK/core.po +++ b/l10n/ur_PK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,59 @@ msgstr "نومبر" msgid "December" msgstr "دسمبر" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "سیٹینگز" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,9 +377,10 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "اون کلاؤڈ پاسورڈ ری سیٹ" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" +msgstr "" #: lostpassword/templates/email.php:2 msgid "Use the following link to reset your password: {link}" @@ -578,6 +579,10 @@ msgstr "" msgid "Log out" msgstr "لاگ آؤٹ" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" diff --git a/l10n/ur_PK/files.po b/l10n/ur_PK/files.po index b2f06ff443..1a9ede9acc 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +206,17 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 #, php-format @@ -309,6 +299,10 @@ msgstr "" msgid "Unshare" msgstr "شئیرنگ ختم کریں" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index d85ab6432f..7ccb9117fb 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,17 @@ msgstr "" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 4347d7f1fa..4c170b1074 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "یوزرز" #: app.php:409 -msgid "Apps" -msgstr "ایپز" - -#: app.php:417 msgid "Admin" msgstr "ایڈمن" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,46 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index 987344f485..b8bfc91292 100644 --- a/l10n/vi/core.po +++ b/l10n/vi/core.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -138,59 +138,55 @@ msgstr "Tháng 11" msgid "December" msgstr "Tháng 12" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 phút trước" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} phút trước" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 giờ trước" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} giờ trước" - -#: js/js.js:819 msgid "today" msgstr "hôm nay" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} ngày trước" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "tháng trước" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} tháng trước" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "tháng trước" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "năm trước" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "năm trước" @@ -378,9 +374,10 @@ msgstr "Cập nhật không thành công . Vui lòng thông báo đến \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "Chia sẻ" msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "Xóa" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Sửa tên" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "Đang chờ" @@ -157,15 +153,12 @@ msgstr "đã thay thế {new_name} bằng {old_name}" msgid "undo" msgstr "lùi lại" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "thực hiện việc xóa" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 tệp tin đang được tải lên" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "tệp tin đang được tải lên" @@ -213,21 +206,15 @@ msgstr "Kích cỡ" msgid "Modified" msgstr "Thay đổi" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 thư mục" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} thư mục" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 tập tin" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} tập tin" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -310,6 +297,10 @@ msgstr "Tải về" msgid "Unshare" msgstr "Bỏ chia sẻ" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Xóa" + #: templates/index.php:105 msgid "Upload too large" msgstr "Tập tin tải lên quá lớn" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index b69967e63f..c0a3d67ec4 100644 --- a/l10n/vi/files_trashbin.po +++ b/l10n/vi/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "Tên" msgid "Deleted" msgstr "Đã xóa" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 thư mục" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} thư mục" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 tập tin" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} tập tin" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 8caf92f1aa..e7c2745b8d 100644 --- a/l10n/vi/lib.po +++ b/l10n/vi/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "Người dùng" #: app.php:409 -msgid "Apps" -msgstr "Ứng dụng" - -#: app.php:417 msgid "Admin" msgstr "Quản trị" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "vài giây trước" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 phút trước" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d phút trước" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 giờ trước" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d giờ trước" - -#: template/functions.php:85 msgid "today" msgstr "hôm nay" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "hôm qua" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d ngày trước" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "tháng trước" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d tháng trước" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "năm trước" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "năm trước" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index edc147a95f..8e8f62f373 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# aivier , 2013 # fkj , 2013 # Martin Liu , 2013 # hyy0591 , 2013 @@ -10,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: Martin Liu \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:20+0000\n" +"Last-Translator: aivier \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" @@ -140,59 +141,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "设置" -#: js/js.js:814 +#: js/js.js:812 msgid "seconds ago" msgstr "秒前" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n 分钟以前" + +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n 小时以前" + #: js/js.js:815 -msgid "1 minute ago" -msgstr "1 分钟前" - -#: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分钟前" - -#: js/js.js:817 -msgid "1 hour ago" -msgstr "1小时前" - -#: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours}小时前" - -#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:820 +#: js/js.js:816 msgid "yesterday" msgstr "昨天" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 天前" +#: js/js.js:817 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "%n 天以前" -#: js/js.js:822 +#: js/js.js:818 msgid "last month" msgstr "上个月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months}月前" +#: js/js.js:819 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n 个月以前" -#: js/js.js:824 +#: js/js.js:820 msgid "months ago" msgstr "月前" -#: js/js.js:825 +#: js/js.js:821 msgid "last year" msgstr "去年" -#: js/js.js:826 +#: js/js.js:822 msgid "years ago" msgstr "年前" @@ -380,9 +377,10 @@ msgstr "升级失败。请向, 2013 # hlx98007 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -121,15 +122,11 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "删除" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "等待中" @@ -157,15 +154,12 @@ msgstr "已用 {old_name} 替换 {new_name}" msgid "undo" msgstr "撤销" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "执行删除" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "正在上传 %n 个文件" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 个文件正在上传" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "个文件正在上传" @@ -213,21 +207,15 @@ msgstr "大小" msgid "Modified" msgstr "修改日期" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 个文件夹" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n 个文件夹" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 个文件" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n 个文件" #: lib/app.php:73 #, php-format @@ -310,6 +298,10 @@ msgstr "下载" msgid "Unshare" msgstr "取消分享" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "删除" + #: templates/index.php:105 msgid "Upload too large" msgstr "上传过大" diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 3305b7fbbb..e8248b6133 100644 --- a/l10n/zh_CN.GB2312/files_sharing.po +++ b/l10n/zh_CN.GB2312/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# aivier , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-07 08:59-0400\n" -"PO-Revision-Date: 2013-08-07 12:22+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:20+0000\n" +"Last-Translator: aivier \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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "密码错误。请重试。" #: templates/authenticate.php:7 msgid "Password" @@ -31,27 +32,27 @@ msgstr "提交" #: templates/part.404.php:3 msgid "Sorry, this link doesn’t seem to work anymore." -msgstr "" +msgstr "对不起,这个链接看起来是错误的。" #: templates/part.404.php:4 msgid "Reasons might be:" -msgstr "" +msgstr "原因可能是:" #: templates/part.404.php:6 msgid "the item was removed" -msgstr "" +msgstr "项目已经移除" #: templates/part.404.php:7 msgid "the link expired" -msgstr "" +msgstr "链接已过期" #: templates/part.404.php:8 msgid "sharing is disabled" -msgstr "" +msgstr "分享已经被禁用" #: templates/part.404.php:10 msgid "For more info, please ask the person who sent this link." -msgstr "" +msgstr "欲了解更多信息,请联系将此链接发送给你的人。" #: templates/public.php:15 #, php-format diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 861e81116e..cef04c5439 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:40+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "名称" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 个文件夹" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n 个文件夹" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 个文件" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n 个文件" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" @@ -77,7 +71,7 @@ msgstr "" #: templates/index.php:20 templates/index.php:22 msgid "Restore" -msgstr "" +msgstr "恢复" #: templates/index.php:30 templates/index.php:31 msgid "Delete" @@ -85,4 +79,4 @@ msgstr "删除" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" -msgstr "" +msgstr "删除的文件" diff --git a/l10n/zh_CN.GB2312/files_versions.po b/l10n/zh_CN.GB2312/files_versions.po index 209fa85593..faa83e8fc6 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: +# aivier , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:56+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 11:00+0000\n" +"Last-Translator: aivier \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" @@ -28,16 +29,16 @@ msgstr "版本" #: js/versions.js:53 msgid "Failed to revert {file} to revision {timestamp}." -msgstr "" +msgstr "无法恢复文件 {file} 到 版本 {timestamp}。" #: js/versions.js:79 msgid "More versions..." -msgstr "" +msgstr "更多版本" #: js/versions.js:116 msgid "No other versions available" -msgstr "" +msgstr "没有其他可用版本" #: js/versions.js:149 msgid "Restore" -msgstr "" +msgstr "恢复" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index c540254d9e..a996e9d467 100644 --- a/l10n/zh_CN.GB2312/lib.po +++ b/l10n/zh_CN.GB2312/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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:01+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:20+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "用户" #: app.php:409 -msgid "Apps" -msgstr "程序" - -#: app.php:417 msgid "Admin" msgstr "管理员" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 分钟前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n 分钟以前" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分钟前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n 小时以前" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1小时前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "今天" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨天" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 天前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "%n 天以前" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "上个月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "%n 个月以前" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "去年" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index 042d9edc6b..bcfa856ac0 100644 --- a/l10n/zh_CN.GB2312/user_webdavauth.po +++ b/l10n/zh_CN.GB2312/user_webdavauth.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# aivier , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-27 01:56-0400\n" -"PO-Revision-Date: 2013-07-27 05:57+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-15 10:30+0000\n" +"Last-Translator: aivier \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" @@ -19,11 +20,11 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV 验证" #: templates/settings.php:4 msgid "Address: " -msgstr "" +msgstr "地址:" #: templates/settings.php:7 msgid "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index e740579b2a..e77bfe2828 100644 --- a/l10n/zh_CN/core.po +++ b/l10n/zh_CN/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "设置" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "秒前" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "一分钟前" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分钟前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1小时前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} 小时前" - -#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨天" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 天前" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "上月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} 月前" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "月前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "去年" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "年前" @@ -379,9 +375,10 @@ msgstr "更新不成功。请汇报将此问题汇报给 \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -123,15 +123,11 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久删除" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "删除" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "重命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "等待" @@ -159,15 +155,12 @@ msgstr "已将 {old_name}替换成 {new_name}" msgid "undo" msgstr "撤销" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "进行删除操作" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1个文件上传中" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "文件上传中" @@ -215,21 +208,15 @@ msgstr "大小" msgid "Modified" msgstr "修改日期" -#: js/files.js:763 -msgid "1 folder" -msgstr "1个文件夹" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 个文件" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -312,6 +299,10 @@ msgstr "下载" msgid "Unshare" msgstr "取消共享" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "删除" + #: templates/index.php:105 msgid "Upload too large" msgstr "上传文件过大" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index cc5197cd7a..9be866b5f3 100644 --- a/l10n/zh_CN/files_trashbin.po +++ b/l10n/zh_CN/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "名称" msgid "Deleted" msgstr "已删除" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1个文件夹" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 个文件" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} 个文件" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 880725f9d9..79efb5ea2f 100644 --- a/l10n/zh_CN/lib.po +++ b/l10n/zh_CN/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "用户" #: app.php:409 -msgid "Apps" -msgstr "应用" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,42 @@ msgid "seconds ago" msgstr "秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "一分钟前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分钟前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1小时前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d小时前" - -#: template/functions.php:85 msgid "today" msgstr "今天" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨天" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 天前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "上月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d 月前" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "去年" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "年前" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 6198af2acf..8c3d1f0833 100644 --- a/l10n/zh_HK/core.po +++ b/l10n/zh_HK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -137,59 +137,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "設定" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:819 msgid "today" msgstr "今日" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨日" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "前一月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "個月之前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -377,8 +373,9 @@ msgstr "" msgid "The update was successful. Redirecting you to ownCloud now." msgstr "更新成功, 正" -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -578,6 +575,10 @@ msgstr "" msgid "Log out" msgstr "登出" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動登入被拒" diff --git a/l10n/zh_HK/files.po b/l10n/zh_HK/files.po index bcfe27f804..5cfc431259 100644 --- a/l10n/zh_HK/files.po +++ b/l10n/zh_HK/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-16 01:29-0400\n" +"PO-Revision-Date: 2013-08-16 05:29+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -120,15 +120,11 @@ msgstr "分享" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "刪除" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" @@ -156,15 +152,12 @@ msgstr "" msgid "undo" msgstr "" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -212,21 +205,15 @@ msgstr "" msgid "Modified" msgstr "" -#: js/files.js:763 -msgid "1 folder" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{}文件夾" - -#: js/files.js:773 -msgid "1 file" -msgstr "" - -#: js/files.js:775 -msgid "{count} files" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -309,6 +296,10 @@ msgstr "下載" msgid "Unshare" msgstr "取消分享" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "刪除" + #: templates/index.php:105 msgid "Upload too large" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index f6d1a1f771..31ad547f9b 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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "名稱" msgid "Deleted" msgstr "" -#: js/trash.js:192 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{}文件夾" - -#: js/trash.js:202 -msgid "1 file" -msgstr "" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index a8ac7fdbd8..f9da45cb7c 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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -34,14 +34,10 @@ msgid "Users" msgstr "用戶" #: app.php:409 -msgid "Apps" -msgstr "軟件" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -210,50 +206,42 @@ msgid "seconds ago" msgstr "" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "" - -#: template/functions.php:85 msgid "today" msgstr "今日" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨日" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "前一月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 9ca958e0d1..2014ec345c 100644 --- a/l10n/zh_TW/core.po +++ b/l10n/zh_TW/core.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" -"Last-Translator: pellaeon \n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" +"Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:354 +#: js/js.js:355 msgid "Settings" msgstr "設定" -#: js/js.js:814 +#: js/js.js:815 msgid "seconds ago" msgstr "幾秒前" -#: js/js.js:815 -msgid "1 minute ago" -msgstr "1 分鐘前" - #: js/js.js:816 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分鐘前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: js/js.js:817 -msgid "1 hour ago" -msgstr "1 小時之前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: js/js.js:818 -msgid "{hours} hours ago" -msgstr "{hours} 小時前" - -#: js/js.js:819 msgid "today" msgstr "今天" -#: js/js.js:820 +#: js/js.js:819 msgid "yesterday" msgstr "昨天" -#: js/js.js:821 -msgid "{days} days ago" -msgstr "{days} 天前" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:822 +#: js/js.js:821 msgid "last month" msgstr "上個月" -#: js/js.js:823 -msgid "{months} months ago" -msgstr "{months} 個月前" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:824 +#: js/js.js:823 msgid "months ago" msgstr "幾個月前" -#: js/js.js:825 +#: js/js.js:824 msgid "last year" msgstr "去年" -#: js/js.js:826 +#: js/js.js:825 msgid "years ago" msgstr "幾年前" @@ -379,9 +375,10 @@ msgstr "升級失敗,請將此問題回報 \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -121,15 +121,11 @@ msgstr "分享" msgid "Delete permanently" msgstr "永久刪除" -#: js/fileactions.js:128 templates/index.php:91 templates/index.php:92 -msgid "Delete" -msgstr "刪除" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "重新命名" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:466 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "等候中" @@ -157,15 +153,12 @@ msgstr "使用 {new_name} 取代 {old_name}" msgid "undo" msgstr "復原" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "進行刪除動作" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: js/filelist.js:458 -msgid "1 file uploading" -msgstr "1 個檔案正在上傳" - -#: js/filelist.js:461 js/filelist.js:519 +#: js/filelist.js:518 msgid "files uploading" msgstr "檔案正在上傳中" @@ -213,21 +206,15 @@ msgstr "大小" msgid "Modified" msgstr "修改" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 個資料夾" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 個資料夾" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 個檔案" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} 個檔案" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/app.php:73 #, php-format @@ -310,6 +297,10 @@ msgstr "下載" msgid "Unshare" msgstr "取消共享" +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "刪除" + #: templates/index.php:105 msgid "Upload too large" msgstr "上傳過大" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index ca7ca5130f..f51e340bf8 100644 --- a/l10n/zh_TW/files_trashbin.po +++ b/l10n/zh_TW/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-08-09 07:59-0400\n" -"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -51,21 +51,15 @@ msgstr "名稱" msgid "Deleted" msgstr "已刪除" -#: js/trash.js:192 -msgid "1 folder" -msgstr "1 個資料夾" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "{count} folders" -msgstr "{count} 個資料夾" - -#: js/trash.js:202 -msgid "1 file" -msgstr "1 個檔案" - -#: js/trash.js:204 -msgid "{count} files" -msgstr "{count} 個檔案" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" #: lib/trash.php:819 lib/trash.php:821 msgid "restored" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index adb5dfb4f9..9f99db8fe3 100644 --- a/l10n/zh_TW/lib.po +++ b/l10n/zh_TW/lib.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-08-04 01:55-0400\n" -"PO-Revision-Date: 2013-08-04 05:02+0000\n" +"POT-Creation-Date: 2013-08-15 04:47-0400\n" +"PO-Revision-Date: 2013-08-15 08:48+0000\n" "Last-Translator: I Robot \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -35,14 +35,10 @@ msgid "Users" msgstr "使用者" #: app.php:409 -msgid "Apps" -msgstr "應用程式" - -#: app.php:417 msgid "Admin" msgstr "管理" -#: app.php:844 +#: app.php:836 #, php-format msgid "Failed to upgrade \"%s\"." msgstr "" @@ -211,50 +207,42 @@ msgid "seconds ago" msgstr "幾秒前" #: template/functions.php:81 -msgid "1 minute ago" -msgstr "1 分鐘前" +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" #: template/functions.php:82 -#, php-format -msgid "%d minutes ago" -msgstr "%d 分鐘前" +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" #: template/functions.php:83 -msgid "1 hour ago" -msgstr "1 小時之前" - -#: template/functions.php:84 -#, php-format -msgid "%d hours ago" -msgstr "%d 小時之前" - -#: template/functions.php:85 msgid "today" msgstr "今天" -#: template/functions.php:86 +#: template/functions.php:84 msgid "yesterday" msgstr "昨天" -#: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "%d 天前" +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" -#: template/functions.php:88 +#: template/functions.php:86 msgid "last month" msgstr "上個月" -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "%d 個月之前" +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: template/functions.php:90 +#: template/functions.php:88 msgid "last year" msgstr "去年" -#: template/functions.php:91 +#: template/functions.php:89 msgid "years ago" msgstr "幾年前" diff --git a/lib/app.php b/lib/app.php index 8ac4a16ffd..51dbdba041 100644 --- a/lib/app.php +++ b/lib/app.php @@ -402,15 +402,7 @@ class OC_App{ // if the user is an admin if(OC_User::isAdminUser(OC_User::getUser())) { - // admin apps menu - $settings[] = array( - "id" => "core_apps", - "order" => 3, - "href" => OC_Helper::linkToRoute( "settings_apps" ).'?installed', - "name" => $l->t("Apps"), - "icon" => OC_Helper::imagePath( "settings", "apps.svg" ) - ); - + // admin settings $settings[]=array( "id" => "admin", "order" => 1000, diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index adecc2bb90..597eabecf5 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -184,7 +184,7 @@ class Scanner extends BasicEmitter { } \OC_DB::commit(); foreach ($childQueue as $child) { - $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE); + $childSize = $this->scanChildren($child, self::SCAN_RECURSIVE, $reuse); if ($childSize === -1) { $size = -1; } else { diff --git a/lib/files/type/detection.php b/lib/files/type/detection.php new file mode 100644 index 0000000000..242a81cb5a --- /dev/null +++ b/lib/files/type/detection.php @@ -0,0 +1,121 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Type; + +/** + * Class Detection + * + * Mimetype detection + * + * @package OC\Files\Type + */ +class Detection { + protected $mimetypes = array(); + + /** + * add an extension -> mimetype mapping + * + * @param string $extension + * @param string $mimetype + */ + public function registerType($extension, $mimetype) { + $this->mimetypes[$extension] = $mimetype; + } + + /** + * add an array of extension -> mimetype mappings + * + * @param array $types + */ + public function registerTypeArray($types) { + $this->mimetypes = array_merge($this->mimetypes, $types); + } + + /** + * detect mimetype only based on filename, content of file is not used + * + * @param string $path + * @return string + */ + public function detectPath($path) { + if (strpos($path, '.')) { + //try to guess the type by the file extension + $extension = strtolower(strrchr(basename($path), ".")); + $extension = substr($extension, 1); //remove leading . + return (isset($this->mimetypes[$extension])) ? $this->mimetypes[$extension] : 'application/octet-stream'; + } else { + return 'application/octet-stream'; + } + } + + /** + * detect mimetype based on both filename and content + * + * @param string $path + * @return string + */ + public function detect($path) { + $isWrapped = (strpos($path, '://') !== false) and (substr($path, 0, 7) === 'file://'); + + if (@is_dir($path)) { + // directories are easy + return "httpd/unix-directory"; + } + + $mimeType = $this->detectPath($path); + + if ($mimeType === 'application/octet-stream' and function_exists('finfo_open') + and function_exists('finfo_file') and $finfo = finfo_open(FILEINFO_MIME) + ) { + $info = @strtolower(finfo_file($finfo, $path)); + if ($info) { + $mimeType = substr($info, 0, strpos($info, ';')); + } + finfo_close($finfo); + } + if (!$isWrapped and $mimeType === 'application/octet-stream' && function_exists("mime_content_type")) { + // use mime magic extension if available + $mimeType = mime_content_type($path); + } + if (!$isWrapped and $mimeType === 'application/octet-stream' && \OC_Helper::canExecute("file")) { + // it looks like we have a 'file' command, + // lets see if it does have mime support + $path = escapeshellarg($path); + $fp = popen("file -b --mime-type $path 2>/dev/null", "r"); + $reply = fgets($fp); + pclose($fp); + + //trim the newline + $mimeType = trim($reply); + + } + return $mimeType; + } + + /** + * detect mimetype based on the content of a string + * + * @param string $data + * @return string + */ + public function detectString($data) { + if (function_exists('finfo_open') and function_exists('finfo_file')) { + $finfo = finfo_open(FILEINFO_MIME); + return finfo_buffer($finfo, $data); + } else { + $tmpFile = \OC_Helper::tmpFile(); + $fh = fopen($tmpFile, 'wb'); + fwrite($fh, $data, 8024); + fclose($fh); + $mime = $this->detect($tmpFile); + unset($tmpFile); + return $mime; + } + } +} diff --git a/lib/files/type/templatemanager.php b/lib/files/type/templatemanager.php new file mode 100644 index 0000000000..cd1536d273 --- /dev/null +++ b/lib/files/type/templatemanager.php @@ -0,0 +1,46 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Files\Type; + +class TemplateManager { + protected $templates = array(); + + public function registerTemplate($mimetype, $path) { + $this->templates[$mimetype] = $path; + } + + /** + * get the path of the template for a mimetype + * + * @param string $mimetype + * @return string | null + */ + public function getTemplatePath($mimetype) { + if (isset($this->templates[$mimetype])) { + return $this->templates[$mimetype]; + } else { + return null; + } + } + + /** + * get the template content for a mimetype + * + * @param string $mimetype + * @return string + */ + public function getTemplate($mimetype) { + $path = $this->getTemplatePath($mimetype); + if ($path) { + return file_get_contents($path); + } else { + return ''; + } + } +} diff --git a/lib/helper.php b/lib/helper.php index ca508e1d93..5116519362 100644 --- a/lib/helper.php +++ b/lib/helper.php @@ -25,9 +25,10 @@ * Collection of useful functions */ class OC_Helper { - private static $mimetypes=array(); - private static $tmpFiles=array(); + private static $tmpFiles = array(); private static $mimetypeIcons = array(); + private static $mimetypeDetector; + private static $templateManager; /** * @brief Creates an url using a defined route @@ -39,7 +40,7 @@ class OC_Helper { * * Returns a url to the given app and file. */ - public static function linkToRoute( $route, $parameters = array() ) { + public static function linkToRoute($route, $parameters = array()) { $urlLinkTo = OC::getRouter()->generate($route, $parameters); return $urlLinkTo; } @@ -49,38 +50,35 @@ class OC_Helper { * @param string $app app * @param string $file file * @param array $args array with param=>value, will be appended to the returned url - * The value of $args will be urlencoded + * The value of $args will be urlencoded * @return string the url * * Returns a url to the given app and file. */ - public static function linkTo( $app, $file, $args = array() ) { - if( $app != '' ) { + public static function linkTo($app, $file, $args = array()) { + if ($app != '') { $app_path = OC_App::getAppPath($app); // Check if the app is in the app folder - if( $app_path && file_exists( $app_path.'/'.$file )) { - if(substr($file, -3) == 'php' || substr($file, -3) == 'css') { - $urlLinkTo = OC::$WEBROOT . '/index.php/apps/' . $app; - $urlLinkTo .= ($file!='index.php') ? '/' . $file : ''; - }else{ - $urlLinkTo = OC_App::getAppWebPath($app) . '/' . $file; + if ($app_path && file_exists($app_path . '/' . $file)) { + if (substr($file, -3) == 'php' || substr($file, -3) == 'css') { + $urlLinkTo = OC::$WEBROOT . '/index.php/apps/' . $app; + $urlLinkTo .= ($file != 'index.php') ? '/' . $file : ''; + } else { + $urlLinkTo = OC_App::getAppWebPath($app) . '/' . $file; } + } else { + $urlLinkTo = OC::$WEBROOT . '/' . $app . '/' . $file; } - else{ - $urlLinkTo = OC::$WEBROOT . '/' . $app . '/' . $file; - } - } - else{ - if( file_exists( OC::$SERVERROOT . '/core/'. $file )) { - $urlLinkTo = OC::$WEBROOT . '/core/'.$file; - } - else{ - $urlLinkTo = OC::$WEBROOT . '/'.$file; + } else { + if (file_exists(OC::$SERVERROOT . '/core/' . $file)) { + $urlLinkTo = OC::$WEBROOT . '/core/' . $file; + } else { + $urlLinkTo = OC::$WEBROOT . '/' . $file; } } if ($args && $query = http_build_query($args, '', '&')) { - $urlLinkTo .= '?'.$query; + $urlLinkTo .= '?' . $query; } return $urlLinkTo; @@ -91,13 +89,13 @@ class OC_Helper { * @param string $app app * @param string $file file * @param array $args array with param=>value, will be appended to the returned url - * The value of $args will be urlencoded + * The value of $args will be urlencoded * @return string the url * * Returns a absolute url to the given app and file. */ - public static function linkToAbsolute( $app, $file, $args = array() ) { - $urlLinkTo = self::linkTo( $app, $file, $args ); + public static function linkToAbsolute($app, $file, $args = array()) { + $urlLinkTo = self::linkTo($app, $file, $args); return self::makeURLAbsolute($urlLinkTo); } @@ -108,9 +106,8 @@ class OC_Helper { * * Returns a absolute url to the given app and file. */ - public static function makeURLAbsolute( $url ) - { - return OC_Request::serverProtocol(). '://' . OC_Request::serverHost() . $url; + public static function makeURLAbsolute($url) { + return OC_Request::serverProtocol() . '://' . OC_Request::serverHost() . $url; } /** @@ -120,8 +117,8 @@ class OC_Helper { * * Returns a url to the given service. */ - public static function linkToRemoteBase( $service ) { - return self::linkTo( '', 'remote.php') . '/' . $service; + public static function linkToRemoteBase($service) { + return self::linkTo('', 'remote.php') . '/' . $service; } /** @@ -132,9 +129,9 @@ class OC_Helper { * * Returns a absolute url to the given service. */ - public static function linkToRemote( $service, $add_slash = true ) { + public static function linkToRemote($service, $add_slash = true) { return self::makeURLAbsolute(self::linkToRemoteBase($service)) - . (($add_slash && $service[strlen($service)-1]!='/')?'/':''); + . (($add_slash && $service[strlen($service) - 1] != '/') ? '/' : ''); } /** @@ -146,8 +143,8 @@ class OC_Helper { * Returns a absolute url to the given service. */ public static function linkToPublic($service, $add_slash = false) { - return self::linkToAbsolute( '', 'public.php') . '?service=' . $service - . (($add_slash && $service[strlen($service)-1]!='/')?'/':''); + return self::linkToAbsolute('', 'public.php') . '?service=' . $service + . (($add_slash && $service[strlen($service) - 1] != '/') ? '/' : ''); } /** @@ -158,25 +155,25 @@ class OC_Helper { * * Returns the path to the image. */ - public static function imagePath( $app, $image ) { + public static function imagePath($app, $image) { // Read the selected theme from the config file $theme = OC_Util::getTheme(); // Check if the app is in the app folder - if( file_exists( OC::$SERVERROOT."/themes/$theme/apps/$app/img/$image" )) { - return OC::$WEBROOT."/themes/$theme/apps/$app/img/$image"; - }elseif( file_exists(OC_App::getAppPath($app)."/img/$image" )) { - return OC_App::getAppWebPath($app)."/img/$image"; - }elseif( !empty( $app ) and file_exists( OC::$SERVERROOT."/themes/$theme/$app/img/$image" )) { - return OC::$WEBROOT."/themes/$theme/$app/img/$image"; - }elseif( !empty( $app ) and file_exists( OC::$SERVERROOT."/$app/img/$image" )) { - return OC::$WEBROOT."/$app/img/$image"; - }elseif( file_exists( OC::$SERVERROOT."/themes/$theme/core/img/$image" )) { - return OC::$WEBROOT."/themes/$theme/core/img/$image"; - }elseif( file_exists( OC::$SERVERROOT."/core/img/$image" )) { - return OC::$WEBROOT."/core/img/$image"; - }else{ - throw new RuntimeException('image not found: image:'.$image.' webroot:'.OC::$WEBROOT.' serverroot:'.OC::$SERVERROOT); + if (file_exists(OC::$SERVERROOT . "/themes/$theme/apps/$app/img/$image")) { + return OC::$WEBROOT . "/themes/$theme/apps/$app/img/$image"; + } elseif (file_exists(OC_App::getAppPath($app) . "/img/$image")) { + return OC_App::getAppWebPath($app) . "/img/$image"; + } elseif (!empty($app) and file_exists(OC::$SERVERROOT . "/themes/$theme/$app/img/$image")) { + return OC::$WEBROOT . "/themes/$theme/$app/img/$image"; + } elseif (!empty($app) and file_exists(OC::$SERVERROOT . "/$app/img/$image")) { + return OC::$WEBROOT . "/$app/img/$image"; + } elseif (file_exists(OC::$SERVERROOT . "/themes/$theme/core/img/$image")) { + return OC::$WEBROOT . "/themes/$theme/core/img/$image"; + } elseif (file_exists(OC::$SERVERROOT . "/core/img/$image")) { + return OC::$WEBROOT . "/core/img/$image"; + } else { + throw new RuntimeException('image not found: image:' . $image . ' webroot:' . OC::$WEBROOT . ' serverroot:' . OC::$SERVERROOT); } } @@ -197,28 +194,28 @@ class OC_Helper { } // Replace slash and backslash with a minus $icon = str_replace('/', '-', $mimetype); - $icon = str_replace( '\\', '-', $icon); + $icon = str_replace('\\', '-', $icon); // Is it a dir? if ($mimetype === 'dir') { - self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/folder.png'; - return OC::$WEBROOT.'/core/img/filetypes/folder.png'; + self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/folder.png'; + return OC::$WEBROOT . '/core/img/filetypes/folder.png'; } // Icon exists? - if (file_exists(OC::$SERVERROOT.'/core/img/filetypes/'.$icon.'.png')) { - self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/'.$icon.'.png'; - return OC::$WEBROOT.'/core/img/filetypes/'.$icon.'.png'; + if (file_exists(OC::$SERVERROOT . '/core/img/filetypes/' . $icon . '.png')) { + self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/' . $icon . '.png'; + return OC::$WEBROOT . '/core/img/filetypes/' . $icon . '.png'; } // Try only the first part of the filetype $mimePart = substr($icon, 0, strpos($icon, '-')); - if (file_exists(OC::$SERVERROOT.'/core/img/filetypes/'.$mimePart.'.png')) { - self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/'.$mimePart.'.png'; - return OC::$WEBROOT.'/core/img/filetypes/'.$mimePart.'.png'; + if (file_exists(OC::$SERVERROOT . '/core/img/filetypes/' . $mimePart . '.png')) { + self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/' . $mimePart . '.png'; + return OC::$WEBROOT . '/core/img/filetypes/' . $mimePart . '.png'; } else { - self::$mimetypeIcons[$mimetype] = OC::$WEBROOT.'/core/img/filetypes/file.png'; - return OC::$WEBROOT.'/core/img/filetypes/file.png'; + self::$mimetypeIcons[$mimetype] = OC::$WEBROOT . '/core/img/filetypes/file.png'; + return OC::$WEBROOT . '/core/img/filetypes/file.png'; } } @@ -229,25 +226,25 @@ class OC_Helper { * * Makes 2048 to 2 kB. */ - public static function humanFileSize( $bytes ) { - if( $bytes < 0 ) { + public static function humanFileSize($bytes) { + if ($bytes < 0) { $l = OC_L10N::get('lib'); - return $l->t("couldn't be determined"); + return "?"; } - if( $bytes < 1024 ) { + if ($bytes < 1024) { return "$bytes B"; } - $bytes = round( $bytes / 1024, 1 ); - if( $bytes < 1024 ) { + $bytes = round($bytes / 1024, 1); + if ($bytes < 1024) { return "$bytes kB"; } - $bytes = round( $bytes / 1024, 1 ); - if( $bytes < 1024 ) { + $bytes = round($bytes / 1024, 1); + if ($bytes < 1024) { return "$bytes MB"; } // Wow, heavy duty for owncloud - $bytes = round( $bytes / 1024, 1 ); + $bytes = round($bytes / 1024, 1); return "$bytes GB"; } @@ -260,21 +257,21 @@ class OC_Helper { * * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 */ - public static function computerFileSize( $str ) { - $str=strtolower($str); + public static function computerFileSize($str) { + $str = strtolower($str); $bytes_array = array( 'b' => 1, 'k' => 1024, 'kb' => 1024, 'mb' => 1024 * 1024, - 'm' => 1024 * 1024, + 'm' => 1024 * 1024, 'gb' => 1024 * 1024 * 1024, - 'g' => 1024 * 1024 * 1024, + 'g' => 1024 * 1024 * 1024, 'tb' => 1024 * 1024 * 1024 * 1024, - 't' => 1024 * 1024 * 1024 * 1024, + 't' => 1024 * 1024 * 1024 * 1024, 'pb' => 1024 * 1024 * 1024 * 1024 * 1024, - 'p' => 1024 * 1024 * 1024 * 1024 * 1024, + 'p' => 1024 * 1024 * 1024 * 1024 * 1024, ); $bytes = floatval($str); @@ -299,18 +296,17 @@ class OC_Helper { return chmod($path, $filemode); $dh = opendir($path); while (($file = readdir($dh)) !== false) { - if($file != '.' && $file != '..') { - $fullpath = $path.'/'.$file; - if(is_link($fullpath)) + if ($file != '.' && $file != '..') { + $fullpath = $path . '/' . $file; + if (is_link($fullpath)) return false; - elseif(!is_dir($fullpath) && !@chmod($fullpath, $filemode)) - return false; - elseif(!self::chmodr($fullpath, $filemode)) + elseif (!is_dir($fullpath) && !@chmod($fullpath, $filemode)) + return false; elseif (!self::chmodr($fullpath, $filemode)) return false; } } closedir($dh); - if(@chmod($path, $filemode)) + if (@chmod($path, $filemode)) return true; else return false; @@ -323,8 +319,8 @@ class OC_Helper { * */ static function copyr($src, $dest) { - if(is_dir($src)) { - if(!is_dir($dest)) { + if (is_dir($src)) { + if (!is_dir($dest)) { mkdir($dest); } $files = scandir($src); @@ -333,7 +329,7 @@ class OC_Helper { self::copyr("$src/$file", "$dest/$file"); } } - }elseif(file_exists($src) && !\OC\Files\Filesystem::isFileBlacklisted($src)) { + } elseif (file_exists($src) && !\OC\Files\Filesystem::isFileBlacklisted($src)) { copy($src, $dest); } } @@ -344,105 +340,74 @@ class OC_Helper { * @return bool */ static function rmdirr($dir) { - if(is_dir($dir)) { - $files=scandir($dir); - foreach($files as $file) { + if (is_dir($dir)) { + $files = scandir($dir); + foreach ($files as $file) { if ($file != "." && $file != "..") { self::rmdirr("$dir/$file"); } } rmdir($dir); - }elseif(file_exists($dir)) { + } elseif (file_exists($dir)) { unlink($dir); } - if(file_exists($dir)) { + if (file_exists($dir)) { return false; - }else{ + } else { return true; } } + /** + * @return \OC\Files\Type\Detection + */ + static public function getMimetypeDetector() { + if (!self::$mimetypeDetector) { + self::$mimetypeDetector = new \OC\Files\Type\Detection(); + self::$mimetypeDetector->registerTypeArray(include 'mimetypes.list.php'); + } + return self::$mimetypeDetector; + } + + /** + * @return \OC\Files\Type\TemplateManager + */ + static public function getFileTemplateManager() { + if (!self::$templateManager) { + self::$templateManager = new \OC\Files\Type\TemplateManager(); + } + return self::$templateManager; + } + /** * Try to guess the mimetype based on filename * * @param string $path * @return string */ - static public function getFileNameMimeType($path){ - if(strpos($path, '.')) { - //try to guess the type by the file extension - if(!self::$mimetypes || self::$mimetypes != include 'mimetypes.list.php') { - self::$mimetypes=include 'mimetypes.list.php'; - } - $extension=strtolower(strrchr(basename($path), ".")); - $extension=substr($extension, 1);//remove leading . - return (isset(self::$mimetypes[$extension]))?self::$mimetypes[$extension]:'application/octet-stream'; - }else{ - return 'application/octet-stream'; - } + static public function getFileNameMimeType($path) { + return self::getMimetypeDetector()->detectPath($path); } /** * get the mimetype form a local file + * * @param string $path * @return string * does NOT work for ownClouds filesystem, use OC_FileSystem::getMimeType instead */ static function getMimeType($path) { - $isWrapped=(strpos($path, '://')!==false) and (substr($path, 0, 7)=='file://'); - - if (@is_dir($path)) { - // directories are easy - return "httpd/unix-directory"; - } - - $mimeType = self::getFileNameMimeType($path); - - if($mimeType=='application/octet-stream' and function_exists('finfo_open') - and function_exists('finfo_file') and $finfo=finfo_open(FILEINFO_MIME)) { - $info = @strtolower(finfo_file($finfo, $path)); - if($info) { - $mimeType=substr($info, 0, strpos($info, ';')); - } - finfo_close($finfo); - } - if (!$isWrapped and $mimeType=='application/octet-stream' && function_exists("mime_content_type")) { - // use mime magic extension if available - $mimeType = mime_content_type($path); - } - if (!$isWrapped and $mimeType=='application/octet-stream' && OC_Helper::canExecute("file")) { - // it looks like we have a 'file' command, - // lets see if it does have mime support - $path=escapeshellarg($path); - $fp = popen("file -b --mime-type $path 2>/dev/null", "r"); - $reply = fgets($fp); - pclose($fp); - - //trim the newline - $mimeType = trim($reply); - - } - return $mimeType; + return self::getMimetypeDetector()->detect($path); } /** * get the mimetype form a data string + * * @param string $data * @return string */ static function getStringMimeType($data) { - if(function_exists('finfo_open') and function_exists('finfo_file')) { - $finfo=finfo_open(FILEINFO_MIME); - return finfo_buffer($finfo, $data); - }else{ - $tmpFile=OC_Helper::tmpFile(); - $fh=fopen($tmpFile, 'wb'); - fwrite($fh, $data, 8024); - fclose($fh); - $mime=self::getMimeType($tmpFile); - unset($tmpFile); - return $mime; - } + return self::getMimetypeDetector()->detectString($data); } /** @@ -454,9 +419,9 @@ class OC_Helper { */ //FIXME: should also check for value validation (i.e. the email is an email). - public static function init_var($s, $d="") { + public static function init_var($s, $d = "") { $r = $d; - if(isset($_REQUEST[$s]) && !empty($_REQUEST[$s])) { + if (isset($_REQUEST[$s]) && !empty($_REQUEST[$s])) { $r = OC_Util::sanitizeHTML($_REQUEST[$s]); } @@ -466,12 +431,13 @@ class OC_Helper { /** * returns "checked"-attribute if request contains selected radio element * OR if radio element is the default one -- maybe? + * * @param string $s Name of radio-button element name * @param string $v Value of current radio-button element * @param string $d Value of default radio-button element */ public static function init_radio($s, $v, $d) { - if((isset($_REQUEST[$s]) && $_REQUEST[$s]==$v) || (!isset($_REQUEST[$s]) && $v == $d)) + if ((isset($_REQUEST[$s]) && $_REQUEST[$s] == $v) || (!isset($_REQUEST[$s]) && $v == $d)) print "checked=\"checked\" "; } @@ -503,17 +469,17 @@ class OC_Helper { $dirs = explode(PATH_SEPARATOR, $path); // WARNING : We have to check if open_basedir is enabled : $obd = ini_get('open_basedir'); - if($obd != "none") { + if ($obd != "none") { $obd_values = explode(PATH_SEPARATOR, $obd); - if(count($obd_values) > 0 and $obd_values[0]) { + if (count($obd_values) > 0 and $obd_values[0]) { // open_basedir is in effect ! // We need to check if the program is in one of these dirs : $dirs = $obd_values; } } - foreach($dirs as $dir) { - foreach($exts as $ext) { - if($check_fn("$dir/$name".$ext)) + foreach ($dirs as $dir) { + foreach ($exts as $ext) { + if ($check_fn("$dir/$name" . $ext)) return true; } } @@ -522,18 +488,19 @@ class OC_Helper { /** * copy the contents of one stream to another + * * @param resource $source * @param resource $target * @return int the number of bytes copied */ public static function streamCopy($source, $target) { - if(!$source or !$target) { + if (!$source or !$target) { return false; } $result = true; $count = 0; - while(!feof($source)) { - if ( ( $c = fwrite($target, fread($source, 8192)) ) === false) { + while (!feof($source)) { + if (($c = fwrite($target, fread($source, 8192))) === false) { $result = false; } else { $count += $c; @@ -544,37 +511,39 @@ class OC_Helper { /** * create a temporary file with an unique filename + * * @param string $postfix * @return string * * temporary files are automatically cleaned up after the script is finished */ - public static function tmpFile($postfix='') { - $file=get_temp_dir().'/'.md5(time().rand()).$postfix; - $fh=fopen($file, 'w'); + public static function tmpFile($postfix = '') { + $file = get_temp_dir() . '/' . md5(time() . rand()) . $postfix; + $fh = fopen($file, 'w'); fclose($fh); - self::$tmpFiles[]=$file; + self::$tmpFiles[] = $file; return $file; } /** * move a file to oc-noclean temp dir + * * @param string $filename * @return mixed * */ - public static function moveToNoClean($filename='') { + public static function moveToNoClean($filename = '') { if ($filename == '') { return false; } - $tmpDirNoClean=get_temp_dir().'/oc-noclean/'; + $tmpDirNoClean = get_temp_dir() . '/oc-noclean/'; if (!file_exists($tmpDirNoClean) || !is_dir($tmpDirNoClean)) { if (file_exists($tmpDirNoClean)) { unlink($tmpDirNoClean); } mkdir($tmpDirNoClean); } - $newname=$tmpDirNoClean.basename($filename); + $newname = $tmpDirNoClean . basename($filename); if (rename($filename, $newname)) { return $newname; } else { @@ -584,34 +553,35 @@ class OC_Helper { /** * create a temporary folder with an unique filename + * * @return string * * temporary files are automatically cleaned up after the script is finished */ public static function tmpFolder() { - $path=get_temp_dir().'/'.md5(time().rand()); + $path = get_temp_dir() . '/' . md5(time() . rand()); mkdir($path); - self::$tmpFiles[]=$path; - return $path.'/'; + self::$tmpFiles[] = $path; + return $path . '/'; } /** * remove all files created by self::tmpFile */ public static function cleanTmp() { - $leftoversFile=get_temp_dir().'/oc-not-deleted'; - if(file_exists($leftoversFile)) { - $leftovers=file($leftoversFile); - foreach($leftovers as $file) { + $leftoversFile = get_temp_dir() . '/oc-not-deleted'; + if (file_exists($leftoversFile)) { + $leftovers = file($leftoversFile); + foreach ($leftovers as $file) { self::rmdirr($file); } unlink($leftoversFile); } - foreach(self::$tmpFiles as $file) { - if(file_exists($file)) { - if(!self::rmdirr($file)) { - file_put_contents($leftoversFile, $file."\n", FILE_APPEND); + foreach (self::$tmpFiles as $file) { + if (file_exists($file)) { + if (!self::rmdirr($file)) { + file_put_contents($leftoversFile, $file . "\n", FILE_APPEND); } } } @@ -621,34 +591,34 @@ class OC_Helper { * remove all files in PHP /oc-noclean temp dir */ public static function cleanTmpNoClean() { - $tmpDirNoCleanFile=get_temp_dir().'/oc-noclean/'; - if(file_exists($tmpDirNoCleanFile)) { + $tmpDirNoCleanFile = get_temp_dir() . '/oc-noclean/'; + if (file_exists($tmpDirNoCleanFile)) { self::rmdirr($tmpDirNoCleanFile); } } /** - * Adds a suffix to the name in case the file exists - * - * @param $path - * @param $filename - * @return string - */ + * Adds a suffix to the name in case the file exists + * + * @param $path + * @param $filename + * @return string + */ public static function buildNotExistingFileName($path, $filename) { $view = \OC\Files\Filesystem::getView(); return self::buildNotExistingFileNameForView($path, $filename, $view); } /** - * Adds a suffix to the name in case the file exists - * - * @param $path - * @param $filename - * @return string - */ + * Adds a suffix to the name in case the file exists + * + * @param $path + * @param $filename + * @return string + */ public static function buildNotExistingFileNameForView($path, $filename, \OC\Files\View $view) { - if($path==='/') { - $path=''; + if ($path === '/') { + $path = ''; } if ($pos = strrpos($filename, '.')) { $name = substr($filename, 0, $pos); @@ -660,10 +630,10 @@ class OC_Helper { $newpath = $path . '/' . $filename; if ($view->file_exists($newpath)) { - if(preg_match_all('/\((\d+)\)/', $name, $matches, PREG_OFFSET_CAPTURE)) { + if (preg_match_all('/\((\d+)\)/', $name, $matches, PREG_OFFSET_CAPTURE)) { //Replace the last "(number)" with "(number+1)" - $last_match = count($matches[0])-1; - $counter = $matches[1][$last_match][0]+1; + $last_match = count($matches[0]) - 1; + $counter = $matches[1][$last_match][0] + 1; $offset = $matches[0][$last_match][1]; $match_length = strlen($matches[0][$last_match][0]); } else { @@ -671,9 +641,9 @@ class OC_Helper { $offset = false; } do { - if($offset) { + if ($offset) { //Replace the last "(number)" with "(number+1)" - $newname = substr_replace($name, '('.$counter.')', $offset, $match_length); + $newname = substr_replace($name, '(' . $counter . ')', $offset, $match_length); } else { $newname = $name . ' (' . $counter . ')'; } @@ -700,17 +670,17 @@ class OC_Helper { } /** - * @brief Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. - * - * @param array $input The array to work on - * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) - * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @return array - * - * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. - * based on http://www.php.net/manual/en/function.array-change-key-case.php#107715 - * - */ + * @brief Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. + * + * @param array $input The array to work on + * @param int $case Either MB_CASE_UPPER or MB_CASE_LOWER (default) + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @return array + * + * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. + * based on http://www.php.net/manual/en/function.array-change-key-case.php#107715 + * + */ public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { $case = ($case != MB_CASE_UPPER) ? MB_CASE_LOWER : MB_CASE_UPPER; $ret = array(); @@ -736,26 +706,26 @@ class OC_Helper { $length = intval($length); $string = mb_substr($string, 0, $start, $encoding) . $replacement . - mb_substr($string, $start+$length, mb_strlen($string, 'UTF-8')-$start, $encoding); + mb_substr($string, $start + $length, mb_strlen($string, 'UTF-8') - $start, $encoding); return $string; } /** - * @brief Replace all occurrences of the search string with the replacement string - * - * @param string $search The value being searched for, otherwise known as the needle. - * @param string $replace The replacement - * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack. - * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 - * @param int $count If passed, this will be set to the number of replacements performed. - * @return string - * - */ + * @brief Replace all occurrences of the search string with the replacement string + * + * @param string $search The value being searched for, otherwise known as the needle. + * @param string $replace The replacement + * @param string $subject The string or array being searched and replaced on, otherwise known as the haystack. + * @param string $encoding The encoding parameter is the character encoding. Defaults to UTF-8 + * @param int $count If passed, this will be set to the number of replacements performed. + * @return string + * + */ public static function mb_str_replace($search, $replace, $subject, $encoding = 'UTF-8', &$count = null) { $offset = -1; $length = mb_strlen($search, $encoding); - while(($i = mb_strrpos($subject, $search, $offset, $encoding)) !== false ) { + while (($i = mb_strrpos($subject, $search, $offset, $encoding)) !== false) { $subject = OC_Helper::mb_substr_replace($subject, $replace, $i, $length); $offset = $i - mb_strlen($subject, $encoding); $count++; @@ -764,21 +734,21 @@ class OC_Helper { } /** - * @brief performs a search in a nested array - * @param array $haystack the array to be searched - * @param string $needle the search string - * @param string $index optional, only search this key name - * @return mixed the key of the matching field, otherwise false - * - * performs a search in a nested array - * - * taken from http://www.php.net/manual/en/function.array-search.php#97645 - */ + * @brief performs a search in a nested array + * @param array $haystack the array to be searched + * @param string $needle the search string + * @param string $index optional, only search this key name + * @return mixed the key of the matching field, otherwise false + * + * performs a search in a nested array + * + * taken from http://www.php.net/manual/en/function.array-search.php#97645 + */ public static function recursiveArraySearch($haystack, $needle, $index = null) { $aIt = new RecursiveArrayIterator($haystack); $it = new RecursiveIteratorIterator($aIt); - while($it->valid()) { + while ($it->valid()) { if (((isset($index) AND ($it->key() == $index)) OR (!isset($index))) AND ($it->current() == $needle)) { return $aIt->key(); } @@ -792,6 +762,7 @@ class OC_Helper { /** * Shortens str to maxlen by replacing characters in the middle with '...', eg. * ellipsis('a very long string with lots of useless info to make a better example', 14) becomes 'a very ...example' + * * @param string $str the string * @param string $maxlen the maximum length of the result * @return string with at most maxlen characters @@ -822,7 +793,7 @@ class OC_Helper { $maxUploadFilesize = min($upload_max_filesize, $post_max_size); } - if($freeSpace !== \OC\Files\FREE_SPACE_UNKNOWN){ + if ($freeSpace !== \OC\Files\FREE_SPACE_UNKNOWN) { $freeSpace = max($freeSpace, 0); return min($maxUploadFilesize, $freeSpace); @@ -833,6 +804,7 @@ class OC_Helper { /** * Checks if a function is available + * * @param string $function_name * @return bool */ @@ -861,7 +833,7 @@ class OC_Helper { $used = 0; } $free = \OC\Files\Filesystem::free_space(); - if ($free >= 0){ + if ($free >= 0) { $total = $free + $used; } else { $total = $free; //either unknown or unlimited @@ -869,7 +841,7 @@ class OC_Helper { if ($total == 0) { $total = 1; // prevent division by zero } - if ($total >= 0){ + if ($total >= 0) { $relative = round(($used / $total) * 10000) / 100; } else { $relative = 0; diff --git a/lib/l10n.php b/lib/l10n.php index d2da302b64..f93443b886 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -386,8 +386,7 @@ class OC_L10N { case 'time': if($data instanceof DateTime) { return $data->format($this->localizations[$type]); - } - elseif(is_string($data)) { + } elseif(is_string($data) && !is_numeric($data)) { $data = strtotime($data); } $locales = array(self::findLanguage()); diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index 67353b8fb4..d6bf5771e8 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -4,8 +4,11 @@ $TRANSLATIONS = array( "Personal" => "Persoonlik", "Settings" => "Instellings", "Users" => "Gebruikers", -"Apps" => "Toepassings", "Admin" => "Admin", -"web services under your control" => "webdienste onder jou beheer" +"web services under your control" => "webdienste onder jou beheer", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ar.php b/lib/l10n/ar.php index 50881cb627..2e95f28841 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "شخصي", "Settings" => "إعدادات", "Users" => "المستخدمين", -"Apps" => "التطبيقات", "Admin" => "المدير", "web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", @@ -38,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة", "Please double check the installation guides." => "الرجاء التحقق من دليل التنصيب.", "seconds ago" => "منذ ثواني", -"1 minute ago" => "منذ دقيقة", -"%d minutes ago" => "%d دقيقة مضت", -"1 hour ago" => "قبل ساعة مضت", -"%d hours ago" => "%d ساعة مضت", +"_%n minute ago_::_%n minutes ago_" => array("","","","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","","","",""), "today" => "اليوم", "yesterday" => "يوم أمس", -"%d days ago" => "%d يوم مضى", +"_%n day go_::_%n days ago_" => array("","","","","",""), "last month" => "الشهر الماضي", -"%d months ago" => "%d شهر مضت", +"_%n month ago_::_%n months ago_" => array("","","","","",""), "last year" => "السنةالماضية", "years ago" => "سنة مضت", "Could not find category \"%s\"" => "تعذر العثور على المجلد \"%s\"" diff --git a/lib/l10n/be.php b/lib/l10n/be.php new file mode 100644 index 0000000000..1570411eb8 --- /dev/null +++ b/lib/l10n/be.php @@ -0,0 +1,8 @@ + array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), +"_%n day go_::_%n days ago_" => array("","","",""), +"_%n month ago_::_%n months ago_" => array("","","","") +); +$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);"; diff --git a/lib/l10n/bg_BG.php b/lib/l10n/bg_BG.php index 4a558426a8..10d3bb610a 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Лични", "Settings" => "Настройки", "Users" => "Потребители", -"Apps" => "Приложения", "Admin" => "Админ", "web services under your control" => "уеб услуги под Ваш контрол", "ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", @@ -39,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи.", "Please double check the installation guides." => "Моля направете повторна справка с ръководството за инсталиране.", "seconds ago" => "преди секунди", -"1 minute ago" => "преди 1 минута", -"%d minutes ago" => "преди %d минути", -"1 hour ago" => "преди 1 час", -"%d hours ago" => "преди %d часа", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "днес", "yesterday" => "вчера", -"%d days ago" => "преди %d дни", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "последният месец", -"%d months ago" => "преди %d месеца", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "последната година", "years ago" => "последните години", "Could not find category \"%s\"" => "Невъзможно откриване на категорията \"%s\"" diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index 3e1340b368..a42435a2a4 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", "Users" => "ব্যবহারকারী", -"Apps" => "অ্যাপ", "Admin" => "প্রশাসন", "web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", @@ -17,13 +16,13 @@ $TRANSLATIONS = array( "Files" => "ফাইল", "Text" => "টেক্সট", "seconds ago" => "সেকেন্ড পূর্বে", -"1 minute ago" => "১ মিনিট পূর্বে", -"%d minutes ago" => "%d মিনিট পূর্বে", -"1 hour ago" => "1 ঘন্টা পূর্বে", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "আজ", "yesterday" => "গতকাল", -"%d days ago" => "%d দিন পূর্বে", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "গত মাস", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "গত বছর", "years ago" => "বছর পূর্বে" ); diff --git a/lib/l10n/bs.php b/lib/l10n/bs.php new file mode 100644 index 0000000000..3cb98906e6 --- /dev/null +++ b/lib/l10n/bs.php @@ -0,0 +1,8 @@ + array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day go_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","") +); +$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);"; diff --git a/lib/l10n/ca.php b/lib/l10n/ca.php index a0c7b10e73..95faed498c 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configuració", "Users" => "Usuaris", -"Apps" => "Aplicacions", "Admin" => "Administració", "Failed to upgrade \"%s\"." => "Ha fallat l'actualització \"%s\".", "web services under your control" => "controleu els vostres serveis web", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament.", "Please double check the installation guides." => "Comproveu les guies d'instal·lació.", "seconds ago" => "segons enrere", -"1 minute ago" => "fa 1 minut", -"%d minutes ago" => "fa %d minuts", -"1 hour ago" => "fa 1 hora", -"%d hours ago" => "fa %d hores", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "avui", "yesterday" => "ahir", -"%d days ago" => "fa %d dies", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "el mes passat", -"%d months ago" => "fa %d mesos", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "l'any passat", "years ago" => "anys enrere", "Caused by:" => "Provocat per:", diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 354c61f6a1..ec54376024 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osobní", "Settings" => "Nastavení", "Users" => "Uživatelé", -"Apps" => "Aplikace", "Admin" => "Administrace", "Failed to upgrade \"%s\"." => "Selhala aktualizace verze \"%s\".", "web services under your control" => "webové služby pod Vaší kontrolou", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité.", "Please double check the installation guides." => "Zkonzultujte, prosím, průvodce instalací.", "seconds ago" => "před pár sekundami", -"1 minute ago" => "před minutou", -"%d minutes ago" => "před %d minutami", -"1 hour ago" => "před hodinou", -"%d hours ago" => "před %d hodinami", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"%d days ago" => "před %d dny", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "minulý měsíc", -"%d months ago" => "před %d měsíci", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "minulý rok", "years ago" => "před lety", "Caused by:" => "Příčina:", diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 7ba8378cb4..649a1ebffa 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personol", "Settings" => "Gosodiadau", "Users" => "Defnyddwyr", -"Apps" => "Pecynnau", "Admin" => "Gweinyddu", "web services under your control" => "gwasanaethau gwe a reolir gennych", "ZIP download is turned off." => "Mae llwytho ZIP wedi ei ddiffodd.", @@ -38,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", "Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "seconds ago" => "eiliad yn ôl", -"1 minute ago" => "1 munud yn ôl", -"%d minutes ago" => "%d munud yn ôl", -"1 hour ago" => "1 awr yn ôl", -"%d hours ago" => "%d awr yn ôl", +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "heddiw", "yesterday" => "ddoe", -"%d days ago" => "%d diwrnod yn ôl", +"_%n day go_::_%n days ago_" => array("","","",""), "last month" => "mis diwethaf", -"%d months ago" => "%d mis yn ôl", +"_%n month ago_::_%n months ago_" => array("","","",""), "last year" => "y llynedd", "years ago" => "blwyddyn yn ôl", "Could not find category \"%s\"" => "Methu canfod categori \"%s\"" diff --git a/lib/l10n/da.php b/lib/l10n/da.php index aa5bb74bd3..cbf6b16deb 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personligt", "Settings" => "Indstillinger", "Users" => "Brugere", -"Apps" => "Apps", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Upgradering af \"%s\" fejlede", "web services under your control" => "Webtjenester under din kontrol", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt.", "Please double check the installation guides." => "Dobbelttjek venligst installations vejledningerne.", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minut siden", -"%d minutes ago" => "%d minutter siden", -"1 hour ago" => "1 time siden", -"%d hours ago" => "%d timer siden", +"_%n minute ago_::_%n minutes ago_" => array("%n minut siden","%n minutter siden"), +"_%n hour ago_::_%n hours ago_" => array("%n time siden","%n timer siden"), "today" => "i dag", "yesterday" => "i går", -"%d days ago" => "%d dage siden", +"_%n day go_::_%n days ago_" => array("%n dag siden","%n dage siden"), "last month" => "sidste måned", -"%d months ago" => "%d måneder siden", +"_%n month ago_::_%n months ago_" => array("%n måned siden","%n måneder siden"), "last year" => "sidste år", "years ago" => "år siden", "Caused by:" => "Forårsaget af:", diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 5dcbea4e02..798322fdb4 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persönlich", "Settings" => "Einstellungen", "Users" => "Benutzer", -"Apps" => "Apps", "Admin" => "Administration", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", "web services under your control" => "Web-Services unter Deiner Kontrolle", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfe die Installationsanleitungen.", "seconds ago" => "Gerade eben", -"1 minute ago" => "vor einer Minute", -"%d minutes ago" => "Vor %d Minuten", -"1 hour ago" => "Vor einer Stunde", -"%d hours ago" => "Vor %d Stunden", +"_%n minute ago_::_%n minutes ago_" => array("","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tag(en)", +"_%n day go_::_%n days ago_" => array("","Vor %n Tagen"), "last month" => "Letzten Monat", -"%d months ago" => "Vor %d Monaten", +"_%n month ago_::_%n months ago_" => array("","Vor %n Monaten"), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/de_AT.php b/lib/l10n/de_AT.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/de_AT.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_CH.php b/lib/l10n/de_CH.php index 2dbf22b9a7..d99c144f18 100644 --- a/lib/l10n/de_CH.php +++ b/lib/l10n/de_CH.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persönlich", "Settings" => "Einstellungen", "Users" => "Benutzer", -"Apps" => "Apps", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", "web services under your control" => "Web-Services unter Ihrer Kontrolle", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"%d minutes ago" => "Vor %d Minuten", -"1 hour ago" => "Vor einer Stunde", -"%d hours ago" => "Vor %d Stunden", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tag(en)", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "Letzten Monat", -"%d months ago" => "Vor %d Monaten", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 91731585d4..698a36bd78 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persönlich", "Settings" => "Einstellungen", "Users" => "Benutzer", -"Apps" => "Apps", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", "web services under your control" => "Web-Services unter Ihrer Kontrolle", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", "Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", "seconds ago" => "Gerade eben", -"1 minute ago" => "Vor 1 Minute", -"%d minutes ago" => "Vor %d Minuten", -"1 hour ago" => "Vor einer Stunde", -"%d hours ago" => "Vor %d Stunden", +"_%n minute ago_::_%n minutes ago_" => array("Vor %n Minute","Vor %n Minuten"), +"_%n hour ago_::_%n hours ago_" => array("Vor %n Stunde","Vor %n Stunden"), "today" => "Heute", "yesterday" => "Gestern", -"%d days ago" => "Vor %d Tag(en)", +"_%n day go_::_%n days ago_" => array("Vor %n Tag","Vor %n Tagen"), "last month" => "Letzten Monat", -"%d months ago" => "Vor %d Monaten", +"_%n month ago_::_%n months ago_" => array("Vor %n Monat","Vor %n Monaten"), "last year" => "Letztes Jahr", "years ago" => "Vor Jahren", "Caused by:" => "Verursacht durch:", diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 9989fc967b..0fbd134ae9 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", "Users" => "Χρήστες", -"Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", "Failed to upgrade \"%s\"." => "Αποτυχία αναβάθμισης του \"%s\".", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", "Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "seconds ago" => "δευτερόλεπτα πριν", -"1 minute ago" => "1 λεπτό πριν", -"%d minutes ago" => "%d λεπτά πριν", -"1 hour ago" => "1 ώρα πριν", -"%d hours ago" => "%d ώρες πριν", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "σήμερα", "yesterday" => "χτες", -"%d days ago" => "%d ημέρες πριν", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "τελευταίο μήνα", -"%d months ago" => "%d μήνες πριν", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "τελευταίο χρόνο", "years ago" => "χρόνια πριν", "Caused by:" => "Προκλήθηκε από:", diff --git a/lib/l10n/en@pirate.php b/lib/l10n/en@pirate.php index a86492d2a9..a8175b1400 100644 --- a/lib/l10n/en@pirate.php +++ b/lib/l10n/en@pirate.php @@ -1,5 +1,9 @@ "web services under your control" +"web services under your control" => "web services under your control", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/eo.php b/lib/l10n/eo.php index 6ccc202538..5311dd6eb1 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persona", "Settings" => "Agordo", "Users" => "Uzantoj", -"Apps" => "Aplikaĵoj", "Admin" => "Administranto", "web services under your control" => "TTT-servoj regataj de vi", "ZIP download is turned off." => "ZIP-elŝuto estas malkapabligita.", @@ -35,15 +34,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita.", "Please double check the installation guides." => "Bonvolu duoble kontroli la gvidilon por instalo.", "seconds ago" => "sekundoj antaŭe", -"1 minute ago" => "antaŭ 1 minuto", -"%d minutes ago" => "antaŭ %d minutoj", -"1 hour ago" => "antaŭ 1 horo", -"%d hours ago" => "antaŭ %d horoj", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hodiaŭ", "yesterday" => "hieraŭ", -"%d days ago" => "antaŭ %d tagoj", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "lastamonate", -"%d months ago" => "antaŭ %d monatoj", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "lastajare", "years ago" => "jaroj antaŭe", "Could not find category \"%s\"" => "Ne troviĝis kategorio “%s”" diff --git a/lib/l10n/es.php b/lib/l10n/es.php index e30e4d711e..2029c9b17f 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Ajustes", "Users" => "Usuarios", -"Apps" => "Aplicaciones", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Falló la actualización \"%s\".", "web services under your control" => "Servicios web bajo su control", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando.", "Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", "seconds ago" => "hace segundos", -"1 minute ago" => "hace 1 minuto", -"%d minutes ago" => "hace %d minutos", -"1 hour ago" => "Hace 1 hora", -"%d hours ago" => "Hace %d horas", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"%d days ago" => "hace %d días", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "mes pasado", -"%d months ago" => "Hace %d meses", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "año pasado", "years ago" => "hace años", "Caused by:" => "Causado por:", diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index 3f1c098dbf..0632c75405 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configuración", "Users" => "Usuarios", -"Apps" => "Apps", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "No se pudo actualizar \"%s\".", "web services under your control" => "servicios web sobre los que tenés control", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar.", "Please double check the installation guides." => "Por favor, comprobá nuevamente la guía de instalación.", "seconds ago" => "segundos atrás", -"1 minute ago" => "hace 1 minuto", -"%d minutes ago" => "hace %d minutos", -"1 hour ago" => "hace 1 hora", -"%d hours ago" => "hace %d horas", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoy", "yesterday" => "ayer", -"%d days ago" => "hace %d días", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "el mes pasado", -"%d months ago" => "hace %d meses", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "el año pasado", "years ago" => "años atrás", "Caused by:" => "Provocado por:", diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 403f0871c5..a7d823a62c 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Isiklik", "Settings" => "Seaded", "Users" => "Kasutajad", -"Apps" => "Rakendused", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ebaõnnestunud uuendus \"%s\".", "web services under your control" => "veebitenused sinu kontrolli all", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", "Please double check the installation guides." => "Palun tutvu veelkord paigalduse juhenditega.", "seconds ago" => "sekundit tagasi", -"1 minute ago" => "1 minut tagasi", -"%d minutes ago" => "%d minutit tagasi", -"1 hour ago" => "1 tund tagasi", -"%d hours ago" => "%d tundi tagasi", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "täna", "yesterday" => "eile", -"%d days ago" => "%d päeva tagasi", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "viimasel kuul", -"%d months ago" => "%d kuud tagasi", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "viimasel aastal", "years ago" => "aastat tagasi", "Caused by:" => "Põhjustaja:", diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 0d9a8860a0..c5ce243f2f 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pertsonala", "Settings" => "Ezarpenak", "Users" => "Erabiltzaileak", -"Apps" => "Aplikazioak", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Ezin izan da \"%s\" eguneratu.", "web services under your control" => "web zerbitzuak zure kontrolpean", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi.", "Please double check the installation guides." => "Mesedez begiratu instalazio gidak.", "seconds ago" => "segundu", -"1 minute ago" => "orain dela minutu 1", -"%d minutes ago" => "orain dela %d minutu", -"1 hour ago" => "orain dela ordu bat", -"%d hours ago" => "orain dela %d ordu", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "gaur", "yesterday" => "atzo", -"%d days ago" => "orain dela %d egun", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "joan den hilabetean", -"%d months ago" => "orain dela %d hilabete", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "joan den urtean", "years ago" => "urte", "Caused by:" => "Honek eraginda:", diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index fa886531bb..e2d8ed50aa 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "شخصی", "Settings" => "تنظیمات", "Users" => "کاربران", -"Apps" => " برنامه ها", "Admin" => "مدیر", "web services under your control" => "سرویس های تحت وب در کنترل شما", "ZIP download is turned off." => "دانلود به صورت فشرده غیر فعال است", @@ -39,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", "Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "seconds ago" => "ثانیه‌ها پیش", -"1 minute ago" => "1 دقیقه پیش", -"%d minutes ago" => "%d دقیقه پیش", -"1 hour ago" => "1 ساعت پیش", -"%d hours ago" => "%d ساعت پیش", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "امروز", "yesterday" => "دیروز", -"%d days ago" => "%d روز پیش", +"_%n day go_::_%n days ago_" => array(""), "last month" => "ماه قبل", -"%d months ago" => "%dماه پیش", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "سال قبل", "years ago" => "سال‌های قبل", "Could not find category \"%s\"" => "دسته بندی %s یافت نشد" diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 5892a968d5..dccb175304 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Henkilökohtainen", "Settings" => "Asetukset", "Users" => "Käyttäjät", -"Apps" => "Sovellukset", "Admin" => "Ylläpitäjä", "web services under your control" => "verkkopalvelut hallinnassasi", "ZIP download is turned off." => "ZIP-lataus on poistettu käytöstä.", @@ -35,17 +34,16 @@ $TRANSLATIONS = array( "Set an admin password." => "Aseta ylläpitäjän salasana.", "Please double check the installation guides." => "Lue tarkasti asennusohjeet.", "seconds ago" => "sekuntia sitten", -"1 minute ago" => "1 minuutti sitten", -"%d minutes ago" => "%d minuuttia sitten", -"1 hour ago" => "1 tunti sitten", -"%d hours ago" => "%d tuntia sitten", +"_%n minute ago_::_%n minutes ago_" => array("%n minuutti sitten","%n minuuttia sitten"), +"_%n hour ago_::_%n hours ago_" => array("%n tunti sitten","%n tuntia sitten"), "today" => "tänään", "yesterday" => "eilen", -"%d days ago" => "%d päivää sitten", +"_%n day go_::_%n days ago_" => array("%n päivä sitten","%n päivää sitten"), "last month" => "viime kuussa", -"%d months ago" => "%d kuukautta sitten", +"_%n month ago_::_%n months ago_" => array("%n kuukausi sitten","%n kuukautta sitten"), "last year" => "viime vuonna", "years ago" => "vuotta sitten", +"Caused by:" => "Aiheuttaja:", "Could not find category \"%s\"" => "Luokkaa \"%s\" ei löytynyt" ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fr.php b/lib/l10n/fr.php index 18fbe55270..0a040bb9e8 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personnel", "Settings" => "Paramètres", "Users" => "Utilisateurs", -"Apps" => "Applications", "Admin" => "Administration", "web services under your control" => "services web sous votre contrôle", "ZIP download is turned off." => "Téléchargement ZIP désactivé.", @@ -39,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut.", "Please double check the installation guides." => "Veuillez vous référer au guide d'installation.", "seconds ago" => "il y a quelques secondes", -"1 minute ago" => "il y a une minute", -"%d minutes ago" => "il y a %d minutes", -"1 hour ago" => "Il y a une heure", -"%d hours ago" => "Il y a %d heures", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "aujourd'hui", "yesterday" => "hier", -"%d days ago" => "il y a %d jours", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "le mois dernier", -"%d months ago" => "Il y a %d mois", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "l'année dernière", "years ago" => "il y a plusieurs années", "Could not find category \"%s\"" => "Impossible de trouver la catégorie \"%s\"" diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index f5cda20e13..f105578ace 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persoal", "Settings" => "Axustes", "Users" => "Usuarios", -"Apps" => "Aplicativos", "Admin" => "Administración", "Failed to upgrade \"%s\"." => "Non foi posíbel anovar «%s».", "web services under your control" => "servizos web baixo o seu control", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web non está aínda configurado adecuadamente para permitir a sincronización de ficheiros xa que semella que a interface WebDAV non está a funcionar.", "Please double check the installation guides." => "Volva comprobar as guías de instalación", "seconds ago" => "segundos atrás", -"1 minute ago" => "hai 1 minuto", -"%d minutes ago" => "hai %d minutos", -"1 hour ago" => "Vai 1 hora", -"%d hours ago" => "Vai %d horas", +"_%n minute ago_::_%n minutes ago_" => array("hai %n minuto","hai %n minutos"), +"_%n hour ago_::_%n hours ago_" => array("hai %n hora","hai %n horas"), "today" => "hoxe", "yesterday" => "onte", -"%d days ago" => "hai %d días", +"_%n day go_::_%n days ago_" => array("hai %n día","hai %n días"), "last month" => "último mes", -"%d months ago" => "Vai %d meses", +"_%n month ago_::_%n months ago_" => array("hai %n mes","hai %n meses"), "last year" => "último ano", "years ago" => "anos atrás", "Caused by:" => "Causado por:", diff --git a/lib/l10n/he.php b/lib/l10n/he.php index fa597dadea..bab1a6ff42 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "אישי", "Settings" => "הגדרות", "Users" => "משתמשים", -"Apps" => "יישומים", "Admin" => "מנהל", "web services under your control" => "שירותי רשת תחת השליטה שלך", "ZIP download is turned off." => "הורדת ZIP כבויה", @@ -20,15 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין.", "Please double check the installation guides." => "נא לעיין שוב במדריכי ההתקנה.", "seconds ago" => "שניות", -"1 minute ago" => "לפני דקה אחת", -"%d minutes ago" => "לפני %d דקות", -"1 hour ago" => "לפני שעה", -"%d hours ago" => "לפני %d שעות", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "היום", "yesterday" => "אתמול", -"%d days ago" => "לפני %d ימים", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "חודש שעבר", -"%d months ago" => "לפני %d חודשים", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "שנה שעברה", "years ago" => "שנים", "Could not find category \"%s\"" => "לא ניתן למצוא את הקטגוריה „%s“" diff --git a/lib/l10n/hi.php b/lib/l10n/hi.php index 7986b3b6b7..039dfa4465 100644 --- a/lib/l10n/hi.php +++ b/lib/l10n/hi.php @@ -4,6 +4,9 @@ $TRANSLATIONS = array( "Personal" => "यक्तिगत", "Settings" => "सेटिंग्स", "Users" => "उपयोगकर्ता", -"Apps" => "Apps" +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hr.php b/lib/l10n/hr.php index 9c15844772..d217f92409 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -4,16 +4,19 @@ $TRANSLATIONS = array( "Personal" => "Osobno", "Settings" => "Postavke", "Users" => "Korisnici", -"Apps" => "Aplikacije", "Admin" => "Administrator", "web services under your control" => "web usluge pod vašom kontrolom", "Authentication error" => "Greška kod autorizacije", "Files" => "Datoteke", "Text" => "Tekst", "seconds ago" => "sekundi prije", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "danas", "yesterday" => "jučer", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "prošli mjesec", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "prošlu godinu", "years ago" => "godina" ); diff --git a/lib/l10n/hu_HU.php b/lib/l10n/hu_HU.php index 422c726668..c8aff3add7 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Személyes", "Settings" => "Beállítások", "Users" => "Felhasználók", -"Apps" => "Alkalmazások", "Admin" => "Adminsztráció", "Failed to upgrade \"%s\"." => "Sikertelen Frissítés \"%s\".", "web services under your control" => "webszolgáltatások saját kézben", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Az Ön webkiszolgálója nincs megfelelően beállítva az állományok szinkronizálásához, mert a WebDAV-elérés úgy tűnik, nem működik.", "Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "seconds ago" => "pár másodperce", -"1 minute ago" => "1 perce", -"%d minutes ago" => "%d perce", -"1 hour ago" => "1 órája", -"%d hours ago" => "%d órája", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ma", "yesterday" => "tegnap", -"%d days ago" => "%d napja", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "múlt hónapban", -"%d months ago" => "%d hónapja", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "tavaly", "years ago" => "több éve", "Caused by:" => "Okozta:", diff --git a/lib/l10n/hy.php b/lib/l10n/hy.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/hy.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ia.php b/lib/l10n/ia.php index 50ebf20c59..34f43bc424 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -4,10 +4,13 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configurationes", "Users" => "Usatores", -"Apps" => "Applicationes", "Admin" => "Administration", "web services under your control" => "servicios web sub tu controlo", "Files" => "Files", -"Text" => "Texto" +"Text" => "Texto", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/id.php b/lib/l10n/id.php index 0881f5349b..eaec65516b 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pribadi", "Settings" => "Setelan", "Users" => "Pengguna", -"Apps" => "Aplikasi", "Admin" => "Admin", "web services under your control" => "layanan web dalam kontrol Anda", "ZIP download is turned off." => "Pengunduhan ZIP dimatikan.", @@ -38,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", "Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", "seconds ago" => "beberapa detik yang lalu", -"1 minute ago" => "1 menit yang lalu", -"%d minutes ago" => "%d menit yang lalu", -"1 hour ago" => "1 jam yang lalu", -"%d hours ago" => "%d jam yang lalu", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hari ini", "yesterday" => "kemarin", -"%d days ago" => "%d hari yang lalu", +"_%n day go_::_%n days ago_" => array(""), "last month" => "bulan kemarin", -"%d months ago" => "%d bulan yang lalu", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "tahun kemarin", "years ago" => "beberapa tahun lalu", "Could not find category \"%s\"" => "Tidak dapat menemukan kategori \"%s\"" diff --git a/lib/l10n/is.php b/lib/l10n/is.php index 5ccb20882a..7512d278fb 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Um mig", "Settings" => "Stillingar", "Users" => "Notendur", -"Apps" => "Forrit", "Admin" => "Stjórnun", "web services under your control" => "vefþjónusta undir þinni stjórn", "ZIP download is turned off." => "Slökkt á ZIP niðurhali.", @@ -18,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "Texti", "Images" => "Myndir", "seconds ago" => "sek.", -"1 minute ago" => "Fyrir 1 mínútu", -"%d minutes ago" => "fyrir %d mínútum", -"1 hour ago" => "Fyrir 1 klst.", -"%d hours ago" => "fyrir %d klst.", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "í dag", "yesterday" => "í gær", -"%d days ago" => "fyrir %d dögum", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "síðasta mánuði", -"%d months ago" => "fyrir %d mánuðum", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "síðasta ári", "years ago" => "einhverjum árum", "Could not find category \"%s\"" => "Fann ekki flokkinn \"%s\"" diff --git a/lib/l10n/it.php b/lib/l10n/it.php index c85ba08f4c..c29ab4833e 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personale", "Settings" => "Impostazioni", "Users" => "Utenti", -"Apps" => "Applicazioni", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Aggiornamento non riuscito \"%s\".", "web services under your control" => "servizi web nelle tue mani", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata.", "Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", "seconds ago" => "secondi fa", -"1 minute ago" => "Un minuto fa", -"%d minutes ago" => "%d minuti fa", -"1 hour ago" => "1 ora fa", -"%d hours ago" => "%d ore fa", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "oggi", "yesterday" => "ieri", -"%d days ago" => "%d giorni fa", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "mese scorso", -"%d months ago" => "%d mesi fa", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "anno scorso", "years ago" => "anni fa", "Caused by:" => "Causato da:", diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 716db8706f..482806d494 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "個人", "Settings" => "設定", "Users" => "ユーザ", -"Apps" => "アプリ", "Admin" => "管理", "Failed to upgrade \"%s\"." => "\"%s\" へのアップグレードに失敗しました。", "web services under your control" => "管理下のウェブサービス", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。", "Please double check the installation guides." => "インストールガイドをよく確認してください。", "seconds ago" => "数秒前", -"1 minute ago" => "1 分前", -"%d minutes ago" => "%d 分前", -"1 hour ago" => "1 時間前", -"%d hours ago" => "%d 時間前", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", -"%d days ago" => "%d 日前", +"_%n day go_::_%n days ago_" => array(""), "last month" => "一月前", -"%d months ago" => "%d 分前", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "一年前", "years ago" => "年前", "Caused by:" => "原因は以下:", diff --git a/lib/l10n/ka.php b/lib/l10n/ka.php index b6e0699763..04fefe8bdf 100644 --- a/lib/l10n/ka.php +++ b/lib/l10n/ka.php @@ -7,11 +7,11 @@ $TRANSLATIONS = array( "ZIP download is turned off." => "ZIP გადმოწერა გამორთულია", "Files" => "ფაილები", "seconds ago" => "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"%d minutes ago" => "%d წუთის წინ", -"1 hour ago" => "1 საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", -"%d days ago" => "%d დღის წინ" +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka_GE.php b/lib/l10n/ka_GE.php index 5001eee0c2..3cb55277d6 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "პირადი", "Settings" => "პარამეტრები", "Users" => "მომხმარებელი", -"Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", "web services under your control" => "web services under your control", "ZIP download is turned off." => "ZIP download–ი გათიშულია", @@ -38,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", "Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", "seconds ago" => "წამის წინ", -"1 minute ago" => "1 წუთის წინ", -"%d minutes ago" => "%d წუთის წინ", -"1 hour ago" => "1 საათის წინ", -"%d hours ago" => "%d საათის წინ", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "დღეს", "yesterday" => "გუშინ", -"%d days ago" => "%d დღის წინ", +"_%n day go_::_%n days ago_" => array(""), "last month" => "გასულ თვეში", -"%d months ago" => "%d თვის წინ", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "ბოლო წელს", "years ago" => "წლის წინ", "Could not find category \"%s\"" => "\"%s\" კატეგორიის მოძებნა ვერ მოხერხდა" diff --git a/lib/l10n/kn.php b/lib/l10n/kn.php new file mode 100644 index 0000000000..e7b09649a2 --- /dev/null +++ b/lib/l10n/kn.php @@ -0,0 +1,8 @@ + array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") +); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ko.php b/lib/l10n/ko.php index c163d8c9fa..824882c984 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "개인", "Settings" => "설정", "Users" => "사용자", -"Apps" => "앱", "Admin" => "관리자", "web services under your control" => "내가 관리하는 웹 서비스", "ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", @@ -28,15 +27,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", "Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "seconds ago" => "초 전", -"1 minute ago" => "1분 전", -"%d minutes ago" => "%d분 전", -"1 hour ago" => "1시간 전", -"%d hours ago" => "%d시간 전", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "오늘", "yesterday" => "어제", -"%d days ago" => "%d일 전", +"_%n day go_::_%n days ago_" => array(""), "last month" => "지난 달", -"%d months ago" => "%d개월 전", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "작년", "years ago" => "년 전", "Could not find category \"%s\"" => "분류 \"%s\"을(를) 찾을 수 없습니다." diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index 05959b89cf..c99f9dd2a1 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -3,8 +3,11 @@ $TRANSLATIONS = array( "Help" => "یارمەتی", "Settings" => "ده‌ستكاری", "Users" => "به‌كارهێنه‌ر", -"Apps" => "به‌رنامه‌كان", "Admin" => "به‌ڕێوه‌به‌ری سه‌ره‌كی", -"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه" +"web services under your control" => "ڕاژه‌ی وێب له‌ژێر چاودێریت دایه", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/lb.php b/lib/l10n/lb.php index 11552bcce8..c25f5b55bd 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -4,18 +4,19 @@ $TRANSLATIONS = array( "Personal" => "Perséinlech", "Settings" => "Astellungen", "Users" => "Benotzer", -"Apps" => "Applikatiounen", "Admin" => "Admin", "web services under your control" => "Web-Servicer ënnert denger Kontroll", "Authentication error" => "Authentifikatioun's Fehler", "Files" => "Dateien", "Text" => "SMS", "seconds ago" => "Sekonnen hir", -"1 minute ago" => "1 Minutt hir", -"1 hour ago" => "vrun 1 Stonn", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "haut", "yesterday" => "gëschter", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "Läschte Mount", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "Läscht Joer", "years ago" => "Joren hier" ); diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index e35f3bee16..fb109b8633 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Asmeniniai", "Settings" => "Nustatymai", "Users" => "Vartotojai", -"Apps" => "Programos", "Admin" => "Administravimas", "web services under your control" => "jūsų valdomos web paslaugos", "ZIP download is turned off." => "ZIP atsisiuntimo galimybė yra išjungta.", @@ -18,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "Žinučių", "Images" => "Paveikslėliai", "seconds ago" => "prieš sekundę", -"1 minute ago" => "Prieš 1 minutę", -"%d minutes ago" => "prieš %d minučių", -"1 hour ago" => "prieš 1 valandą", -"%d hours ago" => "prieš %d valandų", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šiandien", "yesterday" => "vakar", -"%d days ago" => "prieš %d dienų", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "praeitą mėnesį", -"%d months ago" => "prieš %d mėnesių", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "praeitais metais", "years ago" => "prieš metus" ); diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 0dfaf6b678..2a2daee8d8 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personīgi", "Settings" => "Iestatījumi", "Users" => "Lietotāji", -"Apps" => "Lietotnes", "Admin" => "Administratori", "web services under your control" => "tīmekļa servisi tavā varā", "ZIP download is turned off." => "ZIP lejupielādēšana ir izslēgta.", @@ -38,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta.", "Please double check the installation guides." => "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību.", "seconds ago" => "sekundes atpakaļ", -"1 minute ago" => "pirms 1 minūtes", -"%d minutes ago" => "pirms %d minūtēm", -"1 hour ago" => "pirms 1 stundas", -"%d hours ago" => "pirms %d stundām", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "šodien", "yesterday" => "vakar", -"%d days ago" => "pirms %d dienām", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "pagājušajā mēnesī", -"%d months ago" => "pirms %d mēnešiem", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "gājušajā gadā", "years ago" => "gadus atpakaļ", "Could not find category \"%s\"" => "Nevarēja atrast kategoriju “%s”" diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index eeece35ea6..69d4a1cb69 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Лично", "Settings" => "Подесувања", "Users" => "Корисници", -"Apps" => "Аппликации", "Admin" => "Админ", "web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", @@ -18,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "Текст", "Images" => "Слики", "seconds ago" => "пред секунди", -"1 minute ago" => "пред 1 минута", -"%d minutes ago" => "пред %d минути", -"1 hour ago" => "пред 1 час", -"%d hours ago" => "пред %d часови", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "денеска", "yesterday" => "вчера", -"%d days ago" => "пред %d денови", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "минатиот месец", -"%d months ago" => "пред %d месеци", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "минатата година", "years ago" => "пред години", "Could not find category \"%s\"" => "Не можам да најдам категорија „%s“" diff --git a/lib/l10n/ml_IN.php b/lib/l10n/ml_IN.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/ml_IN.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ms_MY.php b/lib/l10n/ms_MY.php index 5de0eb9599..17ef07f83d 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -4,11 +4,14 @@ $TRANSLATIONS = array( "Personal" => "Peribadi", "Settings" => "Tetapan", "Users" => "Pengguna", -"Apps" => "Aplikasi", "Admin" => "Admin", "web services under your control" => "Perkhidmatan web di bawah kawalan anda", "Authentication error" => "Ralat pengesahan", "Files" => "Fail-fail", -"Text" => "Teks" +"Text" => "Teks", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/my_MM.php b/lib/l10n/my_MM.php index 731aa33d57..b2e9ca1813 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -2,7 +2,6 @@ $TRANSLATIONS = array( "Help" => "အကူအညီ", "Users" => "သုံးစွဲသူ", -"Apps" => "Apps", "Admin" => "အက်ဒမင်", "web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "ZIP download is turned off." => "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်", @@ -15,15 +14,13 @@ $TRANSLATIONS = array( "Text" => "စာသား", "Images" => "ပုံရိပ်များ", "seconds ago" => "စက္ကန့်အနည်းငယ်က", -"1 minute ago" => "၁ မိနစ်အရင်က", -"%d minutes ago" => "%d မိနစ်အရင်က", -"1 hour ago" => "၁ နာရီ အရင်က", -"%d hours ago" => "%d နာရီအရင်က", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "ယနေ့", "yesterday" => "မနေ့က", -"%d days ago" => "%d ရက် အရင်က", +"_%n day go_::_%n days ago_" => array(""), "last month" => "ပြီးခဲ့သောလ", -"%d months ago" => "%d လအရင်က", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "မနှစ်က", "years ago" => "နှစ် အရင်က", "Could not find category \"%s\"" => "\"%s\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index 42a43bfd98..8e7d095d36 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personlig", "Settings" => "Innstillinger", "Users" => "Brukere", -"Apps" => "Apper", "Admin" => "Admin", "web services under your control" => "web tjenester du kontrollerer", "ZIP download is turned off." => "ZIP-nedlasting av avslått", @@ -20,15 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere.", "Please double check the installation guides." => "Vennligst dobbelsjekk installasjonsguiden.", "seconds ago" => "sekunder siden", -"1 minute ago" => "1 minutt siden", -"%d minutes ago" => "%d minutter siden", -"1 hour ago" => "1 time siden", -"%d hours ago" => "%d timer siden", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"%d days ago" => "%d dager siden", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "forrige måned", -"%d months ago" => "%d måneder siden", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "forrige år", "years ago" => "år siden", "Could not find category \"%s\"" => "Kunne ikke finne kategori \"%s\"" diff --git a/lib/l10n/ne.php b/lib/l10n/ne.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/ne.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/nl.php b/lib/l10n/nl.php index 8983aa81bf..2d737bd5eb 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Persoonlijk", "Settings" => "Instellingen", "Users" => "Gebruikers", -"Apps" => "Apps", "Admin" => "Beheerder", "Failed to upgrade \"%s\"." => "Upgrade \"%s\" mislukt.", "web services under your control" => "Webdiensten in eigen beheer", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", "Please double check the installation guides." => "Controleer de installatiehandleiding goed.", "seconds ago" => "seconden geleden", -"1 minute ago" => "1 minuut geleden", -"%d minutes ago" => "%d minuten geleden", -"1 hour ago" => "1 uur geleden", -"%d hours ago" => "%d uren geleden", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "vandaag", "yesterday" => "gisteren", -"%d days ago" => "%d dagen geleden", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "vorige maand", -"%d months ago" => "%d maanden geleden", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "vorig jaar", "years ago" => "jaar geleden", "Caused by:" => "Gekomen door:", diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index 3cbd0159bc..28b4f7b7d9 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personleg", "Settings" => "Innstillingar", "Users" => "Brukarar", -"Apps" => "Program", "Admin" => "Administrer", "web services under your control" => "Vev tjenester under din kontroll", "Authentication error" => "Feil i autentisering", @@ -13,11 +12,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt.", "Please double check the installation guides." => "Ver vennleg og dobbeltsjekk installasjonsrettleiinga.", "seconds ago" => "sekund sidan", -"1 minute ago" => "1 minutt sidan", -"1 hour ago" => "1 time sidan", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "førre månad", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "i fjor", "years ago" => "år sidan" ); diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index 6f0645bf77..40a527cc76 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Configuracion", "Users" => "Usancièrs", -"Apps" => "Apps", "Admin" => "Admin", "web services under your control" => "Services web jos ton contraròtle", "ZIP download is turned off." => "Avalcargar los ZIP es inactiu.", @@ -13,12 +12,13 @@ $TRANSLATIONS = array( "Authentication error" => "Error d'autentificacion", "Files" => "Fichièrs", "seconds ago" => "segonda a", -"1 minute ago" => "1 minuta a", -"%d minutes ago" => "%d minutas a", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "uèi", "yesterday" => "ièr", -"%d days ago" => "%d jorns a", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "mes passat", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "an passat", "years ago" => "ans a" ); diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index bd24614751..1740676080 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osobiste", "Settings" => "Ustawienia", "Users" => "Użytkownicy", -"Apps" => "Aplikacje", "Admin" => "Administrator", "Failed to upgrade \"%s\"." => "Błąd przy aktualizacji \"%s\".", "web services under your control" => "Kontrolowane serwisy", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony.", "Please double check the installation guides." => "Sprawdź ponownie przewodniki instalacji.", "seconds ago" => "sekund temu", -"1 minute ago" => "1 minutę temu", -"%d minutes ago" => "%d minut temu", -"1 hour ago" => "1 godzinę temu", -"%d hours ago" => "%d godzin temu", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dziś", "yesterday" => "wczoraj", -"%d days ago" => "%d dni temu", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "w zeszłym miesiącu", -"%d months ago" => "%d miesiecy temu", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "w zeszłym roku", "years ago" => "lat temu", "Caused by:" => "Spowodowane przez:", diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index cae6107b9e..4ebf587cf8 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pessoal", "Settings" => "Ajustes", "Users" => "Usuários", -"Apps" => "Aplicações", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Falha na atualização de \"%s\".", "web services under your control" => "serviços web sob seu controle", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece estar quebrada.", "Please double check the installation guides." => "Por favor, confira os guias de instalação.", "seconds ago" => "segundos atrás", -"1 minute ago" => "1 minuto atrás", -"%d minutes ago" => "%d minutos atrás", -"1 hour ago" => "1 hora atrás", -"%d hours ago" => "%d horas atrás", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"%d days ago" => "%d dias atrás", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "último mês", -"%d months ago" => "%d meses atrás", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "último ano", "years ago" => "anos atrás", "Caused by:" => "Causados ​​por:", diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index cb8bc99096..3131499e13 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Pessoal", "Settings" => "Configurações", "Users" => "Utilizadores", -"Apps" => "Aplicações", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "A actualização \"%s\" falhou.", "web services under your control" => "serviços web sob o seu controlo", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas.", "Please double check the installation guides." => "Por favor verifique installation guides.", "seconds ago" => "Minutos atrás", -"1 minute ago" => "Há 1 minuto", -"%d minutes ago" => "há %d minutos", -"1 hour ago" => "Há 1 horas", -"%d hours ago" => "Há %d horas", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "hoje", "yesterday" => "ontem", -"%d days ago" => "há %d dias", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "ultímo mês", -"%d months ago" => "Há %d meses atrás", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "ano passado", "years ago" => "anos atrás", "Caused by:" => "Causado por:", diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 006e97ed86..2b6d14d58f 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personal", "Settings" => "Setări", "Users" => "Utilizatori", -"Apps" => "Aplicații", "Admin" => "Admin", "web services under your control" => "servicii web controlate de tine", "ZIP download is turned off." => "Descărcarea ZIP este dezactivată.", @@ -19,17 +18,15 @@ $TRANSLATIONS = array( "Text" => "Text", "Images" => "Imagini", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă.", -"Please double check the installation guides." => "Vă rugăm să verificați ghiduri de instalare.", +"Please double check the installation guides." => "Vă rugăm să verificați ghiduri de instalare.", "seconds ago" => "secunde în urmă", -"1 minute ago" => "1 minut în urmă", -"%d minutes ago" => "%d minute în urmă", -"1 hour ago" => "Acum o ora", -"%d hours ago" => "%d ore in urma", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "astăzi", "yesterday" => "ieri", -"%d days ago" => "%d zile în urmă", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "ultima lună", -"%d months ago" => "%d luni in urma", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "ultimul an", "years ago" => "ani în urmă", "Could not find category \"%s\"" => "Cloud nu a gasit categoria \"%s\"" diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 544f9c9b80..92b14b9b89 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Личное", "Settings" => "Конфигурация", "Users" => "Пользователи", -"Apps" => "Приложения", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Не смог обновить \"%s\".", "web services under your control" => "веб-сервисы под вашим управлением", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер до сих пор не настроен правильно для возможности синхронизации файлов, похоже что проблема в неисправности интерфейса WebDAV.", "Please double check the installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", "seconds ago" => "несколько секунд назад", -"1 minute ago" => "1 минуту назад", -"%d minutes ago" => "%d минут назад", -"1 hour ago" => "час назад", -"%d hours ago" => "%d часов назад", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сегодня", "yesterday" => "вчера", -"%d days ago" => "%d дней назад", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "в прошлом месяце", -"%d months ago" => "%d месяцев назад", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "в прошлом году", "years ago" => "несколько лет назад", "Caused by:" => "Вызвано:", diff --git a/lib/l10n/ru_RU.php b/lib/l10n/ru_RU.php deleted file mode 100644 index 1761c1ebf3..0000000000 --- a/lib/l10n/ru_RU.php +++ /dev/null @@ -1,6 +0,0 @@ - "Настройки", -"Text" => "Текст" -); -$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);"; diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index 36e7b19ba9..d10804cae6 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "පෞද්ගලික", "Settings" => "සිටුවම්", "Users" => "පරිශීලකයන්", -"Apps" => "යෙදුම්", "Admin" => "පරිපාලක", "web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "ZIP download is turned off." => "ZIP භාගත කිරීම් අක්‍රියයි", @@ -18,12 +17,13 @@ $TRANSLATIONS = array( "Text" => "පෙළ", "Images" => "අනු රූ", "seconds ago" => "තත්පරයන්ට පෙර", -"1 minute ago" => "1 මිනිත්තුවකට පෙර", -"%d minutes ago" => "%d මිනිත්තුවන්ට පෙර", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "අද", "yesterday" => "ඊයේ", -"%d days ago" => "%d දිනකට පෙර", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "පෙර මාසයේ", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "පෙර අවුරුද්දේ", "years ago" => "අවුරුදු කීපයකට පෙර" ); diff --git a/lib/l10n/sk.php b/lib/l10n/sk.php new file mode 100644 index 0000000000..54812b15a6 --- /dev/null +++ b/lib/l10n/sk.php @@ -0,0 +1,8 @@ + array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day go_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","") +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sk_SK.php b/lib/l10n/sk_SK.php index 93699439ee..ef3dc6eb97 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osobné", "Settings" => "Nastavenia", "Users" => "Používatelia", -"Apps" => "Aplikácie", "Admin" => "Administrátor", "Failed to upgrade \"%s\"." => "Zlyhala aktualizácia \"%s\".", "web services under your control" => "webové služby pod Vašou kontrolou", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené.", "Please double check the installation guides." => "Prosím skontrolujte inštalačnú príručku.", "seconds ago" => "pred sekundami", -"1 minute ago" => "pred minútou", -"%d minutes ago" => "pred %d minútami", -"1 hour ago" => "Pred 1 hodinou", -"%d hours ago" => "Pred %d hodinami.", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "dnes", "yesterday" => "včera", -"%d days ago" => "pred %d dňami", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "minulý mesiac", -"%d months ago" => "Pred %d mesiacmi.", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "minulý rok", "years ago" => "pred rokmi", "Caused by:" => "Príčina:", diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index bffc6d5929..73a397f3c8 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Osebno", "Settings" => "Nastavitve", "Users" => "Uporabniki", -"Apps" => "Programi", "Admin" => "Skrbništvo", "web services under your control" => "spletne storitve pod vašim nadzorom", "ZIP download is turned off." => "Prejemanje datotek v paketu ZIP je onemogočeno.", @@ -39,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", "Please double check the installation guides." => "Preverite navodila namestitve.", "seconds ago" => "pred nekaj sekundami", -"1 minute ago" => "pred minuto", -"%d minutes ago" => "pred %d minutami", -"1 hour ago" => "Pred 1 uro", -"%d hours ago" => "Pred %d urami", +"_%n minute ago_::_%n minutes ago_" => array("","","",""), +"_%n hour ago_::_%n hours ago_" => array("","","",""), "today" => "danes", "yesterday" => "včeraj", -"%d days ago" => "pred %d dnevi", +"_%n day go_::_%n days ago_" => array("","","",""), "last month" => "zadnji mesec", -"%d months ago" => "Pred %d meseci", +"_%n month ago_::_%n months ago_" => array("","","",""), "last year" => "lansko leto", "years ago" => "let nazaj", "Could not find category \"%s\"" => "Kategorije \"%s\" ni mogoče najti." diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index 9a332bc671..ca2364f986 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personale", "Settings" => "Parametra", "Users" => "Përdoruesit", -"Apps" => "App", "Admin" => "Admin", "web services under your control" => "shërbime web nën kontrollin tënd", "ZIP download is turned off." => "Shkarimi i skedarëve ZIP është i çaktivizuar.", @@ -38,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", "Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", "seconds ago" => "sekonda më parë", -"1 minute ago" => "1 minutë më parë", -"%d minutes ago" => "%d minuta më parë", -"1 hour ago" => "1 orë më parë", -"%d hours ago" => "%d orë më parë", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "sot", "yesterday" => "dje", -"%d days ago" => "%d ditë më parë", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "muajin e shkuar", -"%d months ago" => "%d muaj më parë", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "vitin e shkuar", "years ago" => "vite më parë", "Could not find category \"%s\"" => "Kategoria \"%s\" nuk u gjet" diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index a42df978b4..c42419b6d9 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Лично", "Settings" => "Поставке", "Users" => "Корисници", -"Apps" => "Апликације", "Admin" => "Администратор", "web services under your control" => "веб сервиси под контролом", "ZIP download is turned off." => "Преузимање ZIP-а је искључено.", @@ -21,15 +20,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", "Please double check the installation guides." => "Погледајте водиче за инсталацију.", "seconds ago" => "пре неколико секунди", -"1 minute ago" => "пре 1 минут", -"%d minutes ago" => "пре %d минута", -"1 hour ago" => "Пре једног сата", -"%d hours ago" => "пре %d сата/и", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "данас", "yesterday" => "јуче", -"%d days ago" => "пре %d дана", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "прошлог месеца", -"%d months ago" => "пре %d месеца/и", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "прошле године", "years ago" => "година раније", "Could not find category \"%s\"" => "Не могу да пронађем категорију „%s“." diff --git a/lib/l10n/sr@latin.php b/lib/l10n/sr@latin.php index a0c46c2487..5ba51bc0ba 100644 --- a/lib/l10n/sr@latin.php +++ b/lib/l10n/sr@latin.php @@ -4,10 +4,13 @@ $TRANSLATIONS = array( "Personal" => "Lično", "Settings" => "Podešavanja", "Users" => "Korisnici", -"Apps" => "Programi", "Admin" => "Adninistracija", "Authentication error" => "Greška pri autentifikaciji", "Files" => "Fajlovi", -"Text" => "Tekst" +"Text" => "Tekst", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), +"_%n day go_::_%n days ago_" => array("","",""), +"_%n month ago_::_%n months ago_" => array("","","") ); $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);"; diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 72e2d18654..fa3ae318ce 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Personligt", "Settings" => "Inställningar", "Users" => "Användare", -"Apps" => "Program", "Admin" => "Admin", "Failed to upgrade \"%s\"." => "Misslyckades med att uppgradera \"%s\".", "web services under your control" => "webbtjänster under din kontroll", @@ -42,15 +41,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", "Please double check the installation guides." => "Var god kontrollera installationsguiden.", "seconds ago" => "sekunder sedan", -"1 minute ago" => "1 minut sedan", -"%d minutes ago" => "%d minuter sedan", -"1 hour ago" => "1 timme sedan", -"%d hours ago" => "%d timmar sedan", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "i dag", "yesterday" => "i går", -"%d days ago" => "%d dagar sedan", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "förra månaden", -"%d months ago" => "%d månader sedan", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "förra året", "years ago" => "år sedan", "Caused by:" => "Orsakad av:", diff --git a/lib/l10n/sw_KE.php b/lib/l10n/sw_KE.php new file mode 100644 index 0000000000..15f78e0bce --- /dev/null +++ b/lib/l10n/sw_KE.php @@ -0,0 +1,8 @@ + array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ta_LK.php b/lib/l10n/ta_LK.php index 88b9de5f7d..e70e65845b 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "தனிப்பட்ட", "Settings" => "அமைப்புகள்", "Users" => "பயனாளர்", -"Apps" => "செயலிகள்", "Admin" => "நிர்வாகம்", "web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "ZIP download is turned off." => "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது.", @@ -18,15 +17,13 @@ $TRANSLATIONS = array( "Text" => "உரை", "Images" => "படங்கள்", "seconds ago" => "செக்கன்களுக்கு முன்", -"1 minute ago" => "1 நிமிடத்திற்கு முன் ", -"%d minutes ago" => "%d நிமிடங்களுக்கு முன்", -"1 hour ago" => "1 மணித்தியாலத்திற்கு முன்", -"%d hours ago" => "%d மணித்தியாலத்திற்கு முன்", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "இன்று", "yesterday" => "நேற்று", -"%d days ago" => "%d நாட்களுக்கு முன்", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "கடந்த மாதம்", -"%d months ago" => "%d மாதத்திற்கு முன்", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "கடந்த வருடம்", "years ago" => "வருடங்களுக்கு முன்", "Could not find category \"%s\"" => "பிரிவு \"%s\" ஐ கண்டுப்பிடிக்க முடியவில்லை" diff --git a/lib/l10n/te.php b/lib/l10n/te.php index e7d9d921e5..524ea0c602 100644 --- a/lib/l10n/te.php +++ b/lib/l10n/te.php @@ -4,11 +4,13 @@ $TRANSLATIONS = array( "Settings" => "అమరికలు", "Users" => "వాడుకరులు", "seconds ago" => "క్షణాల క్రితం", -"1 minute ago" => "1 నిమిషం క్రితం", -"1 hour ago" => "1 గంట క్రితం", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), "today" => "ఈరోజు", "yesterday" => "నిన్న", +"_%n day go_::_%n days ago_" => array("",""), "last month" => "పోయిన నెల", +"_%n month ago_::_%n months ago_" => array("",""), "last year" => "పోయిన సంవత్సరం", "years ago" => "సంవత్సరాల క్రితం" ); diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 25c2d8f1f2..53a150d8f1 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "ส่วนตัว", "Settings" => "ตั้งค่า", "Users" => "ผู้ใช้งาน", -"Apps" => "แอปฯ", "Admin" => "ผู้ดูแล", "web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "ZIP download is turned off." => "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้", @@ -19,15 +18,13 @@ $TRANSLATIONS = array( "Text" => "ข้อความ", "Images" => "รูปภาพ", "seconds ago" => "วินาที ก่อนหน้านี้", -"1 minute ago" => "1 นาทีก่อนหน้านี้", -"%d minutes ago" => "%d นาทีที่ผ่านมา", -"1 hour ago" => "1 ชั่วโมงก่อนหน้านี้", -"%d hours ago" => "%d ชั่วโมงก่อนหน้านี้", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "วันนี้", "yesterday" => "เมื่อวานนี้", -"%d days ago" => "%d วันที่ผ่านมา", +"_%n day go_::_%n days ago_" => array(""), "last month" => "เดือนที่แล้ว", -"%d months ago" => "%d เดือนมาแล้ว", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "ปีที่แล้ว", "years ago" => "ปี ที่ผ่านมา", "Could not find category \"%s\"" => "ไม่พบหมวดหมู่ \"%s\"" diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 233b99e637..f95933645d 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -4,13 +4,15 @@ $TRANSLATIONS = array( "Personal" => "Kişisel", "Settings" => "Ayarlar", "Users" => "Kullanıcılar", -"Apps" => "Uygulamalar", "Admin" => "Yönetici", +"Failed to upgrade \"%s\"." => "\"%s\" yükseltme başarısız oldu.", "web services under your control" => "Bilgileriniz güvenli ve şifreli", +"cannot open \"%s\"" => "\"%s\" açılamıyor", "ZIP download is turned off." => "ZIP indirmeleri kapatılmıştır.", "Files need to be downloaded one by one." => "Dosyaların birer birer indirilmesi gerekmektedir.", "Back to Files" => "Dosyalara dön", "Selected files too large to generate zip file." => "Seçilen dosyalar bir zip dosyası oluşturmak için fazla büyüktür.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Dosyaları ayrı ayrı, küçük parçalar halinde indirin ya da yöneticinizden yardım isteyin. ", "couldn't be determined" => "tespit edilemedi", "Application is not enabled" => "Uygulama etkinleştirilmedi", "Authentication error" => "Kimlik doğrulama hatası", @@ -39,17 +41,16 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", "Please double check the installation guides." => "Lütfen kurulum kılavuzlarını iki kez kontrol edin.", "seconds ago" => "saniye önce", -"1 minute ago" => "1 dakika önce", -"%d minutes ago" => "%d dakika önce", -"1 hour ago" => "1 saat önce", -"%d hours ago" => "%d saat önce", +"_%n minute ago_::_%n minutes ago_" => array("","%n dakika önce"), +"_%n hour ago_::_%n hours ago_" => array("","%n saat önce"), "today" => "bugün", "yesterday" => "dün", -"%d days ago" => "%d gün önce", +"_%n day go_::_%n days ago_" => array("","%n gün önce"), "last month" => "geçen ay", -"%d months ago" => "%d ay önce", +"_%n month ago_::_%n months ago_" => array("","%n ay önce"), "last year" => "geçen yıl", "years ago" => "yıl önce", +"Caused by:" => "Neden olan:", "Could not find category \"%s\"" => "\"%s\" kategorisi bulunamadı" ); $PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/ug.php b/lib/l10n/ug.php index cf460cd302..731ad904d7 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -4,18 +4,15 @@ $TRANSLATIONS = array( "Personal" => "شەخسىي", "Settings" => "تەڭشەكلەر", "Users" => "ئىشلەتكۈچىلەر", -"Apps" => "ئەپلەر", "Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", "Files" => "ھۆججەتلەر", "Text" => "قىسقا ئۇچۇر", "Images" => "سۈرەتلەر", -"1 minute ago" => "1 مىنۇت ئىلگىرى", -"%d minutes ago" => "%d مىنۇت ئىلگىرى", -"1 hour ago" => "1 سائەت ئىلگىرى", -"%d hours ago" => "%d سائەت ئىلگىرى", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "بۈگۈن", "yesterday" => "تۈنۈگۈن", -"%d days ago" => "%d كۈن ئىلگىرى", -"%d months ago" => "%d ئاي ئىلگىرى" +"_%n day go_::_%n days ago_" => array(""), +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/uk.php b/lib/l10n/uk.php index c52aa5dfc7..26617396e0 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Особисте", "Settings" => "Налаштування", "Users" => "Користувачі", -"Apps" => "Додатки", "Admin" => "Адмін", "web services under your control" => "підконтрольні Вам веб-сервіси", "ZIP download is turned off." => "ZIP завантаження вимкнено.", @@ -38,15 +37,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", "Please double check the installation guides." => "Будь ласка, перевірте інструкції по встановленню.", "seconds ago" => "секунди тому", -"1 minute ago" => "1 хвилину тому", -"%d minutes ago" => "%d хвилин тому", -"1 hour ago" => "1 годину тому", -"%d hours ago" => "%d годин тому", +"_%n minute ago_::_%n minutes ago_" => array("","",""), +"_%n hour ago_::_%n hours ago_" => array("","",""), "today" => "сьогодні", "yesterday" => "вчора", -"%d days ago" => "%d днів тому", +"_%n day go_::_%n days ago_" => array("","",""), "last month" => "минулого місяця", -"%d months ago" => "%d місяців тому", +"_%n month ago_::_%n months ago_" => array("","",""), "last year" => "минулого року", "years ago" => "роки тому", "Could not find category \"%s\"" => "Не вдалося знайти категорію \"%s\"" diff --git a/lib/l10n/ur_PK.php b/lib/l10n/ur_PK.php index 57f77d4605..7dc967ccd9 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -4,8 +4,11 @@ $TRANSLATIONS = array( "Personal" => "ذاتی", "Settings" => "سیٹینگز", "Users" => "یوزرز", -"Apps" => "ایپز", "Admin" => "ایڈمن", -"web services under your control" => "آپ کے اختیار میں ویب سروسیز" +"web services under your control" => "آپ کے اختیار میں ویب سروسیز", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"_%n day go_::_%n days ago_" => array("",""), +"_%n month ago_::_%n months ago_" => array("","") ); $PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/vi.php b/lib/l10n/vi.php index c3ec50b41f..ebdb3ab281 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "Cá nhân", "Settings" => "Cài đặt", "Users" => "Người dùng", -"Apps" => "Ứng dụng", "Admin" => "Quản trị", "web services under your control" => "dịch vụ web dưới sự kiểm soát của bạn", "ZIP download is turned off." => "Tải về ZIP đã bị tắt.", @@ -19,15 +18,13 @@ $TRANSLATIONS = array( "Text" => "Văn bản", "Images" => "Hình ảnh", "seconds ago" => "vài giây trước", -"1 minute ago" => "1 phút trước", -"%d minutes ago" => "%d phút trước", -"1 hour ago" => "1 giờ trước", -"%d hours ago" => "%d giờ trước", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "hôm nay", "yesterday" => "hôm qua", -"%d days ago" => "%d ngày trước", +"_%n day go_::_%n days ago_" => array(""), "last month" => "tháng trước", -"%d months ago" => "%d tháng trước", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "năm trước", "years ago" => "năm trước", "Could not find category \"%s\"" => "không thể tìm thấy mục \"%s\"" diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 9d7237bd19..bc81ff8fe1 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "私人", "Settings" => "设置", "Users" => "用户", -"Apps" => "程序", "Admin" => "管理员", "web services under your control" => "您控制的网络服务", "ZIP download is turned off." => "ZIP 下载已关闭", @@ -20,13 +19,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", "Please double check the installation guides." => "请双击安装向导。", "seconds ago" => "秒前", -"1 minute ago" => "1 分钟前", -"%d minutes ago" => "%d 分钟前", -"1 hour ago" => "1小时前", +"_%n minute ago_::_%n minutes ago_" => array("%n 分钟以前"), +"_%n hour ago_::_%n hours ago_" => array("%n 小时以前"), "today" => "今天", "yesterday" => "昨天", -"%d days ago" => "%d 天前", +"_%n day go_::_%n days ago_" => array("%n 天以前"), "last month" => "上个月", +"_%n month ago_::_%n months ago_" => array("%n 个月以前"), "last year" => "去年", "years ago" => "年前" ); diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 4469f0fb1e..b814b055a2 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "个人", "Settings" => "设置", "Users" => "用户", -"Apps" => "应用", "Admin" => "管理", "web services under your control" => "您控制的web服务", "ZIP download is turned off." => "ZIP 下载已经关闭", @@ -39,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", "Please double check the installation guides." => "请认真检查安装指南.", "seconds ago" => "秒前", -"1 minute ago" => "一分钟前", -"%d minutes ago" => "%d 分钟前", -"1 hour ago" => "1小时前", -"%d hours ago" => "%d小时前", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"%d days ago" => "%d 天前", +"_%n day go_::_%n days ago_" => array(""), "last month" => "上月", -"%d months ago" => "%d 月前", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "去年", "years ago" => "年前", "Could not find category \"%s\"" => "无法找到分类 \"%s\"" diff --git a/lib/l10n/zh_HK.php b/lib/l10n/zh_HK.php index f5fc48366f..ca3e6d504e 100644 --- a/lib/l10n/zh_HK.php +++ b/lib/l10n/zh_HK.php @@ -4,12 +4,15 @@ $TRANSLATIONS = array( "Personal" => "個人", "Settings" => "設定", "Users" => "用戶", -"Apps" => "軟件", "Admin" => "管理", "Files" => "文件", "Text" => "文字", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今日", "yesterday" => "昨日", -"last month" => "前一月" +"_%n day go_::_%n days ago_" => array(""), +"last month" => "前一月", +"_%n month ago_::_%n months ago_" => array("") ); $PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_TW.php b/lib/l10n/zh_TW.php index 81b66b9329..83e0dff392 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -4,7 +4,6 @@ $TRANSLATIONS = array( "Personal" => "個人", "Settings" => "設定", "Users" => "使用者", -"Apps" => "應用程式", "Admin" => "管理", "web services under your control" => "由您控制的網路服務", "ZIP download is turned off." => "ZIP 下載已關閉。", @@ -39,15 +38,13 @@ $TRANSLATIONS = array( "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", "Please double check the installation guides." => "請參考安裝指南。", "seconds ago" => "幾秒前", -"1 minute ago" => "1 分鐘前", -"%d minutes ago" => "%d 分鐘前", -"1 hour ago" => "1 小時之前", -"%d hours ago" => "%d 小時之前", +"_%n minute ago_::_%n minutes ago_" => array(""), +"_%n hour ago_::_%n hours ago_" => array(""), "today" => "今天", "yesterday" => "昨天", -"%d days ago" => "%d 天前", +"_%n day go_::_%n days ago_" => array(""), "last month" => "上個月", -"%d months ago" => "%d 個月之前", +"_%n month ago_::_%n months ago_" => array(""), "last year" => "去年", "years ago" => "幾年前", "Could not find category \"%s\"" => "找不到分類:\"%s\"" diff --git a/lib/template/functions.php b/lib/template/functions.php index 2d43cae1c0..717e197c1c 100644 --- a/lib/template/functions.php +++ b/lib/template/functions.php @@ -78,15 +78,13 @@ function relative_modified_date($timestamp) { $diffmonths = round($diffdays/31); if($timediff < 60) { return $l->t('seconds ago'); } - else if($timediff < 120) { return $l->t('1 minute ago'); } - else if($timediff < 3600) { return $l->t('%d minutes ago', $diffminutes); } - else if($timediff < 7200) { return $l->t('1 hour ago'); } - else if($timediff < 86400) { return $l->t('%d hours ago', $diffhours); } + else if($timediff < 3600) { return $l->n('%n minute ago', '%n minutes ago', $diffminutes); } + else if($timediff < 86400) { return $l->n('%n hour ago', '%n hours ago', $diffhours); } else if((date('G')-$diffhours) > 0) { return $l->t('today'); } else if((date('G')-$diffhours) > -24) { return $l->t('yesterday'); } - else if($timediff < 2678400) { return $l->t('%d days ago', $diffdays); } + else if($timediff < 2678400) { return $l->n('%n day go', '%n days ago', $diffdays); } else if($timediff < 5184000) { return $l->t('last month'); } - else if((date('n')-$diffmonths) > 0) { return $l->t('%d months ago', $diffmonths); } + else if((date('n')-$diffmonths) > 0) { return $l->n('%n month ago', '%n months ago', $diffmonths); } else if($timediff < 63113852) { return $l->t('last year'); } else { return $l->t('years ago'); } } diff --git a/lib/util.php b/lib/util.php index b7dc2207e6..25632ac1ea 100755 --- a/lib/util.php +++ b/lib/util.php @@ -168,6 +168,10 @@ class OC_Util { * @return array arrays with error messages and hints */ public static function checkServer() { + // Assume that if checkServer() succeeded before in this session, then all is fine. + if(\OC::$session->exists('checkServer_suceeded') && \OC::$session->get('checkServer_suceeded')) + return array(); + $errors=array(); $defaults = new \OC_Defaults(); @@ -309,6 +313,9 @@ class OC_Util { 'hint'=>'Please ask your server administrator to restart the web server.'); } + // Cache the result of this function + \OC::$session->set('checkServer_suceeded', count($errors) == 0); + return $errors; } diff --git a/settings/help.php b/settings/help.php index 713b23f785..88693939b8 100644 --- a/settings/help.php +++ b/settings/help.php @@ -14,11 +14,11 @@ OC_App::setActiveNavigationEntry( "help" ); if(isset($_GET['mode']) and $_GET['mode'] === 'admin') { - $url=OC_Helper::linkToAbsolute( 'core', 'doc/admin' ); + $url=OC_Helper::linkToAbsolute( 'core', 'doc/admin/index.html' ); $style1=''; $style2=' pressed'; }else{ - $url=OC_Helper::linkToAbsolute( 'core', 'doc/user' ); + $url=OC_Helper::linkToAbsolute( 'core', 'doc/user/index.html' ); $style1=' pressed'; $style2=''; } diff --git a/settings/img/apps.png b/settings/img/apps.png index 2b18f678a0..6dc8d4c8a6 100644 Binary files a/settings/img/apps.png and b/settings/img/apps.png differ diff --git a/settings/img/apps.svg b/settings/img/apps.svg index e2cc48f295..338938f256 100644 --- a/settings/img/apps.svg +++ b/settings/img/apps.svg @@ -1,8 +1,16 @@ - - - - - - - + + + + + + image/svg+xml + + + + + + + + + diff --git a/settings/js/apps.js b/settings/js/apps.js index 6b32686a69..6c835a5999 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -160,7 +160,13 @@ OC.Settings.Apps = OC.Settings.Apps || { a.prepend(filename); a.prepend(img); li.append(a); - container.append(li); + // prepend the new app before the 'More apps' function + $('#apps-management').before(li); + // scroll the app navigation down so the newly added app is seen + $('#navigation').animate({ scrollTop: $('#apps').height() }, 'slow'); + // draw attention to the newly added app entry by flashing it twice + container.children('li[data-id="'+entry.id+'"]').animate({opacity:.3}).animate({opacity:1}).animate({opacity:.3}).animate({opacity:1}); + if (!SVGSupport() && entry.icon.match(/\.svg$/i)) { $(img).addClass('svg'); replaceSVG(); diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index d777a688c1..67ddafdc3c 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -40,24 +40,30 @@ $TRANSLATIONS = array( "Security Warning" => "Beveiligingswaarschuwing", "Setup Warning" => "Instellingswaarschuwing", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt.", +"Please double check the installation guides." => "Conntroleer de installatie handleiding goed.", "Module 'fileinfo' missing" => "Module 'fileinfo' ontbreekt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie.", "Locale not working" => "Taalbestand werkt niet", "Internet connection not working" => "Internet verbinding werkt niet", "Cron" => "Cron", "Execute one task with each page loaded" => "Bij laden van elke pagina één taak uitvoeren", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http.", +"Use systems cron service to call the cron.php file once a minute." => "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen.", "Sharing" => "Delen", "Enable Share API" => "Activeren Share API", "Allow apps to use the Share API" => "Apps toestaan de Share API te gebruiken", "Allow links" => "Toestaan links", "Allow users to share items to the public with links" => "Toestaan dat gebruikers objecten met links delen met anderen", "Allow public uploads" => "Sta publieke uploads toe", +"Allow users to enable others to upload into their publicly shared folders" => "Sta gebruikers toe anderen in hun publiek gedeelde mappen bestanden te uploaden", "Allow resharing" => "Toestaan opnieuw delen", "Allow users to share items shared with them again" => "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen", "Allow users to share with anyone" => "Toestaan dat gebruikers met iedereen delen", "Allow users to only share with users in their groups" => "Instellen dat gebruikers alleen met leden binnen hun groepen delen", "Security" => "Beveiliging", "Enforce HTTPS" => "Afdwingen HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Dwingt de clients om een versleutelde verbinding te maken met %s", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen.", "Log" => "Log", "Log level" => "Log niveau", "More" => "Meer", diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index 21deabd513..2c4990b285 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -40,6 +40,7 @@ $TRANSLATIONS = array( "Security Warning" => "Ostrzeżenie o zabezpieczeniach", "Setup Warning" => "Ostrzeżenia konfiguracji", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony.", +"Please double check the installation guides." => "Proszę sprawdź ponownie przewodnik instalacji.", "Module 'fileinfo' missing" => "Brak modułu „fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME.", "Locale not working" => "Lokalizacja nie działa", @@ -58,6 +59,7 @@ $TRANSLATIONS = array( "Allow users to only share with users in their groups" => "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup", "Security" => "Bezpieczeństwo", "Enforce HTTPS" => "Wymuś HTTPS", +"Forces the clients to connect to %s via an encrypted connection." => "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego.", "Log" => "Logi", "Log level" => "Poziom logów", "More" => "Więcej", diff --git a/settings/l10n/ru_RU.php b/settings/l10n/ru_RU.php deleted file mode 100644 index 87b0ec1181..0000000000 --- a/settings/l10n/ru_RU.php +++ /dev/null @@ -1,11 +0,0 @@ - "Ошибка", -"Saving..." => "Сохранение", -"deleted" => "удалено", -"Groups" => "Группы", -"Delete" => "Удалить", -"Email" => "Email", -"Other" => "Другое" -); -$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);"; diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 27ae7ae25b..0e7fa8bc3c 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -38,25 +38,34 @@ $TRANSLATIONS = array( "A valid password must be provided" => "Geçerli bir parola mutlaka sağlanmalı", "__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 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. .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ı", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor.", +"Please double check the installation guides." => "Lütfen kurulum kılavuzlarını tekrar kontrol edin.", "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.", +"System locale can't be set 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." => "Sistem yereli %s olarak değiştirilemedi. Bu, dosya adlarındaki bazı karakterlerde sorun olabileceği anlamına gelir. %s desteklemek için gerekli paketleri kurmanızı şiddetle öneririz.", "Internet connection not working" => "İnternet bağlantısı çalışmıyor", +"This 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." => "Bu sunucunun çalışan bir internet bağlantısı yok. Bu, harici depolama alanı bağlama, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacak demektir. Uzak dosyalara erişim ve e-posta ile bildirim gönderme de çalışmayacaktır. Eğer bu özelliklerin tamamını kullanmak istiyorsanız, sunucu için internet bağlantısını etkinleştirmenizi öneriyoruz.", "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 to call cron.php once a minute over http." => "Http üzerinden dakikada bir çalıştırılmak üzere, cron.php bir webcron hizmetine kaydedildi.", +"Use systems cron service to call the cron.php file once a minute." => "cron.php dosyasını dakikada bir çağırmak için sistemin cron hizmetini kullan. ", "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 public uploads" => "Herkes tarafından yüklemeye 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", +"Forces the clients to connect to %s via an encrypted connection." => "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen ,%s a HTTPS ile bağlanın.", "Log" => "Kayıtlar", "Log level" => "Günlük seviyesi", "More" => "Daha fazla", diff --git a/settings/languageCodes.php b/settings/languageCodes.php index 40213b3a7e..3613ee4fe9 100644 --- a/settings/languageCodes.php +++ b/settings/languageCodes.php @@ -61,7 +61,6 @@ return array( 'pl_PL'=>'Polski', 'ka_GE'=>'Georgian for Georgia', 'ku_IQ'=>'Kurdish Iraq', -'ru_RU'=>'Русский язык', 'si_LK'=>'Sinhala', 'be'=>'Belarusian', 'ka'=>'Kartuli (Georgian)', diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 2b14c1460d..e54586b80d 100644 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -90,38 +90,30 @@ if (!$_['internetconnectionworking']) {
    t('Cron'));?> - - - - - - - - - - -
    +

    >
    t("Execute one task with each page loaded")); ?> -

    +

    +

    >
    t("cron.php is registered at a webcron service to call cron.php once a minute over http.")); ?> -

    +

    +

    >
    t("Use systems cron service to call the cron.php file once a minute.")); ?> -

    +

    diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 263ceadccc..f6deb93a49 100644 --- a/tests/lib/files/cache/scanner.php +++ b/tests/lib/files/cache/scanner.php @@ -143,6 +143,24 @@ class Scanner extends \PHPUnit_Framework_TestCase { $newData = $this->cache->get(''); $this->assertEquals($oldData['etag'], $newData['etag']); $this->assertEquals(-1, $newData['size']); + + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE); + $oldData = $this->cache->get(''); + $this->assertNotEquals(-1, $oldData['size']); + $this->scanner->scanFile('', \OC\Files\Cache\Scanner::REUSE_ETAG + \OC\Files\Cache\Scanner::REUSE_SIZE); + $newData = $this->cache->get(''); + $this->assertEquals($oldData['etag'], $newData['etag']); + $this->assertEquals($oldData['size'], $newData['size']); + + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_RECURSIVE, \OC\Files\Cache\Scanner::REUSE_ETAG + \OC\Files\Cache\Scanner::REUSE_SIZE); + $newData = $this->cache->get(''); + $this->assertEquals($oldData['etag'], $newData['etag']); + $this->assertEquals($oldData['size'], $newData['size']); + + $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_ETAG + \OC\Files\Cache\Scanner::REUSE_SIZE); + $newData = $this->cache->get(''); + $this->assertEquals($oldData['etag'], $newData['etag']); + $this->assertEquals($oldData['size'], $newData['size']); } public function testRemovedFile() { diff --git a/tests/lib/files/utils/scanner.php b/tests/lib/files/utils/scanner.php new file mode 100644 index 0000000000..a021d215ae --- /dev/null +++ b/tests/lib/files/utils/scanner.php @@ -0,0 +1,74 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Files\Utils; + +use OC\Files\Mount\Mount; +use OC\Files\Storage\Temporary; + +class TestScanner extends \OC\Files\Utils\Scanner { + /** + * @var \OC\Files\Mount\Mount[] $mounts + */ + private $mounts = array(); + + /** + * @param \OC\Files\Mount\Mount $mount + */ + public function addMount($mount) { + $this->mounts[] = $mount; + } + + protected function getMounts($dir) { + return $this->mounts; + } +} + +class Scanner extends \PHPUnit_Framework_TestCase { + public function testReuseExistingRoot() { + $storage = new Temporary(array()); + $mount = new Mount($storage, ''); + $cache = $storage->getCache(); + + $storage->mkdir('folder'); + $storage->file_put_contents('foo.txt', 'qwerty'); + $storage->file_put_contents('folder/bar.txt', 'qwerty'); + + $scanner = new TestScanner(''); + $scanner->addMount($mount); + + $scanner->scan(''); + $this->assertTrue($cache->inCache('folder/bar.txt')); + $oldRoot = $cache->get(''); + + $scanner->scan(''); + $newRoot = $cache->get(''); + $this->assertEquals($oldRoot, $newRoot); + } + + public function testReuseExistingFile() { + $storage = new Temporary(array()); + $mount = new Mount($storage, ''); + $cache = $storage->getCache(); + + $storage->mkdir('folder'); + $storage->file_put_contents('foo.txt', 'qwerty'); + $storage->file_put_contents('folder/bar.txt', 'qwerty'); + + $scanner = new TestScanner(''); + $scanner->addMount($mount); + + $scanner->scan(''); + $this->assertTrue($cache->inCache('folder/bar.txt')); + $old = $cache->get('folder/bar.txt'); + + $scanner->scan(''); + $new = $cache->get('folder/bar.txt'); + $this->assertEquals($old, $new); + } +} diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php index dfc5790c2e..12eac818f8 100644 --- a/tests/lib/l10n.php +++ b/tests/lib/l10n.php @@ -52,4 +52,16 @@ class Test_L10n extends PHPUnit_Framework_TestCase { $this->assertEquals('5 oken', (string)$l->n('%n window', '%n windows', 5)); } + /** + * Issue #4360: Do not call strtotime() on numeric strings. + */ + public function testNumericStringToDateTime() { + $l = new OC_L10N('test'); + $this->assertSame('February 13, 2009 23:31', $l->l('datetime', '1234567890')); + } + + public function testNumericToDateTime() { + $l = new OC_L10N('test'); + $this->assertSame('February 13, 2009 23:31', $l->l('datetime', 1234567890)); + } }