diff --git a/3rdparty b/3rdparty index 72db6ce87d69f00ce62d2f3f277a54f6fdd0f693..2f3ae9f56a9838b45254393e13c14f8a8c380d6b 160000 --- a/3rdparty +++ b/3rdparty @@ -1 +1 @@ -Subproject commit 72db6ce87d69f00ce62d2f3f277a54f6fdd0f693 +Subproject commit 2f3ae9f56a9838b45254393e13c14f8a8c380d6b diff --git a/apps/files/ajax/download.php b/apps/files/ajax/download.php index 7c8dcb372e24c5d4517b1ac5459e1c03feb9744a..b2bfd53506d66697482f645e1f40cb6e5bff298d 100644 --- a/apps/files/ajax/download.php +++ b/apps/files/ajax/download.php @@ -35,7 +35,7 @@ $dir = $_GET["dir"]; $files_list = json_decode($files); // in case we get only a single file -if ($files_list === NULL ) { +if (!is_array($files_list)) { $files_list = array($files); } diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php index 8548fc95ddf963d6ef131b8b94fa808a5d547e21..d224e79d01ba2dca4be3fc254ac5f3186cd48249 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 99739cb4cee71461bf43d1a6f0e8143b7e8939a4..aa839b81d1816c67a5ade7b711e6676da7414b4b 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/console/scan.php b/apps/files/console/scan.php new file mode 100644 index 0000000000000000000000000000000000000000..70183fc888af90e21b912de1b85927afe866f031 --- /dev/null +++ b/apps/files/console/scan.php @@ -0,0 +1,31 @@ +" . PHP_EOL; + echo " will rescan all files of the given user" . PHP_EOL; + echo " files:scan --all" . PHP_EOL; + echo " will rescan all files of all known users" . PHP_EOL; + return; +} + +function scanFiles($user) { + $scanner = new \OC\Files\Utils\Scanner($user); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFile', function($path) { + echo "Scanning $path" . PHP_EOL; + }); + $scanner->listen('\OC\Files\Utils\Scanner', 'scanFolder', function($path) { + echo "Scanning $path" . PHP_EOL; + }); + $scanner->scan(''); +} + +if ($argv[1] === '--all') { + $users = OC_User::getUsers(); +} else { + $users = array($argv[1]); +} + +foreach ($users as $user) { + scanFiles($user); +} diff --git a/apps/files/css/files.css b/apps/files/css/files.css index f2ca1065ecad4fc977a0135dfefb0bf85fcfb699..50aa58b53d7cf5b03bfe610eb0c03c31e0774bac 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -24,7 +24,7 @@ #new>ul>li>p { cursor:pointer; } #new>ul>li>form>input { padding:0.3em; margin:-0.3em; } -#trash { height:17px; margin: 0 1em; z-index:1010; float: right; } +#trash { margin: 0 1em; z-index:1010; float: right; } #upload { height:27px; padding:0; margin-left:0.2em; overflow:hidden; @@ -114,7 +114,7 @@ table td.filename form { font-size:.85em; margin-left:3em; margin-right:3em; } position:relative; width:100%; -webkit-transition:background-image 500ms; -moz-transition:background-image 500ms; -o-transition:background-image 500ms; transition:background-image 500ms; } -#select_all { float:left; margin:.3em 0.6em 0 .5em; } +#select_all { float:left; margin:.4em 0.6em 0 .5em; } #uploadsize-message,#delete-confirm { display:none; } /* File actions */ @@ -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/index.php b/apps/files/index.php index 2f0053915090d43146e4d49a7d739d36dd013c71..4f9e881eb2da08b0c567c8ae99e6139c6c8682a6 100644 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -126,6 +126,12 @@ if ($needUpgrade) { $publicUploadEnabled = 'no'; } + $trashEnabled = \OCP\App::isEnabled('files_trashbin'); + $trashEmpty = true; + if ($trashEnabled) { + $trashEmpty = \OCA\Files_Trashbin\Trashbin::isEmpty($user); + } + OCP\Util::addscript('files', 'fileactions'); OCP\Util::addscript('files', 'files'); OCP\Util::addscript('files', 'keyboardshortcuts'); @@ -136,7 +142,8 @@ if ($needUpgrade) { $tmpl->assign('isCreatable', \OC\Files\Filesystem::isCreatable($dir . '/')); $tmpl->assign('permissions', $permissions); $tmpl->assign('files', $files); - $tmpl->assign('trash', \OCP\App::isEnabled('files_trashbin')); + $tmpl->assign('trash', $trashEnabled); + $tmpl->assign('trashEmpty', $trashEmpty); $tmpl->assign('uploadMaxFilesize', $maxUploadFilesize); $tmpl->assign('uploadMaxHumanFilesize', OCP\Util::humanFileSize($maxUploadFilesize)); $tmpl->assign('allowZipDownload', intval(OCP\Config::getSystemValue('allowZipDownload', true))); diff --git a/apps/files/js/file-upload.js b/apps/files/js/file-upload.js index 942a07dfcccd1ebac562a724fb7539972edd763b..0eddd7e9cd7179a117fe8a7489ff4cbfc9a2a3c9 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 - } + 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; - }); + 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 - } + 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(); + // 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; - } + // 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); + //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); - } + 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; + 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]; - } + // 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(); - } + }, + /** + * 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; - } + //IE < 10 does not fire the necessary events for the progress bar. + if($('html.lte9').length > 0) { + return; + } - $('#uploadprogressbar').progressbar('value',100); - $('#uploadprogressbar').fadeOut(); + $('#uploadprogressbar').progressbar('value',100); + $('#uploadprogressbar').fadeOut(); + } } - } - var file_upload_handler = function() { - $('#file_upload_start').fileupload(file_upload_param); - }; + 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++; + if ( document.getElementById('data-upload-form') ) { + $(file_upload_handler); } - 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.'); - }); + $.assocArraySize = function(obj) { + // http://stackoverflow.com/a/6700/11236 + var size = 0, key; + for (key in obj) { + if (obj.hasOwnProperty(key)) size++; + } + return size; + }; - //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') - } + // 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.'); + }); - //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); - } + //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') + } - $(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; + //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); } - $('#new li').each(function(i,element){ - if($(element).children('p').length==0){ - $(element).children('form').remove(); - $(element).append('

'+$(element).data('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; + } - 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')); + $('#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(); } - } - ); - 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); + var name = getUniqueName(newname); + if (newname != name) { + FileList.checkName(name, newname, true); + var hidden = true; } else { - OC.dialogs.alert(result.data.message, t('core', 'Error')); + var hidden = false; } - } - ); - 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(); - } + 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); + 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(); }); - 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 aa66a57a7b5e994eb0d04041761eb1a62c770306..5027211b53646a32cf4a79891803694c13c6ca28 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 04a9fb91649d7d34ef3c23f56b4354f4e1317b3c..10801af3eadd7fffd28d021d2c6b5bd1dd35b7bf 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) { @@ -392,10 +390,11 @@ var FileList={ files.removeClass('selected'); }); procesSelection(); + 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'); }); } }); @@ -451,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 98fc53b71a9d91d85726a6782d80f0085c5da5bc..e1c53184dd170f637977f03d74270d6f19c3931c 100644 --- a/apps/files/js/files.js +++ b/apps/files/js/files.js @@ -121,7 +121,7 @@ $(document).ready(function() { }); // Show trash bin - $('#trash a').live('click', function() { + $('#trash').on('click', function() { window.location=OC.filePath('files_trashbin', '', 'index.php'); }); @@ -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(''); @@ -845,3 +839,11 @@ function getUniqueName(name){ } return name; } + +function checkTrashStatus() { + $.post(OC.filePath('files_trashbin', 'ajax', 'isEmpty.php'), function(result){ + if (result.data.isEmpty === false) { + $("input[type=button][id=trash]").removeAttr("disabled"); + } + }); +} diff --git a/apps/files/l10n/ar.php b/apps/files/l10n/ar.php index e000bc966c150b5c4168ec4f50a39d61e3671568..7161e49a96885aab6f62cfc5aec9972ac05e99e9 100644 --- a/apps/files/l10n/ar.php +++ b/apps/files/l10n/ar.php @@ -1,4 +1,5 @@ - "فشل في نقل الملف %s - يوجد ملف بنفس هذا الاسم", "Could not move %s" => "فشل في نقل %s", "No file was uploaded. Unknown error" => "لم يتم رفع أي ملف , خطأ غير معروف", @@ -19,7 +20,6 @@ "Error" => "خطأ", "Share" => "شارك", "Delete permanently" => "حذف بشكل دائم", -"Delete" => "إلغاء", "Rename" => "إعادة تسميه", "Pending" => "قيد الانتظار", "{new_name} already exists" => "{new_name} موجود مسبقا", @@ -28,8 +28,7 @@ "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." => "اسم غير صحيح , الرموز '\\', '/', '<', '>', ':', '\"', '|', '?' و \"*\" غير مسموح استخدامها", @@ -40,10 +39,8 @@ "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" => "الحد الأقصى لحجم الملفات التي يمكن رفعها", @@ -63,9 +60,11 @@ "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" => "الفحص الحالي", "Upgrading filesystem cache..." => "تحديث ذاكرة التخزين المؤقت(الكاش) الخاصة بملفات النظام ..." ); +$PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files/l10n/bg_BG.php b/apps/files/l10n/bg_BG.php index f4424f925774b5c8d5ca9381c14e0b94a119249d..1e2104370ba5dc8042e8fdfbceaf9fbb2ded7bba 100644 --- a/apps/files/l10n/bg_BG.php +++ b/apps/files/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Файлът е качен успешно", "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" => "Файлът е качен частично", @@ -11,19 +12,17 @@ "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 за без ограничения", @@ -34,8 +33,10 @@ "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." => "Файловете се претърсват, изчакайте.", "file" => "файл" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/bn_BD.php b/apps/files/l10n/bn_BD.php index 6d755bccc8af45e3305e6bf20f1173ac9e2861db..2f05a3eccf818636a09a32e5295ab5ba7c457871 100644 --- a/apps/files/l10n/bn_BD.php +++ b/apps/files/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "%s কে স্থানান্তর করা সম্ভব হলো না - এই নামের ফাইল বিদ্যমান", "Could not move %s" => "%s কে স্থানান্তর করা সম্ভব হলো না", "No file was uploaded. Unknown error" => "কোন ফাইল আপলোড করা হয় নি। সমস্যার কারণটি অজ্ঞাত।", @@ -18,7 +19,6 @@ "URL cannot be empty." => "URL ফাঁকা রাখা যাবে না।", "Error" => "সমস্যা", "Share" => "ভাগাভাগি কর", -"Delete" => "মুছে", "Rename" => "পূনঃনামকরণ", "Pending" => "মুলতুবি", "{new_name} already exists" => "{new_name} টি বিদ্যমান", @@ -27,7 +27,7 @@ "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." => "নামটি সঠিক নয়, '\\', '/', '<', '>', ':', '\"', '|', '?' এবং '*' অনুমোদিত নয়।", @@ -35,10 +35,8 @@ "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" => "আপলোডের সর্বোচ্চ আকার", @@ -56,8 +54,10 @@ "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" => "বর্তমান স্ক্যানিং" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ca.php b/apps/files/l10n/ca.php index 8d5f69f33184da19368df9b830fa157c77882ce5..3ce9a41777024c0e9187693fe1f35b482bac5413 100644 --- a/apps/files/l10n/ca.php +++ b/apps/files/l10n/ca.php @@ -1,4 +1,5 @@ - "No s'ha pogut moure %s - Ja hi ha un fitxer amb aquest nom", "Could not move %s" => " No s'ha pogut moure %s", "Unable to set upload directory." => "No es pot establir la carpeta de pujada.", @@ -23,7 +24,6 @@ "Error" => "Error", "Share" => "Comparteix", "Delete permanently" => "Esborra permanentment", -"Delete" => "Esborra", "Rename" => "Reanomena", "Pending" => "Pendent", "{new_name} already exists" => "{new_name} ja existeix", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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", @@ -79,3 +77,4 @@ "files" => "fitxers", "Upgrading filesystem cache..." => "Actualitzant la memòria de cau del sistema de fitxers..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/cs_CZ.php b/apps/files/l10n/cs_CZ.php index c16d32e9c28e81e505f755b5ef8400b4141ede43..2fe09db1f99427a1bd124904d015d455776c5fda 100644 --- a/apps/files/l10n/cs_CZ.php +++ b/apps/files/l10n/cs_CZ.php @@ -1,12 +1,13 @@ - "Nelze přesunout %s - existuje soubor se stejným názvem", + "Nelze přesunout %s - již existuje soubor se stejným názvem", "Could not move %s" => "Nelze přesunout %s", "Unable to set upload directory." => "Nelze nastavit adresář pro nahrané soubory.", "Invalid Token" => "Neplatný token", -"No file was uploaded. Unknown error" => "Soubor nebyl odeslán. Neznámá chyba", +"No file was uploaded. Unknown error" => "Žádný soubor nebyl odeslán. Neznámá chyba", "There is no error, the file uploaded with success" => "Soubor byl odeslán úspěšně", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v php.ini:", -"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML", +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML", "The uploaded file was only partially uploaded" => "Soubor byl odeslán pouze částečně", "No file was uploaded" => "Žádný soubor nebyl odeslán", "Missing a temporary folder" => "Chybí adresář pro dočasné soubory", @@ -14,16 +15,15 @@ "Not enough storage available" => "Nedostatek dostupného úložného prostoru", "Invalid directory." => "Neplatný adresář", "Files" => "Soubory", -"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů", -"Not enough space available" => "Nedostatek dostupného místa", +"Unable to upload your file as it is a directory or has 0 bytes" => "Nelze odeslat Váš soubor, protože je to adresář nebo jeho velikost je 0 bajtů", +"Not enough space available" => "Nedostatek volného místa", "Upload cancelled." => "Odesílání zrušeno.", -"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání.", -"URL cannot be empty." => "URL nemůže být prázdná", +"File upload is in progress. Leaving the page now will cancel the upload." => "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání.", +"URL cannot be empty." => "URL nemůže být prázdná.", "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" => "Název složky nelze použít. Použití názvu 'Shared' je ownCloudem rezervováno", "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", @@ -31,24 +31,22 @@ "suggest name" => "navrhnout název", "cancel" => "zrušit", "replaced {new_name} with {old_name}" => "nahrazeno {new_name} s {old_name}", -"undo" => "zpět", -"perform delete operation" => "provést smazání", -"1 file uploading" => "odesílá se 1 soubor", +"undo" => "vrátit zpět", +"_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.", "Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed." => "Neplatný název, znaky '\\', '/', '<', '>', ':', '\"', '|', '?' a '*' nejsou povoleny.", "Your storage is full, files can not be updated or synced anymore!" => "Vaše úložiště je plné, nelze aktualizovat ani synchronizovat soubory.", "Your storage is almost full ({usedSpacePercent}%)" => "Vaše úložiště je téměř plné ({usedSpacePercent}%)", -"Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat.", -"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud", +"Your download is being prepared. This might take some time if the files are big." => "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat.", +"Invalid folder name. Usage of 'Shared' is reserved by Owncloud" => "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud", "Name" => "Název", "Size" => "Velikost", "Modified" => "Upraveno", -"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("","",""), +"%s could not be renamed" => "%s nemůže být přejmenován", "Upload" => "Odeslat", "File handling" => "Zacházení se soubory", "Maximum upload size" => "Maximální velikost pro odesílání", @@ -68,11 +66,15 @@ "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.", "Current scanning" => "Aktuální prohledávání", +"directory" => "adresář", +"directories" => "adresáře", "file" => "soubor", "files" => "soubory", "Upgrading filesystem cache..." => "Aktualizuji mezipaměť souborového systému..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files/l10n/cy_GB.php b/apps/files/l10n/cy_GB.php index 0aab1a18bc5da97120d00d1b941973a82f77871d..01c4613a8cead8cfac7606239c2f62653d1a422c 100644 --- a/apps/files/l10n/cy_GB.php +++ b/apps/files/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Methwyd symud %s - Mae ffeil gyda'r enw hwn eisoes yn bodoli", "Could not move %s" => "Methwyd symud %s", "No file was uploaded. Unknown error" => "Ni lwythwyd ffeil i fyny. Gwall anhysbys.", @@ -20,7 +21,6 @@ "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", @@ -29,8 +29,7 @@ "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.", @@ -42,10 +41,8 @@ "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", @@ -65,9 +62,11 @@ "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.", "Current scanning" => "Sganio cyfredol", "Upgrading filesystem cache..." => "Uwchraddio storfa system ffeiliau..." ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files/l10n/da.php b/apps/files/l10n/da.php index c2f200e476fe956b2b9247b966b2a982840d4a6a..0491eefb7f4cdb5f9b9c87d69344206f240958d0 100644 --- a/apps/files/l10n/da.php +++ b/apps/files/l10n/da.php @@ -1,6 +1,9 @@ - "Kunne ikke flytte %s - der findes allerede en fil med dette navn", "Could not move %s" => "Kunne ikke flytte %s", +"Unable to set upload directory." => "Ude af stand til at vælge upload mappe.", +"Invalid Token" => "Ugyldig Token ", "No file was uploaded. Unknown error" => "Ingen fil blev uploadet. Ukendt fejl.", "There is no error, the file uploaded with success" => "Der skete ingen fejl, filen blev succesfuldt uploadet", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini", @@ -21,7 +24,6 @@ "Error" => "Fejl", "Share" => "Del", "Delete permanently" => "Slet permanent", -"Delete" => "Slet", "Rename" => "Omdøb", "Pending" => "Afventer", "{new_name} already exists" => "{new_name} eksisterer allerede", @@ -30,8 +32,7 @@ "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.", @@ -43,10 +44,9 @@ "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", "Maximum upload size" => "Maksimal upload-størrelse", @@ -66,11 +66,15 @@ "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.", "Current scanning" => "Indlæser", +"directory" => "mappe", +"directories" => "Mapper", "file" => "fil", "files" => "filer", "Upgrading filesystem cache..." => "Opgraderer filsystems cachen..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de.php b/apps/files/l10n/de.php index 33430795ddde4423f3365299b12c670a846cd67d..c6c76dbf464e755f547c975f0dcab9463bbb8e6d 100644 --- a/apps/files/l10n/de.php +++ b/apps/files/l10n/de.php @@ -1,4 +1,5 @@ - "Konnte %s nicht verschieben. Eine Datei mit diesem Namen existiert bereits", "Could not move %s" => "Konnte %s nicht verschieben", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", @@ -23,7 +24,6 @@ "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", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/de_DE.php b/apps/files/l10n/de_DE.php index 3ce3b2a7fb5ae536a9fa57d9efd80f6d143bb64c..e4d622d6caa4bbf492aca63f8ab0d3e181180bb1 100644 --- a/apps/files/l10n/de_DE.php +++ b/apps/files/l10n/de_DE.php @@ -1,4 +1,5 @@ - "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits.", "Could not move %s" => "Konnte %s nicht verschieben", "Unable to set upload directory." => "Das Upload-Verzeichnis konnte nicht gesetzt werden.", @@ -23,7 +24,6 @@ "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", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "Dateien", "Upgrading filesystem cache..." => "Dateisystem-Cache wird aktualisiert ..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/el.php b/apps/files/l10n/el.php index 7291dbbf1569a183b7aa3fc410beaa828ec887a4..e1d0052bc0be510cf1c1add2038ebc6410a39765 100644 --- a/apps/files/l10n/el.php +++ b/apps/files/l10n/el.php @@ -1,6 +1,9 @@ - "Αδυναμία μετακίνησης του %s - υπάρχει ήδη αρχείο με αυτό το όνομα", "Could not move %s" => "Αδυναμία μετακίνησης του %s", +"Unable to set upload directory." => "Αδυναμία ορισμού καταλόγου αποστολής.", +"Invalid Token" => "Μη έγκυρο Token", "No file was uploaded. Unknown error" => "Δεν ανέβηκε κάποιο αρχείο. Άγνωστο σφάλμα", "There is no error, the file uploaded with success" => "Δεν υπάρχει σφάλμα, το αρχείο εστάλει επιτυχώς", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Το αρχείο που εστάλει υπερβαίνει την οδηγία μέγιστου επιτρεπτού μεγέθους \"upload_max_filesize\" του php.ini", @@ -21,7 +24,6 @@ "Error" => "Σφάλμα", "Share" => "Διαμοιρασμός", "Delete permanently" => "Μόνιμη διαγραφή", -"Delete" => "Διαγραφή", "Rename" => "Μετονομασία", "Pending" => "Εκκρεμεί", "{new_name} already exists" => "{new_name} υπάρχει ήδη", @@ -30,8 +32,7 @@ "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 +44,9 @@ "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,6 +66,7 @@ "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." => "Τα αρχεία σαρώνονται, παρακαλώ περιμένετε.", @@ -76,3 +77,4 @@ "files" => "αρχεία", "Upgrading filesystem cache..." => "Ενημέρωση της μνήμης cache του συστήματος αρχείων..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/en@pirate.php b/apps/files/l10n/en@pirate.php index fdd1850da900c44cc2536ae2082becbf96f51e66..83351f265f09031629b06b63f476892adfdbb7af 100644 --- a/apps/files/l10n/en@pirate.php +++ b/apps/files/l10n/en@pirate.php @@ -1,3 +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 561545ec6aeef5d7a6a1d33922fcf94229eb34bf..0f404fa29fa250c9d37afc36320d0d7757ed3f97 100644 --- a/apps/files/l10n/eo.php +++ b/apps/files/l10n/eo.php @@ -1,4 +1,5 @@ - "Ne eblis movi %s: dosiero kun ĉi tiu nomo jam ekzistas", "Could not move %s" => "Ne eblis movi %s", "No file was uploaded. Unknown error" => "Neniu dosiero alŝutiĝis. Nekonata eraro.", @@ -21,7 +22,6 @@ "Error" => "Eraro", "Share" => "Kunhavigi", "Delete permanently" => "Forigi por ĉiam", -"Delete" => "Forigi", "Rename" => "Alinomigi", "Pending" => "Traktotaj", "{new_name} already exists" => "{new_name} jam ekzistas", @@ -30,8 +30,7 @@ "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.", @@ -43,10 +42,8 @@ "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", @@ -66,6 +63,7 @@ "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.", @@ -74,3 +72,4 @@ "files" => "dosieroj", "Upgrading filesystem cache..." => "Ĝisdatiĝas dosiersistema kaŝmemoro..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es.php b/apps/files/l10n/es.php index 78740d5150726cad47c6d324c35e1b07aa75546c..2672b16954963437cf07c8eb68c435fcc0ced7de 100644 --- a/apps/files/l10n/es.php +++ b/apps/files/l10n/es.php @@ -1,4 +1,5 @@ - "No se pudo mover %s - Un archivo con ese nombre ya existe.", "Could not move %s" => "No se pudo mover %s", "Unable to set upload directory." => "Incapaz de crear directorio de subida.", @@ -23,7 +24,6 @@ "Error" => "Error", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", -"Delete" => "Eliminar", "Rename" => "Renombrar", "Pending" => "Pendiente", "{new_name} already exists" => "{new_name} ya existe", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "archivos", "Upgrading filesystem cache..." => "Actualizando caché del sistema de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/es_AR.php b/apps/files/l10n/es_AR.php index 3fc3be179822ee5467b78b25f6c85d01df813b9d..5e94da3c437b8e10d0ebae10c58df26866f85cca 100644 --- a/apps/files/l10n/es_AR.php +++ b/apps/files/l10n/es_AR.php @@ -1,4 +1,5 @@ - "No se pudo mover %s - Un archivo con este nombre ya existe", "Could not move %s" => "No se pudo mover %s ", "Unable to set upload directory." => "No fue posible crear el directorio de subida.", @@ -23,7 +24,6 @@ "Error" => "Error", "Share" => "Compartir", "Delete permanently" => "Borrar permanentemente", -"Delete" => "Borrar", "Rename" => "Cambiar nombre", "Pending" => "Pendientes", "{new_name} already exists" => "{new_name} ya existe", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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á.", @@ -79,3 +77,4 @@ "files" => "archivos", "Upgrading filesystem cache..." => "Actualizando el cache del sistema de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/et_EE.php b/apps/files/l10n/et_EE.php index c58b066e28719c9fe934f15cd83834971e251fae..468f72e9d7f4f1d2804e1df8d1959c533078fabe 100644 --- a/apps/files/l10n/et_EE.php +++ b/apps/files/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Ei saa liigutada faili %s - samanimeline fail on juba olemas", "Could not move %s" => "%s liigutamine ebaõnnestus", "Unable to set upload directory." => "Üleslaadimiste kausta määramine ebaõnnestus.", @@ -23,7 +24,6 @@ "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", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "faili", "Upgrading filesystem cache..." => "Failisüsteemi puhvri uuendamine..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/eu.php b/apps/files/l10n/eu.php index 96bfb2d1cc8e831cb6ba30afc6f8b13193bc299c..fe6e117a93b505ef21e0a99ae4cb6415bb0ae9ac 100644 --- a/apps/files/l10n/eu.php +++ b/apps/files/l10n/eu.php @@ -1,4 +1,5 @@ - "Ezin da %s mugitu - Izen hau duen fitxategia dagoeneko existitzen da", "Could not move %s" => "Ezin dira fitxategiak mugitu %s", "Unable to set upload directory." => "Ezin da igoera direktorioa ezarri.", @@ -23,7 +24,6 @@ "Error" => "Errorea", "Share" => "Elkarbanatu", "Delete permanently" => "Ezabatu betirako", -"Delete" => "Ezabatu", "Rename" => "Berrizendatu", "Pending" => "Zain", "{new_name} already exists" => "{new_name} dagoeneko existitzen da", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "fitxategiak", "Upgrading filesystem cache..." => "Fitxategi sistemaren katxea eguneratzen..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fa.php b/apps/files/l10n/fa.php index 73f4b493b4d88b3d02edf3fe8819169444a2d6ba..96332921cff90ab9f1b4ad6af8f4c9349652cee0 100644 --- a/apps/files/l10n/fa.php +++ b/apps/files/l10n/fa.php @@ -1,4 +1,5 @@ - "%s نمی تواند حرکت کند - در حال حاضر پرونده با این نام وجود دارد. ", "Could not move %s" => "%s نمی تواند حرکت کند ", "Unable to set upload directory." => "قادر به تنظیم پوشه آپلود نمی باشد.", @@ -23,7 +24,6 @@ "Error" => "خطا", "Share" => "اشتراک‌گذاری", "Delete permanently" => "حذف قطعی", -"Delete" => "حذف", "Rename" => "تغییرنام", "Pending" => "در انتظار", "{new_name} already exists" => "{نام _جدید} در حال حاضر وجود دارد.", @@ -32,8 +32,7 @@ "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." => "نام پرونده نمی تواند خالی باشد.", @@ -45,10 +44,8 @@ "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" => "اداره پرونده ها", @@ -69,6 +66,7 @@ "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." => "پرونده ها در حال بازرسی هستند لطفا صبر کنید", @@ -79,3 +77,4 @@ "files" => "پرونده ها", "Upgrading filesystem cache..." => "بهبود فایل سیستمی ذخیره گاه..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/fi.php b/apps/files/l10n/fi.php index c5ce878aded2fb3a742cc65acd12f3112d59a4ab..437708293970f8a275acde96105145a00c51cd6b 100644 --- a/apps/files/l10n/fi.php +++ b/apps/files/l10n/fi.php @@ -1,3 +1,5 @@ - "tallentaa" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fi_FI.php b/apps/files/l10n/fi_FI.php index 40df7b1546eef85139440f495017386d24532fd1..b48f44665bc282e9a164fac4d22127f0460e0c1e 100644 --- a/apps/files/l10n/fi_FI.php +++ b/apps/files/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Kohteen %s siirto ei onnistunut - Tiedosto samalla nimellä on jo olemassa", "Could not move %s" => "Kohteen %s siirto ei onnistunut", "No file was uploaded. Unknown error" => "Tiedostoa ei lähetetty. Tuntematon virhe", @@ -20,7 +21,6 @@ "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", @@ -28,7 +28,7 @@ "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.", @@ -38,10 +38,8 @@ "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", @@ -61,6 +59,7 @@ "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.", @@ -71,3 +70,4 @@ "files" => "tiedostoa", "Upgrading filesystem cache..." => "Päivitetään tiedostojärjestelmän välimuistia..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/fr.php b/apps/files/l10n/fr.php index b293f85ed4239665caa1dfa84ccc7afea5fbc296..6006413449842bcfee768bbcf91c088898946d20 100644 --- a/apps/files/l10n/fr.php +++ b/apps/files/l10n/fr.php @@ -1,4 +1,5 @@ - "Impossible de déplacer %s - Un fichier possédant ce nom existe déjà", "Could not move %s" => "Impossible de déplacer %s", "Unable to set upload directory." => "Impossible de définir le dossier pour l'upload, charger.", @@ -23,7 +24,6 @@ "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à", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "fichiers", "Upgrading filesystem cache..." => "Mise à niveau du cache du système de fichier" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/gl.php b/apps/files/l10n/gl.php index bba6335ae053d9c617b1fdd21020422b54a09164..5c8132926bfe5d85b8fe55ac1d57d363bc74ae0f 100644 --- a/apps/files/l10n/gl.php +++ b/apps/files/l10n/gl.php @@ -1,4 +1,5 @@ - "Non se moveu %s - Xa existe un ficheiro con ese nome.", "Could not move %s" => "Non foi posíbel mover %s", "Unable to set upload directory." => "Non é posíbel configurar o directorio de envíos.", @@ -23,7 +24,6 @@ "Error" => "Erro", "Share" => "Compartir", "Delete permanently" => "Eliminar permanentemente", -"Delete" => "Eliminar", "Rename" => "Renomear", "Pending" => "Pendentes", "{new_name} already exists" => "Xa existe un {new_name}", @@ -32,8 +32,7 @@ "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", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "ficheiros", "Upgrading filesystem cache..." => "Anovando a caché do sistema de ficheiros..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/he.php b/apps/files/l10n/he.php index 52946bc6d0b9cfa39d806c3218964f5b7a94493c..ef98e2d2188fd2c46ff41ece7aec0efe4dbd250c 100644 --- a/apps/files/l10n/he.php +++ b/apps/files/l10n/he.php @@ -1,4 +1,5 @@ - "לא ניתן להעביר את %s - קובץ בשם הזה כבר קיים", "Could not move %s" => "לא ניתן להעביר את %s", "No file was uploaded. Unknown error" => "לא הועלה קובץ. טעות בלתי מזוהה.", @@ -19,7 +20,6 @@ "Error" => "שגיאה", "Share" => "שתף", "Delete permanently" => "מחק לצמיתות", -"Delete" => "מחיקה", "Rename" => "שינוי שם", "Pending" => "ממתין", "{new_name} already exists" => "{new_name} כבר קיים", @@ -28,17 +28,14 @@ "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" => "גודל העלאה מקסימלי", @@ -56,6 +53,7 @@ "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." => "הקבצים נסרקים, נא להמתין.", @@ -63,3 +61,4 @@ "file" => "קובץ", "files" => "קבצים" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hi.php b/apps/files/l10n/hi.php index 151d1f497c7963a9d9d6690e27e08cc6d3dd5dab..7fb5a5b09d3c98629a280914bab27f3295451256 100644 --- a/apps/files/l10n/hi.php +++ b/apps/files/l10n/hi.php @@ -1,5 +1,10 @@ - "त्रुटि", "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 abe8c40bd53fda2abf018eeb061919968385d39f..8f74dea092f0bd332e108cbc3ca1295cc182c7e9 100644 --- a/apps/files/l10n/hr.php +++ b/apps/files/l10n/hr.php @@ -1,4 +1,5 @@ - "Nema pogreške, datoteka je poslana uspješno.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslana datoteka prelazi veličinu prikazanu u MAX_FILE_SIZE direktivi u HTML formi", "The uploaded file was only partially uploaded" => "Poslana datoteka je parcijalno poslana", @@ -11,18 +12,19 @@ "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", @@ -39,6 +41,7 @@ "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.", @@ -46,3 +49,4 @@ "file" => "datoteka", "files" => "datoteke" ); +$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/hu_HU.php b/apps/files/l10n/hu_HU.php index b08335169585ab21b2e9b14a26df6d7f57bd22a3..63efe031da87dcb754baa4eb10ddb385754ad418 100644 --- a/apps/files/l10n/hu_HU.php +++ b/apps/files/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "%s áthelyezése nem sikerült - már létezik másik fájl ezzel a névvel", "Could not move %s" => "Nem sikerült %s áthelyezése", "Unable to set upload directory." => "Nem található a mappa, ahova feltölteni szeretne.", @@ -23,7 +24,6 @@ "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", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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!", @@ -79,3 +77,4 @@ "files" => "fájlok", "Upgrading filesystem cache..." => "A fájlrendszer gyorsítótárának frissítése zajlik..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/hy.php b/apps/files/l10n/hy.php index 22edf32c6e68ed17c7a4c3761d4b0006f4f496bc..a419a74cc972b362f7b5cc20be7c7796e8656a2c 100644 --- a/apps/files/l10n/hy.php +++ b/apps/files/l10n/hy.php @@ -1,5 +1,10 @@ - "Ջնջել", + 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 5970a4cd55a182975b80791a367c1b2b7069f756..202375636a1ea638be137b8be71c06e94b956178 100644 --- a/apps/files/l10n/ia.php +++ b/apps/files/l10n/ia.php @@ -1,14 +1,17 @@ - "Le file incargate solmente esseva incargate partialmente", "No file was uploaded" => "Nulle file esseva incargate.", "Missing a temporary folder" => "Manca un dossier temporari", "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", @@ -17,5 +20,7 @@ "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 bacdcc8f496e997739d4a927a924b8fb63019f0e..0f7aac5a228fe1cc820b491bd31388b6d16578e3 100644 --- a/apps/files/l10n/id.php +++ b/apps/files/l10n/id.php @@ -1,4 +1,5 @@ - "Tidak dapat memindahkan %s - Berkas dengan nama ini sudah ada", "Could not move %s" => "Tidak dapat memindahkan %s", "No file was uploaded. Unknown error" => "Tidak ada berkas yang diunggah. Galat tidak dikenal.", @@ -20,7 +21,6 @@ "Error" => "Galat", "Share" => "Bagikan", "Delete permanently" => "Hapus secara permanen", -"Delete" => "Hapus", "Rename" => "Ubah nama", "Pending" => "Menunggu", "{new_name} already exists" => "{new_name} sudah ada", @@ -29,8 +29,7 @@ "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.", @@ -42,10 +41,8 @@ "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", @@ -65,6 +62,7 @@ "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.", @@ -73,3 +71,4 @@ "files" => "berkas-berkas", "Upgrading filesystem cache..." => "Meningkatkan tembolok sistem berkas..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/is.php b/apps/files/l10n/is.php index 97b19ae93794a4e6c76be0f4cc491b56cd644f27..aee213691e01458c39e02957cc4df25979a2f3ef 100644 --- a/apps/files/l10n/is.php +++ b/apps/files/l10n/is.php @@ -1,4 +1,5 @@ - "Gat ekki fært %s - Skrá með þessu nafni er þegar til", "Could not move %s" => "Gat ekki fært %s", "No file was uploaded. Unknown error" => "Engin skrá var send inn. Óþekkt villa.", @@ -18,7 +19,6 @@ "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", @@ -27,7 +27,7 @@ "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ð.", @@ -35,10 +35,8 @@ "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", @@ -56,8 +54,10 @@ "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.", "Current scanning" => "Er að skima" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/it.php b/apps/files/l10n/it.php index 28b33795aeba64200dcb4b34c7b4e28840d222d5..3220a3efb6fceccaba0eb4ad3cbf2fd9f1cf8b83 100644 --- a/apps/files/l10n/it.php +++ b/apps/files/l10n/it.php @@ -1,4 +1,5 @@ - "Impossibile spostare %s - un file con questo nome esiste già", "Could not move %s" => "Impossibile spostare %s", "Unable to set upload directory." => "Impossibile impostare una cartella di caricamento.", @@ -23,7 +24,6 @@ "Error" => "Errore", "Share" => "Condividi", "Delete permanently" => "Elimina definitivamente", -"Delete" => "Elimina", "Rename" => "Rinomina", "Pending" => "In corso", "{new_name} already exists" => "{new_name} esiste già", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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", @@ -79,3 +77,4 @@ "files" => "file", "Upgrading filesystem cache..." => "Aggiornamento della cache del filesystem in corso..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ja_JP.php b/apps/files/l10n/ja_JP.php index e4be3133fb0bcd72d53e33477a58d617bd84d4af..0733f0e7925dcfdde9aa479330c3aef24f46e97f 100644 --- a/apps/files/l10n/ja_JP.php +++ b/apps/files/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "%s を移動できませんでした ― この名前のファイルはすでに存在します", "Could not move %s" => "%s を移動できませんでした", "Unable to set upload directory." => "アップロードディレクトリを設定出来ません。", @@ -23,7 +24,6 @@ "Error" => "エラー", "Share" => "共有", "Delete permanently" => "完全に削除する", -"Delete" => "削除", "Rename" => "名前の変更", "Pending" => "中断", "{new_name} already exists" => "{new_name} はすでに存在しています", @@ -32,8 +32,7 @@ "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." => "ファイル名を空にすることはできません。", @@ -45,10 +44,8 @@ "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" => "ファイル操作", @@ -69,6 +66,7 @@ "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." => "ファイルをスキャンしています、しばらくお待ちください。", @@ -79,3 +77,4 @@ "files" => "ファイル", "Upgrading filesystem cache..." => "ファイルシステムキャッシュを更新中..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ka.php b/apps/files/l10n/ka.php index 148e688547a77524b2b5d762b2b1946469b54eac..527a2c49b1cc3446cfc2816d1e69303dea949c36 100644 --- a/apps/files/l10n/ka.php +++ b/apps/files/l10n/ka.php @@ -1,4 +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 b04e1b4536d9773a4965cd1073fb6f657391129a..3205255e39fbea9c06ce442ba7a8bcba41c09e80 100644 --- a/apps/files/l10n/ka_GE.php +++ b/apps/files/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "%s –ის გადატანა ვერ მოხერხდა – ფაილი ამ სახელით უკვე არსებობს", "Could not move %s" => "%s –ის გადატანა ვერ მოხერხდა", "No file was uploaded. Unknown error" => "ფაილი არ აიტვირთა. უცნობი შეცდომა", @@ -20,7 +21,6 @@ "Error" => "შეცდომა", "Share" => "გაზიარება", "Delete permanently" => "სრულად წაშლა", -"Delete" => "წაშლა", "Rename" => "გადარქმევა", "Pending" => "მოცდის რეჟიმში", "{new_name} already exists" => "{new_name} უკვე არსებობს", @@ -29,8 +29,7 @@ "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 +41,8 @@ "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" => "მაქსიმუმ ატვირთის ზომა", @@ -65,9 +62,11 @@ "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" => "მიმდინარე სკანირება", "Upgrading filesystem cache..." => "ფაილური სისტემის ქეშის განახლება...." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ko.php b/apps/files/l10n/ko.php index 069c209ee58caf9e23b4b037598068aa9c1492d1..7839ad3bd936c906f822d880a71e0ba0e1e18d53 100644 --- a/apps/files/l10n/ko.php +++ b/apps/files/l10n/ko.php @@ -1,4 +1,5 @@ - "%s 항목을 이동시키지 못하였음 - 파일 이름이 이미 존재함", "Could not move %s" => "%s 항목을 이딩시키지 못하였음", "No file was uploaded. Unknown error" => "파일이 업로드되지 않았습니다. 알 수 없는 오류입니다", @@ -20,7 +21,6 @@ "Error" => "오류", "Share" => "공유", "Delete permanently" => "영원히 삭제", -"Delete" => "삭제", "Rename" => "이름 바꾸기", "Pending" => "대기 중", "{new_name} already exists" => "{new_name}이(가) 이미 존재함", @@ -29,8 +29,7 @@ "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." => "파일 이름이 비어 있을 수 없습니다.", @@ -42,10 +41,8 @@ "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" => "최대 업로드 크기", @@ -65,6 +62,7 @@ "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." => "파일을 검색하고 있습니다. 기다려 주십시오.", @@ -73,3 +71,4 @@ "files" => "파일", "Upgrading filesystem cache..." => "파일 시스템 캐시 업그레이드 중..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/ku_IQ.php b/apps/files/l10n/ku_IQ.php index 7b36c3b710b7a426734832e0aea9cb8dd7888603..81177f9bea07221749f112997e332ad5e91a1dce 100644 --- a/apps/files/l10n/ku_IQ.php +++ b/apps/files/l10n/ku_IQ.php @@ -1,9 +1,14 @@ - "ناونیشانی به‌سته‌ر نابێت به‌تاڵ بێت.", "Error" => "هه‌ڵه", +"_Uploading %n file_::_Uploading %n files_" => array("",""), "Name" => "ناو", +"_%n folder_::_%n folders_" => array("",""), +"_%n file_::_%n files_" => array("",""), "Upload" => "بارکردن", "Save" => "پاشکه‌وتکردن", "Folder" => "بوخچه", "Download" => "داگرتن" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/lb.php b/apps/files/l10n/lb.php index 9b209a4d5cc010f70f5d4d915f7a127e6c930e01..c57eebd9e765fed8e90f8e91f4778dcf1359bf32 100644 --- a/apps/files/l10n/lb.php +++ b/apps/files/l10n/lb.php @@ -1,4 +1,5 @@ - "Keen Feeler, Datei ass komplett ropgelueden ginn", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Déi ropgelueden Datei ass méi grouss wei d'MAX_FILE_SIZE Eegenschaft déi an der HTML form uginn ass", "The uploaded file was only partially uploaded" => "Déi ropgelueden Datei ass nëmmen hallef ropgelueden ginn", @@ -11,13 +12,15 @@ "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 ", @@ -34,6 +37,7 @@ "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.", @@ -41,3 +45,4 @@ "file" => "Datei", "files" => "Dateien" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/lt_LT.php b/apps/files/l10n/lt_LT.php index 43fb4657dbb0239a9c1e74e7fe8d9a21b569db9b..cae9660ab66e7ebaf3467869a9690521911dc55e 100644 --- a/apps/files/l10n/lt_LT.php +++ b/apps/files/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Nepavyko perkelti %s - failas su tokiu pavadinimu jau egzistuoja", "Could not move %s" => "Nepavyko perkelti %s", "No file was uploaded. Unknown error" => "Failai nebuvo įkelti dėl nežinomos priežasties", @@ -21,7 +22,6 @@ "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", @@ -30,8 +30,7 @@ "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.", @@ -43,10 +42,8 @@ "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", @@ -66,6 +63,7 @@ "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.", @@ -74,3 +72,4 @@ "files" => "failai", "Upgrading filesystem cache..." => "Atnaujinamas sistemos kešavimas..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/lv.php b/apps/files/l10n/lv.php index b0def1e707d7d5164b1d888c267f1e1d46c96f84..0eeff3a59065e142607f843726d1b6c83ee82a9a 100644 --- a/apps/files/l10n/lv.php +++ b/apps/files/l10n/lv.php @@ -1,4 +1,5 @@ - "Nevarēja pārvietot %s — jau eksistē datne ar tādu nosaukumu", "Could not move %s" => "Nevarēja pārvietot %s", "No file was uploaded. Unknown error" => "Netika augšupielādēta neviena datne. Nezināma kļūda", @@ -20,7 +21,6 @@ "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ē", @@ -29,8 +29,7 @@ "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 '*'.", @@ -41,10 +40,8 @@ "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", @@ -64,6 +61,7 @@ "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.", @@ -72,3 +70,4 @@ "files" => "faili", "Upgrading filesystem cache..." => "Uzlabo datņu sistēmas kešatmiņu..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files/l10n/mk.php b/apps/files/l10n/mk.php index 2dd75f14338a92407d386d3ff6d3f786624817a9..20fed43ab20eda052ce74f16776f44bbfe278266 100644 --- a/apps/files/l10n/mk.php +++ b/apps/files/l10n/mk.php @@ -1,4 +1,5 @@ - "Ниту еден фајл не се вчита. Непозната грешка", "There is no error, the file uploaded with success" => "Датотеката беше успешно подигната.", "The uploaded file exceeds the upload_max_filesize directive in php.ini: " => "Подигнатата датотека ја надминува upload_max_filesize директивата во php.ini:", @@ -14,7 +15,6 @@ "URL cannot be empty." => "Адресата неможе да биде празна.", "Error" => "Грешка", "Share" => "Сподели", -"Delete" => "Избриши", "Rename" => "Преименувај", "Pending" => "Чека", "{new_name} already exists" => "{new_name} веќе постои", @@ -23,15 +23,13 @@ "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" => "Максимална големина за подигање", @@ -49,6 +47,7 @@ "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." => "Се скенираат датотеки, ве молам почекајте.", @@ -56,3 +55,4 @@ "file" => "датотека", "files" => "датотеки" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files/l10n/ms_MY.php b/apps/files/l10n/ms_MY.php index f96d4d48014eee9d67a5e8979a78d43215c51d52..86b70faefda3b07a977c4f8b768e655dc43fb72c 100644 --- a/apps/files/l10n/ms_MY.php +++ b/apps/files/l10n/ms_MY.php @@ -1,4 +1,5 @@ - "Tiada fail dimuatnaik. Ralat tidak diketahui.", "There is no error, the file uploaded with success" => "Tiada ralat berlaku, fail berjaya dimuatnaik", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Saiz fail yang dimuatnaik melebihi MAX_FILE_SIZE yang ditetapkan dalam borang HTML", @@ -11,13 +12,15 @@ "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", @@ -33,6 +36,7 @@ "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.", @@ -40,3 +44,4 @@ "file" => "fail", "files" => "fail" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/my_MM.php b/apps/files/l10n/my_MM.php index b791a134ccce079a6f7c47dbc4b5bb61eb1586fc..4dc63ffee2d7b03637e751ca3e61c686c9810786 100644 --- a/apps/files/l10n/my_MM.php +++ b/apps/files/l10n/my_MM.php @@ -1,4 +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 d4080a179604155ad65855885db02b4c3ff62fa6..5e43740cc20ef50cbeb6688bff483efa33b561dd 100644 --- a/apps/files/l10n/nb_NO.php +++ b/apps/files/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Kan ikke flytte %s - En fil med samme navn finnes allerede", "Could not move %s" => "Kunne ikke flytte %s", "Unable to set upload directory." => "Kunne ikke sette opplastingskatalog.", @@ -22,7 +23,6 @@ "Error" => "Feil", "Share" => "Del", "Delete permanently" => "Slett permanent", -"Delete" => "Slett", "Rename" => "Omdøp", "Pending" => "Ventende", "{new_name} already exists" => "{new_name} finnes allerede", @@ -31,8 +31,7 @@ "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.", @@ -44,10 +43,8 @@ "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", @@ -67,6 +64,7 @@ "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.", @@ -77,3 +75,4 @@ "files" => "filer", "Upgrading filesystem cache..." => "Oppgraderer filsystemets mellomlager..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nl.php b/apps/files/l10n/nl.php index 0d906cb138b55ed4f43bdaffcd38344608b7c9b6..adaf07a378ea5b8c923ea86464eacd934a2a556f 100644 --- a/apps/files/l10n/nl.php +++ b/apps/files/l10n/nl.php @@ -1,4 +1,5 @@ - "Kon %s niet verplaatsen - Er bestaat al een bestand met deze naam", "Could not move %s" => "Kon %s niet verplaatsen", "Unable to set upload directory." => "Kan upload map niet instellen.", @@ -23,7 +24,6 @@ "Error" => "Fout", "Share" => "Delen", "Delete permanently" => "Verwijder definitief", -"Delete" => "Verwijder", "Rename" => "Hernoem", "Pending" => "In behandeling", "{new_name} already exists" => "{new_name} bestaat al", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "bestanden", "Upgrading filesystem cache..." => "Upgraden bestandssysteem cache..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/nn_NO.php b/apps/files/l10n/nn_NO.php index dcc3373bea0510bf7d019c2e4135430566f98418..0f0ad318740fd5447863eb2bab183f522b52d58e 100644 --- a/apps/files/l10n/nn_NO.php +++ b/apps/files/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Klarte ikkje flytta %s – det finst allereie ei fil med dette namnet", "Could not move %s" => "Klarte ikkje flytta %s", "No file was uploaded. Unknown error" => "Ingen filer lasta opp. Ukjend feil", @@ -21,7 +22,6 @@ "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", @@ -30,8 +30,7 @@ "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.", @@ -43,10 +42,8 @@ "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", @@ -66,9 +63,11 @@ "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.", "Current scanning" => "Køyrande skanning", "Upgrading filesystem cache..." => "Oppgraderer mellomlageret av filsystemet …" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/oc.php b/apps/files/l10n/oc.php index 703aeb3fbad97037fe3ff6ef68494b6638a899d9..552d72bef59cfa1ff15a2a6b7db4f711fae4827a 100644 --- a/apps/files/l10n/oc.php +++ b/apps/files/l10n/oc.php @@ -1,4 +1,5 @@ - "Amontcargament capitat, pas d'errors", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Lo fichièr amontcargat es mai gròs que la directiva «MAX_FILE_SIZE» especifiada dins lo formulari HTML", "The uploaded file was only partially uploaded" => "Lo fichièr foguèt pas completament amontcargat", @@ -11,18 +12,19 @@ "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", @@ -39,6 +41,7 @@ "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, ", @@ -46,3 +49,4 @@ "file" => "fichièr", "files" => "fichièrs" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/pl.php b/apps/files/l10n/pl.php index a3acfea6618b65e48c6382fa8a86dc59eb506a50..813d2ee8e7c5f3844b23093dcc0719a86ee116fd 100644 --- a/apps/files/l10n/pl.php +++ b/apps/files/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie można było przenieść %s - Plik o takiej nazwie już istnieje", "Could not move %s" => "Nie można było przenieść %s", "Unable to set upload directory." => "Nie można ustawić katalog wczytywania.", @@ -23,7 +24,6 @@ "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", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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ć.", @@ -79,3 +77,4 @@ "files" => "pliki", "Upgrading filesystem cache..." => "Uaktualnianie plików pamięci podręcznej..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/pl_PL.php b/apps/files/l10n/pl_PL.php index 157d9a41e4d097fc664eec8002145d1ff975abe8..b67f67b972e26e1a1ca7cb514b240285adbf1e62 100644 --- a/apps/files/l10n/pl_PL.php +++ b/apps/files/l10n/pl_PL.php @@ -1,3 +1,5 @@ - "Zapisz" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files/l10n/pt_BR.php b/apps/files/l10n/pt_BR.php index 3ad679f87646cc426cccfbf00ffad669ee138f12..575df89111497424b76505f2380c967ef28b9f31 100644 --- a/apps/files/l10n/pt_BR.php +++ b/apps/files/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Impossível mover %s - Um arquivo com este nome já existe", "Could not move %s" => "Impossível mover %s", "Unable to set upload directory." => "Impossível configurar o diretório de upload", @@ -23,7 +24,6 @@ "Error" => "Erro", "Share" => "Compartilhar", "Delete permanently" => "Excluir permanentemente", -"Delete" => "Excluir", "Rename" => "Renomear", "Pending" => "Pendente", "{new_name} already exists" => "{new_name} já existe", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "arquivos", "Upgrading filesystem cache..." => "Atualizando cache do sistema de arquivos..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/pt_PT.php b/apps/files/l10n/pt_PT.php index 8aeb30efbf21757c4a4c6842496a46448cb7af7a..64110f6704ad795f53b76e5e93709438a4fa20d6 100644 --- a/apps/files/l10n/pt_PT.php +++ b/apps/files/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Não foi possível mover o ficheiro %s - Já existe um ficheiro com esse nome", "Could not move %s" => "Não foi possível move o ficheiro %s", "Unable to set upload directory." => "Não foi possível criar o diretório de upload", @@ -23,7 +24,6 @@ "Error" => "Erro", "Share" => "Partilhar", "Delete permanently" => "Eliminar permanentemente", -"Delete" => "Eliminar", "Rename" => "Renomear", "Pending" => "Pendente", "{new_name} already exists" => "O nome {new_name} já existe", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "ficheiros", "Upgrading filesystem cache..." => "Atualizar cache do sistema de ficheiros..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ro.php b/apps/files/l10n/ro.php index b0cca7d7a8289cc10d0dd2368398c5977fc479b0..85805cf5623d15dfcf057ebc2c21c170be88db35 100644 --- a/apps/files/l10n/ro.php +++ b/apps/files/l10n/ro.php @@ -1,4 +1,5 @@ - "%s nu se poate muta - Fișierul cu acest nume există deja ", "Could not move %s" => "Nu s-a putut muta %s", "Unable to set upload directory." => "Imposibil de a seta directorul pentru incărcare.", @@ -23,7 +24,6 @@ "Error" => "Eroare", "Share" => "Partajează", "Delete permanently" => "Stergere permanenta", -"Delete" => "Șterge", "Rename" => "Redenumire", "Pending" => "În așteptare", "{new_name} already exists" => "{new_name} deja exista", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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ă.", @@ -79,3 +77,4 @@ "files" => "fișiere", "Upgrading filesystem cache..." => "Modernizare fisiere de sistem cache.." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files/l10n/ru.php b/apps/files/l10n/ru.php index 71742cb4d577354fe883d9fb35527cceebc8e120..c4f9342a3f5b32940450552ee33fb8cc8d6064f6 100644 --- a/apps/files/l10n/ru.php +++ b/apps/files/l10n/ru.php @@ -1,4 +1,5 @@ - "Невозможно переместить %s - файл с таким именем уже существует", "Could not move %s" => "Невозможно переместить %s", "Unable to set upload directory." => "Не удалось установить каталог загрузки.", @@ -23,7 +24,6 @@ "Error" => "Ошибка", "Share" => "Открыть доступ", "Delete permanently" => "Удалено навсегда", -"Delete" => "Удалить", "Rename" => "Переименовать", "Pending" => "Ожидание", "{new_name} already exists" => "{new_name} уже существует", @@ -32,8 +32,7 @@ "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." => "Имя файла не может быть пустым.", @@ -45,10 +44,8 @@ "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" => "Управление файлами", @@ -69,6 +66,7 @@ "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." => "Подождите, файлы сканируются.", @@ -79,3 +77,4 @@ "files" => "файлы", "Upgrading filesystem cache..." => "Обновление кэша файловой системы..." ); +$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/ru_RU.php b/apps/files/l10n/ru_RU.php deleted file mode 100644 index e0bfab33215ff8036017e3b024630f40c148fe63..0000000000000000000000000000000000000000 --- a/apps/files/l10n/ru_RU.php +++ /dev/null @@ -1,16 +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" => "Загрузка" -); diff --git a/apps/files/l10n/si_LK.php b/apps/files/l10n/si_LK.php index 82fca4bc75d6e720b0749b4869054daca096e79f..ffb28e09584aa2b0e5d1094c1ff8e07aec9c9d0b 100644 --- a/apps/files/l10n/si_LK.php +++ b/apps/files/l10n/si_LK.php @@ -1,4 +1,5 @@ - "ගොනුවක් උඩුගත නොවුනි. නොහැඳිනු දෝෂයක්", "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" => "උඩුගත කළ ගොනුවේ විශාලත්වය HTML පෝරමයේ නියම කළ ඇති MAX_FILE_SIZE විශාලත්වයට වඩා වැඩිය", @@ -12,18 +13,17 @@ "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" => "උඩුගත කිරීමක උපරිම ප්‍රමාණය", @@ -41,6 +41,7 @@ "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." => "ගොනු පරික්ෂා කෙරේ. මඳක් රැඳී සිටින්න", @@ -48,3 +49,4 @@ "file" => "ගොනුව", "files" => "ගොනු" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/sk_SK.php b/apps/files/l10n/sk_SK.php index ac71f30e9078d51c55693ac46ab10069b0b2cf6b..d28368cc48f61dbbb6a2120ece2ebd1815517add 100644 --- a/apps/files/l10n/sk_SK.php +++ b/apps/files/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Nie je možné presunúť %s - súbor s týmto menom už existuje", "Could not move %s" => "Nie je možné presunúť %s", "Unable to set upload directory." => "Nemožno nastaviť priečinok pre nahrané súbory.", @@ -23,7 +24,6 @@ "Error" => "Chyba", "Share" => "Zdieľať", "Delete permanently" => "Zmazať trvalo", -"Delete" => "Zmazať", "Rename" => "Premenovať", "Pending" => "Prebieha", "{new_name} already exists" => "{new_name} už existuje", @@ -32,8 +32,7 @@ "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", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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é.", @@ -79,3 +77,4 @@ "files" => "súbory", "Upgrading filesystem cache..." => "Aktualizujem medzipamäť súborového systému..." ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files/l10n/sl.php b/apps/files/l10n/sl.php index bb01e5475d50541d702939d5de5e961685cb5f55..9922a0be7eeb826c0fef5def499989a69220abd7 100644 --- a/apps/files/l10n/sl.php +++ b/apps/files/l10n/sl.php @@ -1,4 +1,5 @@ - "%s ni mogoče premakniti - datoteka s tem imenom že obstaja", "Could not move %s" => "Ni mogoče premakniti %s", "Unable to set upload directory." => "Mapo, v katero boste prenašali dokumente, ni mogoče določiti", @@ -23,7 +24,6 @@ "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", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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 ...", @@ -79,3 +77,4 @@ "files" => "datoteke", "Upgrading filesystem cache..." => "Nadgrajevanje predpomnilnika datotečnega sistema ..." ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files/l10n/sq.php b/apps/files/l10n/sq.php index 2daca10a416cf8b426b019e3952d9d8210c47ef0..34250b56c3e89c144d41d071ed0adc094d79d362 100644 --- a/apps/files/l10n/sq.php +++ b/apps/files/l10n/sq.php @@ -1,4 +1,5 @@ - "%s nuk u spostua - Aty ekziston një skedar me të njëjtin emër", "Could not move %s" => "%s nuk u spostua", "No file was uploaded. Unknown error" => "Nuk u ngarkua asnjë skedar. Veprim i gabuar i panjohur", @@ -20,7 +21,6 @@ "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", @@ -29,8 +29,7 @@ "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.", @@ -42,10 +41,8 @@ "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", @@ -65,9 +62,11 @@ "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.", "Current scanning" => "Analizimi aktual", "Upgrading filesystem cache..." => "Po përmirësoj memorjen e filesystem-it..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/sr.php b/apps/files/l10n/sr.php index 68f2f5a93b67df5d097877c1924ce966d2417e94..d73188d483c939d6554ba040b915883de5b6821d 100644 --- a/apps/files/l10n/sr.php +++ b/apps/files/l10n/sr.php @@ -1,4 +1,5 @@ - "Не могу да преместим %s – датотека с овим именом већ постоји", "Could not move %s" => "Не могу да преместим %s", "No file was uploaded. Unknown error" => "Ниједна датотека није отпремљена услед непознате грешке", @@ -20,7 +21,6 @@ "Error" => "Грешка", "Share" => "Дели", "Delete permanently" => "Обриши за стално", -"Delete" => "Обриши", "Rename" => "Преименуј", "Pending" => "На чекању", "{new_name} already exists" => "{new_name} већ постоји", @@ -29,8 +29,7 @@ "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 +41,8 @@ "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" => "Највећа величина датотеке", @@ -65,9 +62,11 @@ "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" => "Тренутно скенирање", "Upgrading filesystem cache..." => "Дограђујем кеш система датотека…" ); +$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/sr@latin.php b/apps/files/l10n/sr@latin.php index fb08bca2cae91733e2c1501ed3bace48110858ec..bc7b11b8c53f44f3144ea22de969e5ecc60060f1 100644 --- a/apps/files/l10n/sr@latin.php +++ b/apps/files/l10n/sr@latin.php @@ -1,19 +1,24 @@ - "Nema greške, fajl je uspešno poslat", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" => "Poslati fajl prevazilazi direktivu MAX_FILE_SIZE koja je navedena u HTML formi", "The uploaded file was only partially uploaded" => "Poslati fajl je samo delimično otpremljen!", "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." ); +$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/sv.php b/apps/files/l10n/sv.php index 70f3121a20c78a94e20714d51ab34d16ed44a4ce..5251e2ade26b87741e5d57314231756b8b953ffd 100644 --- a/apps/files/l10n/sv.php +++ b/apps/files/l10n/sv.php @@ -1,4 +1,5 @@ - "Kunde inte flytta %s - Det finns redan en fil med detta namn", "Could not move %s" => "Kan inte flytta %s", "Unable to set upload directory." => "Kan inte sätta mapp för uppladdning.", @@ -23,7 +24,6 @@ "Error" => "Fel", "Share" => "Dela", "Delete permanently" => "Radera permanent", -"Delete" => "Radera", "Rename" => "Byt namn", "Pending" => "Väntar", "{new_name} already exists" => "{new_name} finns redan", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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", @@ -79,3 +77,4 @@ "files" => "filer", "Upgrading filesystem cache..." => "Uppgraderar filsystemets cache..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/ta_LK.php b/apps/files/l10n/ta_LK.php index e03b88569b76d903b393a1ec1f3a7eae54c8ed4f..eb39218e48d85e34a15e14e4dfef9716a637607b 100644 --- a/apps/files/l10n/ta_LK.php +++ b/apps/files/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "ஒரு கோப்பும் பதிவேற்றப்படவில்லை. அறியப்படாத வழு", "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" => "பதிவேற்றப்பட்ட கோப்பானது HTML படிவத்தில் குறிப்பிடப்பட்டுள்ள MAX_FILE_SIZE directive ஐ விட கூடியது", @@ -13,7 +14,6 @@ "URL cannot be empty." => "URL வெறுமையாக இருக்கமுடியாது.", "Error" => "வழு", "Share" => "பகிர்வு", -"Delete" => "நீக்குக", "Rename" => "பெயர்மாற்றம்", "Pending" => "நிலுவையிலுள்ள", "{new_name} already exists" => "{new_name} ஏற்கனவே உள்ளது", @@ -22,15 +22,13 @@ "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" => "பதிவேற்றக்கூடிய ஆகக்கூடிய அளவு ", @@ -48,8 +46,10 @@ "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" => "தற்போது வருடப்படுபவை" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files/l10n/te.php b/apps/files/l10n/te.php index 710034de12e114d5e1cb0a802d2fcb2097239f57..5a108274dd9c2654ea06c7f2fa4fd64562ff9d66 100644 --- a/apps/files/l10n/te.php +++ b/apps/files/l10n/te.php @@ -1,10 +1,15 @@ - "పొరపాటు", "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 5b2eab6b3a1256cab59425a1bfcf3ead2bd0819f..c101398918e456427c9ccfa51f3ab5ae6903e659 100644 --- a/apps/files/l10n/th_TH.php +++ b/apps/files/l10n/th_TH.php @@ -1,4 +1,5 @@ - "ไม่สามารถย้าย %s ได้ - ไฟล์ที่ใช้ชื่อนี้มีอยู่แล้ว", "Could not move %s" => "ไม่สามารถย้าย %s ได้", "No file was uploaded. Unknown error" => "ยังไม่มีไฟล์ใดที่ถูกอัพโหลด เกิดข้อผิดพลาดที่ไม่ทราบสาเหตุ", @@ -19,7 +20,6 @@ "URL cannot be empty." => "URL ไม่สามารถเว้นว่างได้", "Error" => "ข้อผิดพลาด", "Share" => "แชร์", -"Delete" => "ลบ", "Rename" => "เปลี่ยนชื่อ", "Pending" => "อยู่ระหว่างดำเนินการ", "{new_name} already exists" => "{new_name} มีอยู่แล้วในระบบ", @@ -28,8 +28,7 @@ "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." => "ชื่อไฟล์ไม่สามารถเว้นว่างได้", @@ -41,10 +40,8 @@ "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" => "ขนาดไฟล์สูงสุดที่อัพโหลดได้", @@ -62,6 +59,7 @@ "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." => "ไฟล์กำลังอยู่ระหว่างการสแกน, กรุณารอสักครู่.", @@ -70,3 +68,4 @@ "files" => "ไฟล์", "Upgrading filesystem cache..." => "กำลังอัพเกรดหน่วยความจำแคชของระบบไฟล์..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/tr.php b/apps/files/l10n/tr.php index 6b479b580ebb9950a9e51a6518f1431f66ca5a04..725bebfa7db9e413d6427225319c5b7c5d6514e0 100644 --- a/apps/files/l10n/tr.php +++ b/apps/files/l10n/tr.php @@ -1,4 +1,5 @@ - "%s taşınamadı. Bu isimde dosya zaten var.", "Could not move %s" => "%s taşınamadı", "Unable to set upload directory." => "Yükleme dizini tanımlanamadı.", @@ -23,7 +24,6 @@ "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", @@ -32,8 +32,7 @@ "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.", @@ -45,10 +44,8 @@ "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", @@ -69,6 +66,7 @@ "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.", @@ -79,3 +77,4 @@ "files" => "dosyalar", "Upgrading filesystem cache..." => "Sistem dosyası önbelleği güncelleniyor" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files/l10n/ug.php b/apps/files/l10n/ug.php index c11ffe7b9bf850471ac1c847ff52f3fbab319d53..2eceeea44a87880a6dee33508a591b9b19784710 100644 --- a/apps/files/l10n/ug.php +++ b/apps/files/l10n/ug.php @@ -1,4 +1,5 @@ - "%s يۆتكىيەلمەيدۇ", "No file was uploaded. Unknown error" => "ھېچقانداق ھۆججەت يۈكلەنمىدى. يوچۇن خاتالىق", "No file was uploaded" => "ھېچقانداق ھۆججەت يۈكلەنمىدى", @@ -12,7 +13,6 @@ "Error" => "خاتالىق", "Share" => "ھەمبەھىر", "Delete permanently" => "مەڭگۈلۈك ئۆچۈر", -"Delete" => "ئۆچۈر", "Rename" => "ئات ئۆزگەرت", "Pending" => "كۈتۈۋاتىدۇ", "{new_name} already exists" => "{new_name} مەۋجۇت", @@ -20,14 +20,13 @@ "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" => "يېڭى", @@ -38,6 +37,8 @@ "Nothing in here. Upload something!" => "بۇ جايدا ھېچنېمە يوق. Upload something!", "Download" => "چۈشۈر", "Unshare" => "ھەمبەھىرلىمە", +"Delete" => "ئۆچۈر", "Upload too large" => "يۈكلەندىغىنى بەك چوڭ", "Upgrading filesystem cache..." => "ھۆججەت سىستېما غەملىكىنى يۈكسەلدۈرۈۋاتىدۇ…" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/uk.php b/apps/files/l10n/uk.php index 261853ef202a15c702f0dfbfb1ea9e6a85d642bd..f34383d969d6577227ce93c93873b405c2b6f3b5 100644 --- a/apps/files/l10n/uk.php +++ b/apps/files/l10n/uk.php @@ -1,4 +1,5 @@ - "Не вдалося перемістити %s - Файл з таким ім'ям вже існує", "Could not move %s" => "Не вдалося перемістити %s", "No file was uploaded. Unknown error" => "Не завантажено жодного файлу. Невідома помилка", @@ -20,7 +21,6 @@ "Error" => "Помилка", "Share" => "Поділитися", "Delete permanently" => "Видалити назавжди", -"Delete" => "Видалити", "Rename" => "Перейменувати", "Pending" => "Очікування", "{new_name} already exists" => "{new_name} вже існує", @@ -29,8 +29,7 @@ "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 +41,9 @@ "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" => "Максимальний розмір відвантажень", @@ -65,11 +63,15 @@ "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..." => "Оновлення кеша файлової системи..." ); +$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/ur_PK.php b/apps/files/l10n/ur_PK.php index aa87eeda385efc7fd0a155e28808004f47a2b8c8..15c24700df0bb02f3dba942e2b67ae19615e9983 100644 --- a/apps/files/l10n/ur_PK.php +++ b/apps/files/l10n/ur_PK.php @@ -1,4 +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 e3c9fd5488a4c84664ab87bfc7837b5c9c0cf831..ae5b152ed0806164c0a2de3d1d476999de0cb0d4 100644 --- a/apps/files/l10n/vi.php +++ b/apps/files/l10n/vi.php @@ -1,4 +1,5 @@ - "Không thể di chuyển %s - Đã có tên tập tin này trên hệ thống", "Could not move %s" => "Không thể di chuyển %s", "No file was uploaded. Unknown error" => "Không có tập tin nào được tải lên. Lỗi không xác định", @@ -20,7 +21,6 @@ "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", @@ -29,8 +29,7 @@ "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", @@ -42,10 +41,8 @@ "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 ", @@ -65,6 +62,7 @@ "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ờ.", @@ -73,3 +71,4 @@ "files" => "files", "Upgrading filesystem cache..." => "Đang nâng cấp bộ nhớ đệm cho tập tin hệ thống..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_CN.GB2312.php b/apps/files/l10n/zh_CN.GB2312.php index 469211ca7f457828b828637177eb9c35c53a05a8..d031a1e5a550a30ca0b4c20abbbe400cf72890a7 100644 --- a/apps/files/l10n/zh_CN.GB2312.php +++ b/apps/files/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "无法移动 %s - 存在同名文件", "Could not move %s" => "无法移动 %s", "Unable to set upload directory." => "无法设置上传文件夹", @@ -23,7 +24,6 @@ "Error" => "出错", "Share" => "分享", "Delete permanently" => "永久删除", -"Delete" => "删除", "Rename" => "重命名", "Pending" => "等待中", "{new_name} already exists" => "{new_name} 已存在", @@ -32,8 +32,7 @@ "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." => "文件名不能为空", @@ -45,10 +44,8 @@ "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" => "文件处理中", @@ -69,6 +66,7 @@ "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." => "正在扫描文件,请稍候.", @@ -79,3 +77,4 @@ "files" => "文件", "Upgrading filesystem cache..." => "升级系统缓存..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_CN.php b/apps/files/l10n/zh_CN.php index 68680676a1953356a6017f6921e1d9ad3b2cd54e..ddd3955c2fa8060c60c3d1e4e55cab6341839a8d 100644 --- a/apps/files/l10n/zh_CN.php +++ b/apps/files/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "无法移动 %s - 同名文件已存在", "Could not move %s" => "无法移动 %s", "Unable to set upload directory." => "无法设置上传文件夹。", @@ -23,7 +24,6 @@ "Error" => "错误", "Share" => "分享", "Delete permanently" => "永久删除", -"Delete" => "删除", "Rename" => "重命名", "Pending" => "等待", "{new_name} already exists" => "{new_name} 已存在", @@ -32,8 +32,7 @@ "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." => "文件名不能为空。", @@ -45,10 +44,8 @@ "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" => "文件处理", @@ -69,6 +66,7 @@ "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." => "文件正在被扫描,请稍候。", @@ -77,3 +75,4 @@ "files" => "文件", "Upgrading filesystem cache..." => "正在更新文件系统缓存..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/l10n/zh_HK.php b/apps/files/l10n/zh_HK.php index 4402812f2b69ad10b71f4243c17620ea729ef7fd..a9064fa7f780944989cfb4b7629a8655a4306b52 100644 --- a/apps/files/l10n/zh_HK.php +++ b/apps/files/l10n/zh_HK.php @@ -1,12 +1,16 @@ - "文件", "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 63d2bd923654cd33a8a538ce9bf3f88cb6fbdb06..b96b02e5d93e4950fc75e4353b013a85f5ddcd47 100644 --- a/apps/files/l10n/zh_TW.php +++ b/apps/files/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "無法移動 %s - 同名的檔案已經存在", "Could not move %s" => "無法移動 %s", "Unable to set upload directory." => "無法設定上傳目錄。", @@ -23,7 +24,6 @@ "Error" => "錯誤", "Share" => "分享", "Delete permanently" => "永久刪除", -"Delete" => "刪除", "Rename" => "重新命名", "Pending" => "等候中", "{new_name} already exists" => "{new_name} 已經存在", @@ -32,8 +32,7 @@ "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." => "檔名不能為空。", @@ -45,10 +44,8 @@ "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" => "檔案處理", @@ -69,6 +66,7 @@ "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." => "正在掃描檔案,請稍等。", @@ -79,3 +77,4 @@ "files" => "檔案", "Upgrading filesystem cache..." => "正在升級檔案系統快取..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files/templates/index.php b/apps/files/templates/index.php index e07316093685a379d3b092b584e4832860c9acc6..79c283dc336149ff5d2663518537d53bb584c50c 100644 --- a/apps/files/templates/index.php +++ b/apps/files/templates/index.php @@ -38,9 +38,7 @@ - + >
diff --git a/apps/files_encryption/files/error.php b/apps/files_encryption/files/error.php index f93c67d920a427f486b4e6adc452ee1547454428..2dd27257abe45381c9cf357ffa51e23da9f1df91 100644 --- a/apps/files_encryption/files/error.php +++ b/apps/files_encryption/files/error.php @@ -1,6 +1,6 @@ t("Missing requirements."); - $hint = $l->t('Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled.'); + $hint = $l->t('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.'); \OC_App::disable('files_encryption'); \OCP\Util::writeLog('Encryption library', $error_msg . ' ' . $hint, \OCP\Util::ERROR); \OCP\Template::printErrorPage($error_msg, $hint); @@ -238,6 +235,7 @@ class Hooks { */ public static function preShared($params) { + $l = new \OC_L10N('files_encryption'); $users = array(); $view = new \OC\Files\View('/public-keys/'); @@ -250,21 +248,18 @@ class Hooks { break; } - $error = false; + $notConfigured = array(); foreach ($users as $user) { if (!$view->file_exists($user . '.public.key')) { - $error = true; - break; + $notConfigured[] = $user; } } - if ($error) // Set flag var 'run' to notify emitting - // script that hook execution failed - { - $params['run']->run = false; + if (count($notConfigured) > 0) { + $params['run'] = false; + $params['error'] = $l->t('Following users are not set up for encryption:') . ' ' . join(', ' , $notConfigured); } - // TODO: Make sure files_sharing provides user - // feedback on failed share + } /** diff --git a/apps/files_encryption/l10n/ar.php b/apps/files_encryption/l10n/ar.php index 1adc158c6b8d0bf36286c999883d76b1736ec7cb..45a0c4616f4c791d030d96d4184fc41535ac4d62 100644 --- a/apps/files_encryption/l10n/ar.php +++ b/apps/files_encryption/l10n/ar.php @@ -1,4 +1,6 @@ - "جاري الحفظ...", "Encryption" => "التشفير" ); +$PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_encryption/l10n/bg_BG.php b/apps/files_encryption/l10n/bg_BG.php index f21f7641c1a58ce1a1994dff92f7a399f60ff0e2..9060c92ed43fcf8535104a38cf1c837bca05d64d 100644 --- a/apps/files_encryption/l10n/bg_BG.php +++ b/apps/files_encryption/l10n/bg_BG.php @@ -1,4 +1,6 @@ - "Записване...", "Encryption" => "Криптиране" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/bn_BD.php b/apps/files_encryption/l10n/bn_BD.php index 068de46e7a18d45c52e24a5d98fc69e1b703629c..5fc4f6a13f3b2da94b4dc40ab263a68d49b26e97 100644 --- a/apps/files_encryption/l10n/bn_BD.php +++ b/apps/files_encryption/l10n/bn_BD.php @@ -1,4 +1,6 @@ - "সংরক্ষণ করা হচ্ছে..", "Encryption" => "সংকেতায়ন" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ca.php b/apps/files_encryption/l10n/ca.php index d9d3d7b4fa58f9b006dfc8aadea185ca61ec54fb..14d7992ad5da4773ce995209e3a9af8b63ce98df 100644 --- a/apps/files_encryption/l10n/ca.php +++ b/apps/files_encryption/l10n/ca.php @@ -1,4 +1,5 @@ - "La clau de recuperació s'ha activat", "Could not enable recovery key. Please check your recovery key password!" => "No s'ha pogut activar la clau de recuperació. Comproveu contrasenya de la clau de recuperació!", "Recovery key successfully disabled" => "La clau de recuperació s'ha descativat", @@ -9,7 +10,8 @@ "Could not update the private key password. Maybe the old password was not correct." => "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 the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada.", +"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.", "You can unlock your private key in your " => "Podeu desbloquejar la clau privada en el vostre", @@ -34,3 +36,4 @@ "File recovery settings updated" => "S'han actualitzat els arranjaments de recuperació de fitxers", "Could not update file recovery" => "No s'ha pogut actualitzar la recuperació de fitxers" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/cs_CZ.php b/apps/files_encryption/l10n/cs_CZ.php index 981e629ccfee8d1c2d621c661ee3790d88ade8f8..89f63cc1cdd2fd18dd90737aa043f9786c7e5a11 100644 --- a/apps/files_encryption/l10n/cs_CZ.php +++ b/apps/files_encryption/l10n/cs_CZ.php @@ -1,22 +1,39 @@ - "Záchranný klíč byl úspěšně povolen", "Could not enable recovery key. Please check your recovery key password!" => "Nepodařilo se povolit záchranný klíč. Zkontrolujte prosím vaše heslo záchranného klíče!", "Recovery key successfully disabled" => "Záchranný klíč byl úspěšně zakázán", -"Could not disable recovery key. Please check your recovery key password!" => "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče.", +"Could not disable recovery key. Please check your recovery key password!" => "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče!", "Password successfully changed." => "Heslo bylo úspěšně změněno.", -"Could not change the password. Maybe the old password was not correct." => "Nelze změnit heslo. Pravděpodobně nebylo stávající heslo zadáno správně.", +"Could not change the password. Maybe the old password was not correct." => "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně.", "Private key password successfully updated." => "Heslo soukromého klíče úspěšně aktualizováno.", "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čí.", +"You can unlock your private key in your " => "Můžete odemknout váš soukromý klíč ve vašem", "personal settings" => "osobní nastavení", "Encryption" => "Šifrování", +"Enable recovery key (allow to recover users files in case of password loss):" => "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)", +"Recovery key password" => "Heslo klíče pro obnovu", "Enabled" => "Povoleno", "Disabled" => "Zakázáno", +"Change recovery key password:" => "Změna hesla klíče pro obnovu:", +"Old Recovery key password" => "Původní heslo klíče pro obnovu", +"New Recovery key password" => "Nové heslo klíče pro obnovu", "Change Password" => "Změnit heslo", -"Old log-in password" => "Staré přihlašovací heslo", +"Your private key password no longer match your log-in password:" => "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:", +"Set your old private key password to your current log-in password." => "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů.", +"Old log-in password" => "Původní přihlašovací heslo", "Current log-in password" => "Aktuální přihlašovací heslo", +"Update Private Key Password" => "Změnit heslo soukromého klíče", "Enable password recovery:" => "Povolit obnovu hesla:", -"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", -"File recovery settings updated" => "Možnosti obnovy souborů aktualizovány", -"Could not update file recovery" => "Nelze aktualizovat obnovu souborů" +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo", +"File recovery settings updated" => "Možnosti záchrany souborů aktualizovány", +"Could not update file recovery" => "Nelze nastavit záchranu souborů" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_encryption/l10n/cy_GB.php b/apps/files_encryption/l10n/cy_GB.php index 6e18a7913c84afb6d279d58be1766c1e1d79e8c8..ea8b19963b02a4b835eb50b01dc7d139534ee2b5 100644 --- a/apps/files_encryption/l10n/cy_GB.php +++ b/apps/files_encryption/l10n/cy_GB.php @@ -1,4 +1,6 @@ - "Yn cadw...", "Encryption" => "Amgryptiad" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_encryption/l10n/da.php b/apps/files_encryption/l10n/da.php index 1cd43390aa3c289413c65f9e2390be265c0338dc..1b7069b6784574ae1d4305364b362cd24a484609 100644 --- a/apps/files_encryption/l10n/da.php +++ b/apps/files_encryption/l10n/da.php @@ -1,4 +1,39 @@ - "Gendannelsesnøgle aktiveret med succes", +"Could not enable recovery key. Please check your recovery key password!" => "Kunne ikke aktivere gendannelsesnøgle. Kontroller venligst dit gendannelsesnøgle kodeord!", +"Recovery key successfully disabled" => "Gendannelsesnøgle deaktiveret succesfuldt", +"Could not disable recovery key. Please check your recovery key password!" => "Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!", +"Password successfully changed." => "Kodeordet blev ændret succesfuldt", +"Could not change the password. Maybe the old password was not correct." => "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt.", +"Private key password successfully updated." => "Privat nøgle kodeord succesfuldt opdateret.", +"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...", -"Encryption" => "Kryptering" +"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 ", +"personal settings" => "Personlige indstillinger", +"Encryption" => "Kryptering", +"Enable recovery key (allow to recover users files in case of password loss):" => "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):", +"Recovery key password" => "Gendannelsesnøgle kodeord", +"Enabled" => "Aktiveret", +"Disabled" => "Deaktiveret", +"Change recovery key password:" => "Skift gendannelsesnøgle kodeord:", +"Old Recovery key password" => "Gammel Gendannelsesnøgle kodeord", +"New Recovery key password" => "Ny Gendannelsesnøgle kodeord", +"Change Password" => "Skift Kodeord", +"Your private key password no longer match your log-in password:" => "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:", +"Set your old private key password to your current log-in password." => "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. ", +" If you don't remember your old password you can ask your administrator to recover your files." => "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer.", +"Old log-in password" => "Gammelt login kodeord", +"Current log-in password" => "Nuvrende login kodeord", +"Update Private Key Password" => "Opdater Privat Nøgle Kodeord", +"Enable password recovery:" => "Aktiver kodeord gendannelse:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord", +"File recovery settings updated" => "Filgendannelsesindstillinger opdateret", +"Could not update file recovery" => "Kunne ikke opdatere filgendannelse" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/de.php b/apps/files_encryption/l10n/de.php index d8265906db55c88c63d4e8c117f0878510a8af19..4c36d31ed6bf131275518840d2f107874b4a3172 100644 --- a/apps/files_encryption/l10n/de.php +++ b/apps/files_encryption/l10n/de.php @@ -1,4 +1,5 @@ - "Wiederherstellungsschlüssel wurde erfolgreich aktiviert", "Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Überprüfen Sie Ihr Wiederherstellungspasswort!", "Recovery key successfully disabled" => "Wiederherstellungsschlüssel deaktiviert.", @@ -9,7 +10,8 @@ "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 the OpenSSL 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 ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert.", +"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.", "You can unlock your private key in your " => "Du kannst den privaten Schlüssel ändern und zwar in deinem", @@ -34,3 +36,4 @@ "File recovery settings updated" => "Einstellungen zur Wiederherstellung von Dateien wurden aktualisiert", "Could not update file recovery" => "Dateiwiederherstellung konnte nicht aktualisiert werden" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/de_DE.php b/apps/files_encryption/l10n/de_DE.php index 79bde7e262650f60f7380195b32e4c3a90eefcfc..200001e6ebfbbd569024ba366d9665e4b4133c84 100644 --- a/apps/files_encryption/l10n/de_DE.php +++ b/apps/files_encryption/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert.", "Could not enable recovery key. Please check your recovery key password!" => "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!", "Recovery key successfully disabled" => "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert.", @@ -9,7 +10,8 @@ "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 the OpenSSL 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 die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert.", +"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.", "You can unlock your private key in your " => "Sie können den privaten Schlüssel ändern und zwar in Ihrem", @@ -34,3 +36,4 @@ "File recovery settings updated" => "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert.", "Could not update file recovery" => "Die Dateiwiederherstellung konnte nicht aktualisiert werden." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/el.php b/apps/files_encryption/l10n/el.php index 990f464bc1a17b4b116e6a72c12a18d13ca7e2bf..70f778f0a5038d6d8a194eb269f89e85892102cc 100644 --- a/apps/files_encryption/l10n/el.php +++ b/apps/files_encryption/l10n/el.php @@ -1,4 +1,5 @@ - "Ο κωδικός αλλάχτηκε επιτυχώς.", "Could not change the password. Maybe the old password was not correct." => "Αποτυχία αλλαγής κωδικού ίσως ο παλιός κωδικός να μην ήταν σωστός.", "Saving..." => "Γίνεται αποθήκευση...", @@ -9,3 +10,4 @@ "Change Password" => "Αλλαγή Κωδικού Πρόσβασης", "File recovery settings updated" => "Οι ρυθμίσεις επαναφοράς αρχείων ανανεώθηκαν" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/eo.php b/apps/files_encryption/l10n/eo.php index 997b60f8ac3c2d126f37dd46398db5606b79f437..d68812530228f5adf2f5268e704165014c702b03 100644 --- a/apps/files_encryption/l10n/eo.php +++ b/apps/files_encryption/l10n/eo.php @@ -1,4 +1,5 @@ - "La pasvorto sukcese ŝanĝiĝis.", "Could not change the password. Maybe the old password was not correct." => "Ne eblis ŝanĝi la pasvorton. Eble la malnova pasvorto malĝustis.", "Private key password successfully updated." => "La pasvorto de la malpublika klavo sukcese ĝisdatiĝis.", @@ -13,3 +14,4 @@ "Current log-in password" => "Nuna ensaluta pasvorto", "Update Private Key Password" => "Ĝisdatigi la pasvorton de la malpublika klavo" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/es.php b/apps/files_encryption/l10n/es.php index 0b49edbd2af62ca9cdfce5abd710a6834af4ebcd..8341bafc9fdab992bdc942f13d6cf41f1b29e8bb 100644 --- a/apps/files_encryption/l10n/es.php +++ b/apps/files_encryption/l10n/es.php @@ -1,4 +1,5 @@ - "Se ha habilitado la recuperación de archivos", "Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor compruebe su contraseña.", "Recovery key successfully disabled" => "Clave de recuperación deshabilitada", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "No se pudo cambiar la contraseña. Puede que la contraseña antigua no sea 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." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera. Puede actualizar su clave privada en sus opciones personales para recuperar el acceso a sus ficheros.", "Missing requirements." => "Requisitos incompletos.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Su clave privada no es válida! Tal vez su contraseña ha sido cambiada desde fuera.", "You can unlock your private key in your " => "Puede desbloquear su clave privada en su", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Opciones de recuperación de archivos actualizada", "Could not update file recovery" => "No se pudo actualizar la recuperación de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/es_AR.php b/apps/files_encryption/l10n/es_AR.php index f53bbd437c42e756890f25433f18d113ce1ae4d1..cac8c465362b83b47dc5b0b1064ede90814c3aa8 100644 --- a/apps/files_encryption/l10n/es_AR.php +++ b/apps/files_encryption/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Se habilitó la recuperación de archivos", "Could not enable recovery key. Please check your recovery key password!" => "No se pudo habilitar la clave de recuperación. Por favor, comprobá tu contraseña.", "Recovery key successfully disabled" => "Clave de recuperación deshabilitada", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "No fue posible actualizar la contraseña de clave privada. Tal vez la contraseña anterior no es 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." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde fuera del sistema de ownCloud (por ej. desde tu cuenta de sistema). Podés actualizar tu clave privada en la sección de \"configuración personal\", para recuperar el acceso a tus archivos.", "Missing requirements." => "Requisitos incompletos.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada.", "Saving..." => "Guardando...", "Your private key is not valid! Maybe the your password was changed from outside." => "¡Tu clave privada no es válida! Tal vez tu contraseña fue cambiada desde afuera.", "You can unlock your private key in your " => "Podés desbloquear tu clave privada en tu", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Las opciones de recuperación de archivos fueron actualizadas", "Could not update file recovery" => "No fue posible actualizar la recuperación de archivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/et_EE.php b/apps/files_encryption/l10n/et_EE.php index c1c8164b8104238810937d41b1f2eef5720b034a..3edb7299c201efff6e0c554658d32715d9fd3da0 100644 --- a/apps/files_encryption/l10n/et_EE.php +++ b/apps/files_encryption/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Taastevõtme lubamine õnnestus", "Could not enable recovery key. Please check your recovery key password!" => "Ei suutnud lubada taastevõtit. Palun kontrolli oma taastevõtme parooli!", "Recovery key successfully disabled" => "Taastevõtme keelamine õnnestus", @@ -9,7 +10,8 @@ "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 the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud.", +"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", @@ -34,3 +36,4 @@ "File recovery settings updated" => "Faili taaste seaded uuendatud", "Could not update file recovery" => "Ei suuda uuendada taastefaili" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/eu.php b/apps/files_encryption/l10n/eu.php index 22fe7932688894b779294b14687088f4a3c14a75..e750c850688d190d78d435a60bcc860312f5599c 100644 --- a/apps/files_encryption/l10n/eu.php +++ b/apps/files_encryption/l10n/eu.php @@ -1,4 +1,5 @@ - "Berreskuratze gakoa behar bezala gaitua", "Could not enable recovery key. Please check your recovery key password!" => "Ezin da berreskuratze gako gaitu. Egiaztatu berreskuratze gako pasahitza!", "Recovery key successfully disabled" => "Berreskuratze gakoa behar bezala desgaitu da", @@ -7,9 +8,14 @@ "Could not change the password. Maybe the old password was not correct." => "Ezin izan da pasahitza aldatu. Agian pasahitz zaharra okerrekoa da.", "Private key password successfully updated." => "Gako pasahitz pribatu behar bezala eguneratu da.", "Could not update the private key password. Maybe the old password was not correct." => "Ezin izan da gako pribatu pasahitza eguneratu. Agian pasahitz zaharra okerrekoa da.", +"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." => "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko.", +"Missing requirements." => "Eskakizun batzuk ez dira betetzen.", "Saving..." => "Gordetzen...", +"Your private key is not valid! Maybe the your password was changed from outside." => "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da.", +"You can unlock your private key in your " => "Zure gako pribatua desblokeatu dezakezu zure", "personal settings" => "ezarpen pertsonalak", "Encryption" => "Enkriptazioa", +"Enable recovery key (allow to recover users files in case of password loss):" => "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):", "Recovery key password" => "Berreskuratze gako pasahitza", "Enabled" => "Gaitua", "Disabled" => "Ez-gaitua", @@ -17,8 +23,15 @@ "Old Recovery key password" => "Berreskuratze gako pasahitz zaharra", "New Recovery key password" => "Berreskuratze gako pasahitz berria", "Change Password" => "Aldatu Pasahitza", +"Your private key password no longer match your log-in password:" => "Zure gako pribatuaren pasahitza ez da dagoeneko zure sarrera pasahitza:", +"Set your old private key password to your current log-in password." => "Ezarri zure gako pribatu zaharraren pasahitza zure oraingo sarrerako psahitzara.", +" If you don't remember your old password you can ask your administrator to recover your files." => "Ez baduzu zure pasahitz zaharra gogoratzen eskatu zure administratzaileari zure fitxategiak berreskuratzeko.", +"Old log-in password" => "Sartzeko pasahitz zaharra", +"Current log-in password" => "Sartzeko oraingo pasahitza", "Update Private Key Password" => "Eguneratu gako pribatu pasahitza", "Enable password recovery:" => "Gaitu pasahitz berreskuratzea:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan", "File recovery settings updated" => "Fitxategi berreskuratze ezarpenak eguneratuak", "Could not update file recovery" => "Ezin da fitxategi berreskuratzea eguneratu" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/fa.php b/apps/files_encryption/l10n/fa.php index 8967ca1eed85b08ae554184d16d311feb498c01e..461ec2b92cbaea91ca7e7b8e1b65c1f2d0b2bba4 100644 --- a/apps/files_encryption/l10n/fa.php +++ b/apps/files_encryption/l10n/fa.php @@ -1,4 +1,5 @@ - "کلید بازیابی با موفقیت فعال شده است.", "Could not enable recovery key. Please check your recovery key password!" => "کلید بازیابی نمی تواند فعال شود. لطفا رمزعبور کلید بازیابی خود را بررسی نمایید!", "Recovery key successfully disabled" => "کلید بازیابی با موفقیت غیر فعال شده است.", @@ -9,7 +10,6 @@ "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 the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است.", "Saving..." => "در حال ذخیره سازی...", "Your private key is not valid! Maybe the your password was changed from outside." => "کلید خصوصی شما معتبر نیست! شاید رمزعبوراز بیرون تغییر یافته است.", "You can unlock your private key in your " => "شما میتوانید کلید خصوصی خود را باز نمایید.", @@ -34,3 +34,4 @@ "File recovery settings updated" => "تنظیمات بازیابی فایل به روز شده است.", "Could not update file recovery" => "به روز رسانی بازیابی فایل را نمی تواند انجام دهد." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/fi_FI.php b/apps/files_encryption/l10n/fi_FI.php index a00cc8ab96e09e3339f2326dc9a81e55b1501516..53b0a6b25cd9e8cbb785ee47cd69ee0488fa49de 100644 --- a/apps/files_encryption/l10n/fi_FI.php +++ b/apps/files_encryption/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Salasana vaihdettiin onnistuneesti.", "Could not change the password. Maybe the old password was not correct." => "Salasanan vaihto epäonnistui. Kenties vanha salasana oli väärin.", "Saving..." => "Tallennetaan...", @@ -7,3 +8,4 @@ "Disabled" => "Ei käytössä", "Change Password" => "Vaihda salasana" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/fr.php b/apps/files_encryption/l10n/fr.php index 174932d6e8aeb12c269b9819fd8a47aace8b4b6b..12af810139434711b7fa653b28921c3589d127c4 100644 --- a/apps/files_encryption/l10n/fr.php +++ b/apps/files_encryption/l10n/fr.php @@ -1,4 +1,5 @@ - "Clé de récupération activée avec succès", "Could not enable recovery key. Please check your recovery key password!" => "Impossible d'activer la clé de récupération. Veuillez vérifier votre mot de passe de clé de récupération !", "Recovery key successfully disabled" => "Clé de récupération désactivée avec succès", @@ -9,7 +10,6 @@ "Could not update the private key password. Maybe the old password was not correct." => "Impossible de mettre à jour le mot de passe de la clé privé. Peut-être que l'ancien mot de passe n'était pas correcte.", "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." => "Votre clé de sécurité privée n'est pas valide! Il est probable que votre mot de passe ait été changé sans passer par le système ownCloud (par éxemple: le serveur de votre entreprise). Ain d'avoir à nouveau accès à vos fichiers cryptés, vous pouvez mettre à jour votre clé de sécurité privée dans les paramètres personnels de votre compte.", "Missing requirements." => "Système minimum requis non respecté.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée.", "Saving..." => "Enregistrement...", "Your private key is not valid! Maybe the your password was changed from outside." => "Votre clef privée est invalide ! Votre mot de passe a peut-être été modifié depuis l'extérieur.", "You can unlock your private key in your " => "Vous pouvez déverrouiller votre clé privée dans votre", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Paramètres de récupération de fichiers mis à jour", "Could not update file recovery" => "Ne peut pas remettre à jour les fichiers de récupération" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/gl.php b/apps/files_encryption/l10n/gl.php index db6f57bb36d1650e83bfe86616d8fd2447e86983..abf12d73d577483a05c1c3d55fda81e24cfe9447 100644 --- a/apps/files_encryption/l10n/gl.php +++ b/apps/files_encryption/l10n/gl.php @@ -1,4 +1,5 @@ - "Activada satisfactoriamente a chave de recuperación", "Could not enable recovery key. Please check your recovery key password!" => "Non foi posíbel activar a chave de recuperación. Comprobe o contrasinal da chave de recuperación!", "Recovery key successfully disabled" => "Desactivada satisfactoriamente a chave de recuperación", @@ -9,7 +10,8 @@ "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 the OpenSSL 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 que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado.", +"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. ", "You can unlock your private key in your " => "Pode desbloquear a chave privada nos seus", @@ -34,3 +36,4 @@ "File recovery settings updated" => "Actualizouse o ficheiro de axustes de recuperación", "Could not update file recovery" => "Non foi posíbel actualizar o ficheiro de recuperación" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/he.php b/apps/files_encryption/l10n/he.php index 7a80cfa2f9f07af3dca60f85539559762b72a093..cdf29c9b0ac46c7c675987cb8abaad0feed4c92a 100644 --- a/apps/files_encryption/l10n/he.php +++ b/apps/files_encryption/l10n/he.php @@ -1,4 +1,6 @@ - "שמירה…", "Encryption" => "הצפנה" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/hr.php b/apps/files_encryption/l10n/hr.php index 9b9284ddc5eaec498397034f55e74681f620a241..60ee610bd3e93756dee01726c620711714f25ef7 100644 --- a/apps/files_encryption/l10n/hr.php +++ b/apps/files_encryption/l10n/hr.php @@ -1,3 +1,5 @@ - "Spremanje..." ); +$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/hu_HU.php b/apps/files_encryption/l10n/hu_HU.php index bf95c31f2c5fa61a459b58b0b882d23465c068ce..49dcf817fb7680c486b8021179f00eb3758ab27c 100644 --- a/apps/files_encryption/l10n/hu_HU.php +++ b/apps/files_encryption/l10n/hu_HU.php @@ -1,4 +1,6 @@ - "Mentés...", "Encryption" => "Titkosítás" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/id.php b/apps/files_encryption/l10n/id.php index ad827b537910c58755d2825e024f9286604ee946..32c348bd8babe2edf83c80fa86402102fc7a04f7 100644 --- a/apps/files_encryption/l10n/id.php +++ b/apps/files_encryption/l10n/id.php @@ -1,4 +1,6 @@ - "Menyimpan...", "Encryption" => "Enkripsi" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/is.php b/apps/files_encryption/l10n/is.php index 0f98c6bd3bff6c7c602358919e478ab2b6c1487a..27c0904a532093fb3e5a38ef5f5767da2477abbb 100644 --- a/apps/files_encryption/l10n/is.php +++ b/apps/files_encryption/l10n/is.php @@ -1,4 +1,6 @@ - "Er að vista ...", "Encryption" => "Dulkóðun" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/it.php b/apps/files_encryption/l10n/it.php index 8d15d1ced363fd7fef203d78cd3dd23cb5731f89..f9534d7eca3e152823b1cb5c143c6ee82d7bf808 100644 --- a/apps/files_encryption/l10n/it.php +++ b/apps/files_encryption/l10n/it.php @@ -1,4 +1,5 @@ - "Chiave di ripristino abilitata correttamente", "Could not enable recovery key. Please check your recovery key password!" => "Impossibile abilitare la chiave di ripristino. Verifica la password della chiave di ripristino.", "Recovery key successfully disabled" => "Chiave di ripristinata disabilitata correttamente", @@ -9,7 +10,8 @@ "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 the OpenSSL 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.", +"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.", "You can unlock your private key in your " => "Puoi sbloccare la chiave privata nelle tue", @@ -34,3 +36,4 @@ "File recovery settings updated" => "Impostazioni di ripristino dei file aggiornate", "Could not update file recovery" => "Impossibile aggiornare il ripristino dei file" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ja_JP.php b/apps/files_encryption/l10n/ja_JP.php index a1fcbd5c5443604f035cbc9216273b32c21c9279..d1f8303bda741c9a6a5dca5e1f1cb6cce3e781ea 100644 --- a/apps/files_encryption/l10n/ja_JP.php +++ b/apps/files_encryption/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "リカバリ用のキーは正常に有効化されました", "Could not enable recovery key. Please check your recovery key password!" => "リカバリ用のキーを有効にできませんでした。リカバリ用のキーのパスワードを確認して下さい!", "Recovery key successfully disabled" => "リカバリ用のキーを正常に無効化しました", @@ -9,7 +10,8 @@ "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 the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。", +"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." => "秘密鍵が有効ではありません。パスワードが外部から変更された恐れがあります。", "You can unlock your private key in your " => "個人設定で", @@ -34,3 +36,4 @@ "File recovery settings updated" => "ファイル復旧設定が更新されました", "Could not update file recovery" => "ファイル復旧を更新できませんでした" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ka_GE.php b/apps/files_encryption/l10n/ka_GE.php index 55a59f44341af0c3a7a1485e2779807de11deb4e..bbabd44964800a5cafbec267b2a77d136751968b 100644 --- a/apps/files_encryption/l10n/ka_GE.php +++ b/apps/files_encryption/l10n/ka_GE.php @@ -1,4 +1,6 @@ - "შენახვა...", "Encryption" => "ენკრიპცია" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ko.php b/apps/files_encryption/l10n/ko.php index 52e0997ef7bd08dbab580dddbcb5bfca023dd261..cfe9f99fa194d7a42df1a8349f2b05756a593aef 100644 --- a/apps/files_encryption/l10n/ko.php +++ b/apps/files_encryption/l10n/ko.php @@ -1,4 +1,5 @@ - "암호가 성공적으로 변경되었습니다", "Could not change the password. Maybe the old password was not correct." => "암호를 변경할수 없습니다. 아마도 예전 암호가 정확하지 않은것 같습니다.", "Private key password successfully updated." => "개인키 암호가 성공적으로 업데이트 됨.", @@ -16,3 +17,4 @@ "File recovery settings updated" => "파일 복구 설정 업데이트됨", "Could not update file recovery" => "파일 복구를 업데이트 할수 없습니다" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/ku_IQ.php b/apps/files_encryption/l10n/ku_IQ.php index 61b720372ec0ac322422ae32d1e7745a11404b8d..d971350b4c7fc6f156d1b153c9effd54de862899 100644 --- a/apps/files_encryption/l10n/ku_IQ.php +++ b/apps/files_encryption/l10n/ku_IQ.php @@ -1,4 +1,6 @@ - "پاشکه‌وتده‌کات...", "Encryption" => "نهێنیکردن" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/lb.php b/apps/files_encryption/l10n/lb.php index 77bad681732931b2d094e3a5b1bffcea7770604b..a33f4969b0949733e45270d406cd0c6a326fc12a 100644 --- a/apps/files_encryption/l10n/lb.php +++ b/apps/files_encryption/l10n/lb.php @@ -1,3 +1,5 @@ - "Speicheren..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/lt_LT.php b/apps/files_encryption/l10n/lt_LT.php index 84fa902dc655369c802cdef1b6aeafd0da6f36af..9fbf7b296046029bc85f376afdd9b90df55cfdc3 100644 --- a/apps/files_encryption/l10n/lt_LT.php +++ b/apps/files_encryption/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Atkūrimo raktas sėkmingai įjungtas", "Could not enable recovery key. Please check your recovery key password!" => "Neišėjo įjungti jūsų atkūrimo rakto. Prašome jį patikrinti!", "Recovery key successfully disabled" => "Atkūrimo raktas sėkmingai išjungtas", @@ -13,3 +14,4 @@ "File recovery settings updated" => "Failų atstatymo nustatymai pakeisti", "Could not update file recovery" => "Neišėjo atnaujinti failų atkūrimo" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/lv.php b/apps/files_encryption/l10n/lv.php index 04922854ceba7938a57ddd7e041f35105b7afff9..b8414174a745f0e9e69512438ad558aab35683c6 100644 --- a/apps/files_encryption/l10n/lv.php +++ b/apps/files_encryption/l10n/lv.php @@ -1,4 +1,6 @@ - "Saglabā...", "Encryption" => "Šifrēšana" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/mk.php b/apps/files_encryption/l10n/mk.php index a7216f205adbee12a97fd0b208deeed3958e956f..fd8dd4e51c1cb71fd4dc35897f1d393efc7029d7 100644 --- a/apps/files_encryption/l10n/mk.php +++ b/apps/files_encryption/l10n/mk.php @@ -1,4 +1,6 @@ - "Снимам...", "Encryption" => "Енкрипција" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_encryption/l10n/ms_MY.php b/apps/files_encryption/l10n/ms_MY.php index bb963cb72d26e8c91fd52d77c707b6dfa3c8dc96..f73e61c167411eb90e814ec3bab86bd70f87a739 100644 --- a/apps/files_encryption/l10n/ms_MY.php +++ b/apps/files_encryption/l10n/ms_MY.php @@ -1,3 +1,5 @@ - "Simpan..." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/nb_NO.php b/apps/files_encryption/l10n/nb_NO.php index d4e2b1ffb50a8ef55643cfd438e1a6d54a019804..26956c410a3301578e95ff82ae95afcbe5c4b840 100644 --- a/apps/files_encryption/l10n/nb_NO.php +++ b/apps/files_encryption/l10n/nb_NO.php @@ -1,4 +1,6 @@ - "Lagrer...", "Encryption" => "Kryptering" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/nl.php b/apps/files_encryption/l10n/nl.php index 093ed2c29c8d29ad5ba1dfb778e3587f372bc477..e37ccf54d6dc375d46f155af464789ca4f9bf3cb 100644 --- a/apps/files_encryption/l10n/nl.php +++ b/apps/files_encryption/l10n/nl.php @@ -1,4 +1,5 @@ - "Herstelsleutel succesvol geactiveerd", "Could not enable recovery key. Please check your recovery key password!" => "Kon herstelsleutel niet activeren. Controleer het wachtwoord van uw herstelsleutel!", "Recovery key successfully disabled" => "Herstelsleutel succesvol gedeactiveerd", @@ -7,6 +8,10 @@ "Could not change the password. Maybe the old password was not correct." => "Kon wachtwoord niet wijzigen. Wellicht oude wachtwoord niet juist ingevoerd.", "Private key password successfully updated." => "Privésleutel succesvol bijgewerkt.", "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", @@ -31,3 +36,4 @@ "File recovery settings updated" => "Bestandsherstel instellingen bijgewerkt", "Could not update file recovery" => "Kon bestandsherstel niet bijwerken" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/nn_NO.php b/apps/files_encryption/l10n/nn_NO.php index 97b3a27a9d0b7c772d640610beae89c6b2a16ea2..b99d0751540d4008389f1b53ebb8b775d0a24f1f 100644 --- a/apps/files_encryption/l10n/nn_NO.php +++ b/apps/files_encryption/l10n/nn_NO.php @@ -1,3 +1,5 @@ - "Lagrar …" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/oc.php b/apps/files_encryption/l10n/oc.php index 0a34c4cda12199ca891d94bb33cc6c2b34169cab..87d1e6ceffb79e302346e413ed3b23aac43adde5 100644 --- a/apps/files_encryption/l10n/oc.php +++ b/apps/files_encryption/l10n/oc.php @@ -1,3 +1,5 @@ - "Enregistra..." ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/pl.php b/apps/files_encryption/l10n/pl.php index 3928afb1d5c65be919b2d6cb91de3b0668ef52bb..ca4502ff6aa0219e7466657c0b41ba623770d07b 100644 --- a/apps/files_encryption/l10n/pl.php +++ b/apps/files_encryption/l10n/pl.php @@ -1,4 +1,5 @@ - "Klucz odzyskiwania włączony", "Could not enable recovery key. Please check your recovery key password!" => "Nie można włączyć klucza odzyskiwania. Proszę sprawdzić swoje hasło odzyskiwania!", "Recovery key successfully disabled" => "Klucz odzyskiwania wyłączony", @@ -7,6 +8,10 @@ "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", @@ -31,3 +36,4 @@ "File recovery settings updated" => "Ustawienia odzyskiwania plików zmienione", "Could not update file recovery" => "Nie można zmienić pliku odzyskiwania" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_encryption/l10n/pt_BR.php b/apps/files_encryption/l10n/pt_BR.php index 1563243c9931185b2a742e2672fc327435ef1300..5b8a68657b78d2a5d88c174b9925048b864db970 100644 --- a/apps/files_encryption/l10n/pt_BR.php +++ b/apps/files_encryption/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Recuperação de chave habilitada com sucesso", "Could not enable recovery key. Please check your recovery key password!" => "Impossível habilitar recuperação de chave. Por favor verifique sua senha para recuperação de chave!", "Recovery key successfully disabled" => "Recuperação de chave desabilitada com sucesso", @@ -8,8 +9,9 @@ "Private key password successfully updated." => "Senha de chave privada atualizada com sucesso.", "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 em falta.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL 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.", +"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.", "You can unlock your private key in your " => "Você pode desbloquear sua chave privada nas suas", @@ -17,7 +19,7 @@ "Encryption" => "Criptografia", "Enable recovery key (allow to recover users files in case of password loss):" => "Habilitar chave de recuperação (permite recuperar arquivos de usuários em caso de perda de senha):", "Recovery key password" => "Senha da chave de recuperação", -"Enabled" => "Habilidado", +"Enabled" => "Habilitado", "Disabled" => "Desabilitado", "Change recovery key password:" => "Mudar a senha da chave de recuperação:", "Old Recovery key password" => "Senha antiga da chave de recuperação", @@ -27,10 +29,11 @@ "Set your old private key password to your current log-in password." => "Configure sua antiga senha de chave privada para sua atual senha de login.", " If you don't remember your old password you can ask your administrator to recover your files." => "Se você não se lembra de sua antiga senha você pode pedir ao administrador que recupere seus arquivos.", "Old log-in password" => "Senha antiga de login", -"Current log-in password" => "Atual senha de login", +"Current log-in password" => "Senha de login atual", "Update Private Key Password" => "Atualizar senha de chave privada", "Enable password recovery:" => "Habilitar recuperação de senha:", "Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Habilitar essa opção vai permitir que você obtenha novamente acesso aos seus arquivos encriptados em caso de perda de senha", "File recovery settings updated" => "Configurações de recuperação de arquivo atualizado", "Could not update file recovery" => "Não foi possível atualizar a recuperação de arquivos" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/pt_PT.php b/apps/files_encryption/l10n/pt_PT.php index d3cf596fda501d66e9a077db8e53c1182bd69bee..53335ab7297e70e608593396f0a6899ca4cb1293 100644 --- a/apps/files_encryption/l10n/pt_PT.php +++ b/apps/files_encryption/l10n/pt_PT.php @@ -1,19 +1,30 @@ - "Chave de recuperação activada com sucesso", "Could not enable recovery key. Please check your recovery key password!" => "Não foi possível activar a chave de recuperação. Por favor verifique a password da chave de recuperação!", "Recovery key successfully disabled" => "Chave de recuperação descativada com sucesso", "Could not disable recovery key. Please check your recovery key password!" => "Não foi possível desactivar a chave de recuperação. Por favor verifique a password da chave de recuperação.", "Password successfully changed." => "Password alterada com sucesso.", "Could not change the password. Maybe the old password was not correct." => "Não foi possivel alterar a password. Possivelmente a password antiga não está correcta.", +"Could not update the private key password. Maybe the old password was not correct." => "Não foi possível alterar a chave. Possivelmente a password antiga não está 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." => "Chave privada não é válida! Provavelmente senha foi alterada fora do sistema ownCloud (exemplo, o diretório corporativo). Pode atualizar password da chave privada em configurações personalizadas para recuperar o acesso aos seus arquivos encriptados.", -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado.", +"Missing requirements." => "Faltam alguns requisitos.", "Saving..." => "A guardar...", "personal settings" => "configurações personalizadas ", "Encryption" => "Encriptação", +"Enable recovery key (allow to recover users files in case of password loss):" => "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):", +"Recovery key password" => "Chave de recuperação da conta", "Enabled" => "Activado", "Disabled" => "Desactivado", +"Change recovery key password:" => "Alterar a chave de recuperação:", +"Old Recovery key password" => "Chave anterior de recuperação da conta", +"New Recovery key password" => "Nova chave de recuperação da conta", "Change Password" => "Mudar a Password", +"Old log-in password" => "Password anterior da conta", +"Current log-in password" => "Password actual da conta", "Enable password recovery:" => "ativar recuperação do password:", +"Enabling this option will allow you to reobtain access to your encrypted files in case of password loss" => "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password.", "File recovery settings updated" => "Actualizadas as definições de recuperação de ficheiros", "Could not update file recovery" => "Não foi possível actualizar a recuperação de ficheiros" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ro.php b/apps/files_encryption/l10n/ro.php index 9e04b627c42688174e7bd239a30b06d67eae872a..3dcdce324184ff6c362474f5131d98d474918511 100644 --- a/apps/files_encryption/l10n/ro.php +++ b/apps/files_encryption/l10n/ro.php @@ -1,4 +1,6 @@ - "Se salvează...", "Encryption" => "Încriptare" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_encryption/l10n/ru.php b/apps/files_encryption/l10n/ru.php index 5bb803de2d0a8f14746aca00444dda2f5768cc57..76fd8c5ba53d68e086873049b3b33154e0bf370d 100644 --- a/apps/files_encryption/l10n/ru.php +++ b/apps/files_encryption/l10n/ru.php @@ -1,4 +1,5 @@ - "Ключ восстановления успешно установлен", "Could not enable recovery key. Please check your recovery key password!" => "Невозможно включить ключ восстановления. Проверьте правильность пароля от ключа!", "Recovery key successfully disabled" => "Ключ восстановления успешно отключен", @@ -9,7 +10,6 @@ "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 the OpenSSL PHP extension is enabled and configured properly. For now, the encryption app has been disabled." => "Пожалуйста, убедитесь, что PHP 5.3.3 или новее установлен и что расширение OpenSSL PHP включен и настроен. В настоящее время, шифрование для приложения было отключено.", "Saving..." => "Сохранение...", "Your private key is not valid! Maybe the your password was changed from outside." => "Секретный ключ недействителен! Возможно, Ваш пароль был изменён в другой программе.", "You can unlock your private key in your " => "Вы можете разблокировать закрытый ключ в своём ", @@ -34,3 +34,4 @@ "File recovery settings updated" => "Настройки файла восстановления обновлены", "Could not update file recovery" => "Невозможно обновить файл восстановления" ); +$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/ru_RU.php b/apps/files_encryption/l10n/ru_RU.php deleted file mode 100644 index 1351f63f89b8e87ba4b736fc449e52cabed6f1f6..0000000000000000000000000000000000000000 --- a/apps/files_encryption/l10n/ru_RU.php +++ /dev/null @@ -1,3 +0,0 @@ - "Сохранение" -); diff --git a/apps/files_encryption/l10n/si_LK.php b/apps/files_encryption/l10n/si_LK.php index 6c678bb3a4f93ba7dafa670e571d742969a2bc76..5f5330df54746f6a2b71e120149036581ff86e54 100644 --- a/apps/files_encryption/l10n/si_LK.php +++ b/apps/files_encryption/l10n/si_LK.php @@ -1,4 +1,6 @@ - "සුරැකෙමින් පවතී...", "Encryption" => "ගුප්ත කේතනය" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/sk_SK.php b/apps/files_encryption/l10n/sk_SK.php index d8894e537061533dceeb8a21743df3f2a47d759f..a723d80773b6751b7fb9f465995f2a2c56a55aec 100644 --- a/apps/files_encryption/l10n/sk_SK.php +++ b/apps/files_encryption/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Záchranný kľúč bol úspešne povolený", "Could not enable recovery key. Please check your recovery key password!" => "Nepodarilo sa povoliť záchranný kľúč. Skontrolujte prosím Vaše heslo záchranného kľúča!", "Recovery key successfully disabled" => "Záchranný kľúč bol úspešne zakázaný", @@ -25,3 +26,4 @@ "File recovery settings updated" => "Nastavenie obnovy súborov aktualizované", "Could not update file recovery" => "Nemožno aktualizovať obnovenie súborov" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_encryption/l10n/sl.php b/apps/files_encryption/l10n/sl.php index 8b28ba011558afb74eae6f4af23926550322336f..8b2f264c62e92935d58e1150b49b193cb1806d2e 100644 --- a/apps/files_encryption/l10n/sl.php +++ b/apps/files_encryption/l10n/sl.php @@ -1,4 +1,5 @@ - "Ključ za obnovitev gesla je bil uspešno nastavljen", "Could not enable recovery key. Please check your recovery key password!" => "Ključa za obnovitev gesla ni bilo mogoče nastaviti. Preverite ključ!", "Recovery key successfully disabled" => "Ključ za obnovitev gesla je bil uspešno onemogočen", @@ -8,6 +9,9 @@ "Private key password successfully updated." => "Zasebni ključ za geslo je bil uspešno posodobljen.", "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", @@ -32,3 +36,4 @@ "File recovery settings updated" => "Nastavitve obnavljanja dokumentov so bile posodobljene", "Could not update file recovery" => "Nastavitev za obnavljanje dokumentov ni bilo mogoče posodobiti" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_encryption/l10n/sr.php b/apps/files_encryption/l10n/sr.php index a36e37c1790f1e7158feb4d1c3fcdaea563058a4..cbf87dcf4d27e717945b18604afd7acdb111912c 100644 --- a/apps/files_encryption/l10n/sr.php +++ b/apps/files_encryption/l10n/sr.php @@ -1,4 +1,6 @@ - "Чување у току...", "Encryption" => "Шифровање" ); +$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/sv.php b/apps/files_encryption/l10n/sv.php index 2cef6686fce37b83eb4586680489cea68fa4a245..88ba6b471597312f046379199e75f53ea096e868 100644 --- a/apps/files_encryption/l10n/sv.php +++ b/apps/files_encryption/l10n/sv.php @@ -1,4 +1,5 @@ - "Återställningsnyckeln har framgångsrikt aktiverats", "Could not enable recovery key. Please check your recovery key password!" => "Kunde inte aktivera återställningsnyckeln. Vänligen kontrollera ditt lösenord för återställningsnyckeln!", "Recovery key successfully disabled" => "Återställningsnyckeln har framgångsrikt inaktiverats", @@ -9,7 +10,8 @@ "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 the OpenSSL 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 rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad.", +"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.", "You can unlock your private key in your " => "Du kan låsa upp din privata nyckel i dina", @@ -34,3 +36,4 @@ "File recovery settings updated" => "Inställningarna för filåterställning har uppdaterats", "Could not update file recovery" => "Kunde inte uppdatera filåterställning" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/ta_LK.php b/apps/files_encryption/l10n/ta_LK.php index 63fe9ecde86944b117bd14a603506940ddd76e6a..9dec6de3acb361bac78191a586bc43f0de256478 100644 --- a/apps/files_encryption/l10n/ta_LK.php +++ b/apps/files_encryption/l10n/ta_LK.php @@ -1,4 +1,6 @@ - "சேமிக்கப்படுகிறது...", "Encryption" => "மறைக்குறியீடு" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_encryption/l10n/th_TH.php b/apps/files_encryption/l10n/th_TH.php index 6cab4370ccf2413b2140c49bbd0fdfb4ea39edc1..7bf3e2765aada2e77738fb41477e38e7557e8406 100644 --- a/apps/files_encryption/l10n/th_TH.php +++ b/apps/files_encryption/l10n/th_TH.php @@ -1,4 +1,6 @@ - "กำลังบันทึกข้อมูล...", "Encryption" => "การเข้ารหัส" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/tr.php b/apps/files_encryption/l10n/tr.php index 24c6fa472782376a2373f1709b05038253cb9cdc..7fdda1a5bf6e6b0d6aa6cd721bbcd1f4b0ef5c66 100644 --- a/apps/files_encryption/l10n/tr.php +++ b/apps/files_encryption/l10n/tr.php @@ -1,4 +1,5 @@ - "Kurtarma anahtarı başarıyla etkinleştirildi", "Could not enable recovery key. Please check your recovery key password!" => "Kurtarma anahtarı etkinleştirilemedi. Lütfen kurtarma anahtarı parolanızı kontrol edin!", "Recovery key successfully disabled" => "Kurtarma anahtarı başarıyla devre dışı bırakıldı", @@ -13,3 +14,4 @@ "File recovery settings updated" => "Dosya kurtarma ayarları güncellendi", "Could not update file recovery" => "Dosya kurtarma güncellenemedi" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_encryption/l10n/ug.php b/apps/files_encryption/l10n/ug.php index 954d95b4132977305ae13648d6c430b91157ac08..25b3f68634b3a6e273259804f7590043a59098fe 100644 --- a/apps/files_encryption/l10n/ug.php +++ b/apps/files_encryption/l10n/ug.php @@ -1,4 +1,6 @@ - "ساقلاۋاتىدۇ…", "Encryption" => "شىفىرلاش" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/uk.php b/apps/files_encryption/l10n/uk.php index 1c176a391423e5abf4e8d6332bd7a14b0d62c7d2..680beddfe680f72a72753efa561323cf9c0f19ff 100644 --- a/apps/files_encryption/l10n/uk.php +++ b/apps/files_encryption/l10n/uk.php @@ -1,4 +1,6 @@ - "Зберігаю...", "Encryption" => "Шифрування" ); +$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/vi.php b/apps/files_encryption/l10n/vi.php index d11569bb94c443a971dc08716f9467a2571cdad8..18882be63a198b583e23af8ba9d2016ec16a0efd 100644 --- a/apps/files_encryption/l10n/vi.php +++ b/apps/files_encryption/l10n/vi.php @@ -1,4 +1,5 @@ - "Đã đổi mật khẩu.", "Could not change the password. Maybe the old password was not correct." => "Không thể đổi mật khẩu. Có lẽ do mật khẩu cũ không đúng.", "Saving..." => "Đang lưu...", @@ -7,3 +8,4 @@ "Disabled" => "Tắt", "Change Password" => "Đổi Mật khẩu" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_CN.GB2312.php b/apps/files_encryption/l10n/zh_CN.GB2312.php index 3c405a81ace8ddfb0ee74281b823a911faa19477..0f9f459c771ab3145b7983b4148c37c566483d10 100644 --- a/apps/files_encryption/l10n/zh_CN.GB2312.php +++ b/apps/files_encryption/l10n/zh_CN.GB2312.php @@ -1,4 +1,6 @@ - "保存中...", "Encryption" => "加密" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_CN.php b/apps/files_encryption/l10n/zh_CN.php index a3939165c7a74d247a61ddf9f3d16f5caf6a44fa..c4c52f4ac2e72e46112e739e5cdc90d345175528 100644 --- a/apps/files_encryption/l10n/zh_CN.php +++ b/apps/files_encryption/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "恢复密钥成功启用", "Could not enable recovery key. Please check your recovery key password!" => "不能启用恢复密钥。请检查恢复密钥密码!", "Recovery key successfully disabled" => "恢复密钥成功禁用", @@ -32,3 +33,4 @@ "File recovery settings updated" => "文件恢复设置已更新", "Could not update file recovery" => "不能更新文件恢复" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_HK.php b/apps/files_encryption/l10n/zh_HK.php index 0a38a2ddf856ddb1e460af9821642559a44d6e5d..edbeb0f1c66b83a4ce6bc0840e7892202cbf769d 100644 --- a/apps/files_encryption/l10n/zh_HK.php +++ b/apps/files_encryption/l10n/zh_HK.php @@ -1,3 +1,5 @@ - "加密" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/l10n/zh_TW.php b/apps/files_encryption/l10n/zh_TW.php index d34f51c4870bb6ad4f4217c49b8c68e70bbe63fe..02dc49cc3d944f70f54b84dfaa8636a80610dd97 100644 --- a/apps/files_encryption/l10n/zh_TW.php +++ b/apps/files_encryption/l10n/zh_TW.php @@ -1,11 +1,17 @@ - "成功變更密碼。", "Could not change the 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 系統之外被改變(例:您的目錄)。 您可以在個人設定中更新私鑰密碼取回已加密的檔案。", "Saving..." => "儲存中...", "Encryption" => "加密", "Enabled" => "已啓用", "Disabled" => "已停用", "Change Password" => "變更密碼", +" If you don't remember your old password you can ask your administrator to recover your files." => "如果您忘記舊密碼,可以請求管理員協助取回檔案。", +"Old log-in password" => "舊登入密碼", +"Current log-in password" => "目前的登入密碼", "File recovery settings updated" => "檔案還原設定已更新", "Could not update file recovery" => "無法更新檔案還原設定" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_encryption/lib/crypt.php b/apps/files_encryption/lib/crypt.php index 6543a0de5f3b94b8a059e0bf01f1b1a32260041d..3947b7d0c3b83c307726abc9e67ec802813e1fb1 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'); /** @@ -57,7 +56,9 @@ class Crypt { if ($res === false) { \OCP\Util::writeLog('Encryption library', 'couldn\'t generate users key-pair for ' . \OCP\User::getUser(), \OCP\Util::ERROR); - \OCP\Util::writeLog('Encryption library', openssl_error_string(), \OCP\Util::ERROR); + while ($msg = openssl_error_string()) { + \OCP\Util::writeLog('Encryption library', 'openssl_pkey_new() fails: ' . $msg, \OCP\Util::ERROR); + } } elseif (openssl_pkey_export($res, $privateKey)) { // Get public key $keyDetails = openssl_pkey_get_details($res); @@ -84,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'; @@ -97,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') { @@ -205,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; @@ -226,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)) { @@ -246,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; @@ -259,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); @@ -376,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 @@ -486,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)) { @@ -548,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() { @@ -574,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) { @@ -594,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 @@ -663,4 +572,4 @@ class Crypt { } } -} \ No newline at end of file +} diff --git a/apps/files_encryption/lib/helper.php b/apps/files_encryption/lib/helper.php index 6eee8fed6a63932b01071dc0b173ee8041dc6f1a..b09c584c0b8fe4852128a3440e8ff9762dd53072 100755 --- a/apps/files_encryption/lib/helper.php +++ b/apps/files_encryption/lib/helper.php @@ -232,6 +232,21 @@ class Helper { return (bool) $result; } + + /** + * check some common errors if the server isn't configured properly for encryption + * @return bool true if configuration seems to be OK + */ + public static function checkConfiguration() { + if(openssl_pkey_new(array('private_key_bits' => 4096))) { + return true; + } else { + while ($msg = openssl_error_string()) { + \OCP\Util::writeLog('Encryption library', 'openssl_pkey_new() fails: ' . $msg, \OCP\Util::ERROR); + } + return false; + } + } /** * @brief glob uses different pattern than regular expressions, escape glob pattern only diff --git a/apps/files_encryption/lib/util.php b/apps/files_encryption/lib/util.php index 50e823585d76aa5d7ba3d42cc207ddea9912dd01..c6fc134fe4285f8846bd2c04bc4c49cc3540b390 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 no shareKey, and its keyfile must be - // decrypted conventionally - $plainKeyfile = Crypt::keyDecrypt($encKeyfile, $privateKey); + // The file has a shareKey and must use it for decryption + $shareKey = Keymanager::getShareKey($this->view, $this->userId, $filePath); - - } 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 9b97df22d1685932a7afba2db881b3c78a745dd8..2330a45be841bbdafcc0484ee9e17eadd6435156 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 b644856d95d35df68af1c6e29abcd1a92a52d915..13f8c3197c7e3c957791cd2379f57690eeab4188 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_encryption/tests/share.php b/apps/files_encryption/tests/share.php index ebf678da78ed2f7f536da7db852c47b34e8a3972..5f3d500509007b1fd2be7b400961d31fcd1fb99b 100755 --- a/apps/files_encryption/tests/share.php +++ b/apps/files_encryption/tests/share.php @@ -881,8 +881,13 @@ class Test_Encryption_Share extends \PHPUnit_Framework_TestCase { \OC_FileProxy::$enabled = $proxyStatus; // share the file - \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_GROUP, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_GROUP1, OCP\PERMISSION_ALL); - + try { + \OCP\Share::shareItem('file', $fileInfo['fileid'], \OCP\Share::SHARE_TYPE_GROUP, \Test_Encryption_Share::TEST_ENCRYPTION_SHARE_GROUP1, OCP\PERMISSION_ALL); + } catch (Exception $e) { + $this->assertEquals(0, strpos($e->getMessage(), "Following users are not set up for encryption")); + } + + // login as admin \Test_Encryption_Util::loginHelper(\Test_Encryption_Share::TEST_ENCRYPTION_SHARE_USER1); diff --git a/apps/files_external/l10n/af_ZA.php b/apps/files_external/l10n/af_ZA.php index cf9b951828d37de8c9b72ba32f7c45a4fe83daef..261c44310fddc54f7343ae77dcf3614c25f299bb 100644 --- a/apps/files_external/l10n/af_ZA.php +++ b/apps/files_external/l10n/af_ZA.php @@ -1,3 +1,5 @@ - "Gebruikers" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ar.php b/apps/files_external/l10n/ar.php index a53bfe48bc3c82a5f1659537d337390903c6f136..905d221e886d43f4ec75fec51336841f9f81d9ee 100644 --- a/apps/files_external/l10n/ar.php +++ b/apps/files_external/l10n/ar.php @@ -1,5 +1,7 @@ - "مجموعات", "Users" => "المستخدمين", "Delete" => "إلغاء" ); +$PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_external/l10n/bg_BG.php b/apps/files_external/l10n/bg_BG.php index fcb01152bf83135b17bf3821c411c4a70cf38bfb..17665d222863efc70f2d8a451b207d3c615e797f 100644 --- a/apps/files_external/l10n/bg_BG.php +++ b/apps/files_external/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Достъпът е даден", "Grant access" => "Даване на достъп", "External Storage" => "Външно хранилище", @@ -16,3 +17,4 @@ "SSL root certificates" => "SSL основни сертификати", "Import Root Certificate" => "Импортиране на основен сертификат" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/bn_BD.php b/apps/files_external/l10n/bn_BD.php index 0f032df9f05782566bf6f92f82a3dcb02a6fe6c9..0591dbba55c42a934e1674959ae29d3c1dd50e00 100644 --- a/apps/files_external/l10n/bn_BD.php +++ b/apps/files_external/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "অধিগমনের অনুমতি প্রদান করা হলো", "Error configuring Dropbox storage" => "Dropbox সংরক্ষণাগার নির্ধারণ করতে সমস্যা ", "Grant access" => "অধিগমনের অনুমতি প্রদান কর", @@ -18,3 +19,4 @@ "SSL root certificates" => "SSL রুট সনদপত্র", "Import Root Certificate" => "রুট সনদপত্রটি আমদানি করুন" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ca.php b/apps/files_external/l10n/ca.php index 90ac954301f827110222c7abf00c5187e97c00fb..c1d6ec077b4cdb36caefead8b2e48d97cb93ca09 100644 --- a/apps/files_external/l10n/ca.php +++ b/apps/files_external/l10n/ca.php @@ -1,4 +1,5 @@ - "S'ha concedit l'accés", "Error configuring Dropbox storage" => "Error en configurar l'emmagatzemament Dropbox", "Grant access" => "Concedeix accés", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificats SSL root", "Import Root Certificate" => "Importa certificat root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/cs_CZ.php b/apps/files_external/l10n/cs_CZ.php index 12603044d63ee36907d3bf21af1829eec5084957..a574e0506cf365c90ee92e4a08f27b1ed810423a 100644 --- a/apps/files_external/l10n/cs_CZ.php +++ b/apps/files_external/l10n/cs_CZ.php @@ -1,12 +1,13 @@ - "Přístup povolen", "Error configuring Dropbox storage" => "Chyba při nastavení úložiště Dropbox", "Grant access" => "Povolit přístup", "Please provide a valid Dropbox app key and secret." => "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox.", "Error configuring Google Drive storage" => "Chyba při nastavení úložiště Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje.", -"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." => "Varování: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.", -"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." => "Varování: není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.", +"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." => "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje.", +"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." => "Varování: podpora CURL v PHP není povolena nebo není nainstalována. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje.", "External Storage" => "Externí úložiště", "Folder name" => "Název složky", "External storage" => "Externí úložiště", @@ -24,3 +25,4 @@ "SSL root certificates" => "Kořenové certifikáty SSL", "Import Root Certificate" => "Importovat kořenového certifikátu" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_external/l10n/cy_GB.php b/apps/files_external/l10n/cy_GB.php index 78bbb987eb89093f6cd7b433b0db498071696f8e..33992789cb3b8cb4b508e4eb125b5829806352ed 100644 --- a/apps/files_external/l10n/cy_GB.php +++ b/apps/files_external/l10n/cy_GB.php @@ -1,5 +1,7 @@ - "Grwpiau", "Users" => "Defnyddwyr", "Delete" => "Dileu" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_external/l10n/da.php b/apps/files_external/l10n/da.php index f2c1e45778d34c42f15eb8c7ac220c73025cee0d..3a25142b36d7982f377b6b1677b5e4b78250fcc7 100644 --- a/apps/files_external/l10n/da.php +++ b/apps/files_external/l10n/da.php @@ -1,4 +1,5 @@ - "Adgang godkendt", "Error configuring Dropbox storage" => "Fejl ved konfiguration af Dropbox plads", "Grant access" => "Godkend adgang", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-rodcertifikater", "Import Root Certificate" => "Importer rodcertifikat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/de.php b/apps/files_external/l10n/de.php index 8dfa0eafbb4b037fa9910a93f0223bb1651f2ee4..b2c72f768891ffb67ba97181e350d604c9574d47 100644 --- a/apps/files_external/l10n/de.php +++ b/apps/files_external/l10n/de.php @@ -1,4 +1,5 @@ - "Zugriff gestattet", "Error configuring Dropbox storage" => "Fehler beim Einrichten von Dropbox", "Grant access" => "Zugriff gestatten", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/de_DE.php b/apps/files_external/l10n/de_DE.php index 9b7ab4d53ca80523d2dee4b7f998aa83e14c14f7..8f6a25cb522f17c23e425e9b9b162993fd4150c8 100644 --- a/apps/files_external/l10n/de_DE.php +++ b/apps/files_external/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Zugriff gestattet", "Error configuring Dropbox storage" => "Fehler beim Einrichten von Dropbox", "Grant access" => "Zugriff gestatten", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-Root-Zertifikate", "Import Root Certificate" => "Root-Zertifikate importieren" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/el.php b/apps/files_external/l10n/el.php index 62703b08fbc1422f2b7b9b95bd65643009da7825..0161c0901d68060fd91663c5f5c06b5a3f0cd0fc 100644 --- a/apps/files_external/l10n/el.php +++ b/apps/files_external/l10n/el.php @@ -1,4 +1,5 @@ - "Προσβαση παρασχέθηκε", "Error configuring Dropbox storage" => "Σφάλμα ρυθμίζωντας αποθήκευση Dropbox ", "Grant access" => "Παροχή πρόσβασης", @@ -24,3 +25,4 @@ "SSL root certificates" => "Πιστοποιητικά SSL root", "Import Root Certificate" => "Εισαγωγή Πιστοποιητικού Root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/eo.php b/apps/files_external/l10n/eo.php index b0afb77498f28d39dcc65fa278b1172f8eda92a2..5697221cac09f94982d6ab1f52045fea6657e192 100644 --- a/apps/files_external/l10n/eo.php +++ b/apps/files_external/l10n/eo.php @@ -1,4 +1,5 @@ - "Alirpermeso donita", "Error configuring Dropbox storage" => "Eraro dum agordado de la memorservo Dropbox", "Grant access" => "Doni alirpermeson", @@ -19,3 +20,4 @@ "SSL root certificates" => "Radikaj SSL-atestoj", "Import Root Certificate" => "Enporti radikan ateston" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/es.php b/apps/files_external/l10n/es.php index d145a176f7191e13985e8d0f95a26fe91db096c3..5179d9329a55014a2d75d6efddf50c0ec63d0a7e 100644 --- a/apps/files_external/l10n/es.php +++ b/apps/files_external/l10n/es.php @@ -1,4 +1,5 @@ - "Acceso concedido", "Error configuring Dropbox storage" => "Error configurando el almacenamiento de Dropbox", "Grant access" => "Conceder acceso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados raíz SSL", "Import Root Certificate" => "Importar certificado raíz" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/es_AR.php b/apps/files_external/l10n/es_AR.php index c1b3ac63886b5a166f43f6f09d36176629e5a508..a0bb3a8dfeaa6b45936f4d690cd2e95a3e9e1dea 100644 --- a/apps/files_external/l10n/es_AR.php +++ b/apps/files_external/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Acceso permitido", "Error configuring Dropbox storage" => "Error al configurar el almacenamiento de Dropbox", "Grant access" => "Permitir acceso", @@ -24,3 +25,4 @@ "SSL root certificates" => "certificados SSL raíz", "Import Root Certificate" => "Importar certificado raíz" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/et_EE.php b/apps/files_external/l10n/et_EE.php index 465201df4dd3834a40f41c088ca9f7a2c1ce1199..a7e623eb7dac6311db20b7b0f2c29decff33be81 100644 --- a/apps/files_external/l10n/et_EE.php +++ b/apps/files_external/l10n/et_EE.php @@ -1,4 +1,5 @@ - "Ligipääs on antud", "Error configuring Dropbox storage" => "Viga Dropboxi salvestusruumi seadistamisel", "Grant access" => "Anna ligipääs", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root sertifikaadid", "Import Root Certificate" => "Impordi root sertifikaadid" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/eu.php b/apps/files_external/l10n/eu.php index 9dc1f3e9c033a63d70988cc672be544ee2812f14..db92e2f001cfee85faac417ad454192b47f569eb 100644 --- a/apps/files_external/l10n/eu.php +++ b/apps/files_external/l10n/eu.php @@ -1,4 +1,5 @@ - "Sarrera baimendua", "Error configuring Dropbox storage" => "Errore bat egon da Dropbox biltegiratzea konfiguratzean", "Grant access" => "Baimendu sarrera", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL erro ziurtagiriak", "Import Root Certificate" => "Inportatu Erro Ziurtagiria" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/fa.php b/apps/files_external/l10n/fa.php index 036a34c09925095dd0ddb53d8594fb30e31161bd..216893811cb4e796ca2abea7dc143e10d263058d 100644 --- a/apps/files_external/l10n/fa.php +++ b/apps/files_external/l10n/fa.php @@ -1,4 +1,5 @@ - "مجوز دسترسی صادر شد", "Error configuring Dropbox storage" => "خطا به هنگام تنظیم فضای دراپ باکس", "Grant access" => " مجوز اعطا دسترسی", @@ -24,3 +25,4 @@ "SSL root certificates" => "گواهی های اصلی SSL ", "Import Root Certificate" => "وارد کردن گواهی اصلی" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/fi_FI.php b/apps/files_external/l10n/fi_FI.php index ba39d140fbc87f922ee3e02fd645ac34168fa6f8..9632aa255ea4c5c4c165e2987d03359c63e56047 100644 --- a/apps/files_external/l10n/fi_FI.php +++ b/apps/files_external/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Pääsy sallittu", "Error configuring Dropbox storage" => "Virhe Dropbox levyn asetuksia tehtäessä", "Grant access" => "Salli pääsy", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL-juurivarmenteet", "Import Root Certificate" => "Tuo juurivarmenne" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/fr.php b/apps/files_external/l10n/fr.php index 5006133a7b688cc4e59bb84d097a777acc5ac7ec..f6b1a75200c3437509b3e7025f53b1b447d8ee19 100644 --- a/apps/files_external/l10n/fr.php +++ b/apps/files_external/l10n/fr.php @@ -1,4 +1,5 @@ - "Accès autorisé", "Error configuring Dropbox storage" => "Erreur lors de la configuration du support de stockage Dropbox", "Grant access" => "Autoriser l'accès", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificats racine SSL", "Import Root Certificate" => "Importer un certificat racine" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/gl.php b/apps/files_external/l10n/gl.php index 77f23c39bc3f95b1c37bd7c5cfc2b4d6708f7559..3dda999dd18ce0b67b371eefd102aa3dd5cd9b98 100644 --- a/apps/files_external/l10n/gl.php +++ b/apps/files_external/l10n/gl.php @@ -1,4 +1,5 @@ - "Concedeuse acceso", "Error configuring Dropbox storage" => "Produciuse un erro ao configurar o almacenamento en Dropbox", "Grant access" => "Permitir o acceso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados SSL root", "Import Root Certificate" => "Importar o certificado root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/he.php b/apps/files_external/l10n/he.php index 9cba045d1eafe5d12b01ba1c05bbb5261af7f44c..e99c9f5193d89e99c048717c8c76c1a698d6b682 100644 --- a/apps/files_external/l10n/he.php +++ b/apps/files_external/l10n/he.php @@ -1,4 +1,5 @@ - "הוענקה גישה", "Error configuring Dropbox storage" => "אירעה שגיאה בעת הגדרת אחסון ב־Dropbox", "Grant access" => "הענקת גישה", @@ -19,3 +20,4 @@ "SSL root certificates" => "שורש אישורי אבטחת SSL ", "Import Root Certificate" => "ייבוא אישור אבטחת שורש" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hi.php b/apps/files_external/l10n/hi.php index 0482efc4b23d20d9675fd371d1f1d8fc8a55e4a5..7df96572596a7781b219b9c5745591a935119d1a 100644 --- a/apps/files_external/l10n/hi.php +++ b/apps/files_external/l10n/hi.php @@ -1,3 +1,5 @@ - "उपयोगकर्ता" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hr.php b/apps/files_external/l10n/hr.php index 24f27ddf81bc2a1067493880089e0db8c9fa0156..91536e0b873ec0ee03fbc19a35e4a5146b8912de 100644 --- a/apps/files_external/l10n/hr.php +++ b/apps/files_external/l10n/hr.php @@ -1,5 +1,7 @@ - "Grupe", "Users" => "Korisnici", "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_external/l10n/hu_HU.php b/apps/files_external/l10n/hu_HU.php index b88737a19abde8df8d97c60f132795cc2f4c8d30..23fe916eba65acf3085718f48fa813bcb72a27b9 100644 --- a/apps/files_external/l10n/hu_HU.php +++ b/apps/files_external/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Érvényes hozzáférés", "Error configuring Dropbox storage" => "A Dropbox tárolót nem sikerült beállítani", "Grant access" => "Megadom a hozzáférést", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL tanúsítványok", "Import Root Certificate" => "SSL tanúsítványok importálása" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/hy.php b/apps/files_external/l10n/hy.php index 3b80487278a16a8f1f7b407908ea855f3f5def10..f933bec8feb91959b1303f8d028dda1c815ccf3e 100644 --- a/apps/files_external/l10n/hy.php +++ b/apps/files_external/l10n/hy.php @@ -1,3 +1,5 @@ - "Ջնջել" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ia.php b/apps/files_external/l10n/ia.php index f57f96688bf4c0d532e338be9f4fce3f0d276d2a..47b0f89b8b5b5c2406a04c311472f3d02c0dbd60 100644 --- a/apps/files_external/l10n/ia.php +++ b/apps/files_external/l10n/ia.php @@ -1,5 +1,7 @@ - "Gruppos", "Users" => "Usatores", "Delete" => "Deler" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/id.php b/apps/files_external/l10n/id.php index 30cd28bba1c91fb9f70fcd6809a12040c796f830..53ab79ae7eea955ffb0477efcb4fe99295a50fa2 100644 --- a/apps/files_external/l10n/id.php +++ b/apps/files_external/l10n/id.php @@ -1,4 +1,5 @@ - "Akses diberikan", "Error configuring Dropbox storage" => "Kesalahan dalam mengonfigurasi penyimpanan Dropbox", "Grant access" => "Berikan hak akses", @@ -23,3 +24,4 @@ "SSL root certificates" => "Sertifikat root SSL", "Import Root Certificate" => "Impor Sertifikat Root" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/is.php b/apps/files_external/l10n/is.php index 6af53096facafd5205ff3deb9529ab3576397049..d2229d1fcdd8e7c19256fa148d409f6c0e976f78 100644 --- a/apps/files_external/l10n/is.php +++ b/apps/files_external/l10n/is.php @@ -1,4 +1,5 @@ - "Aðgengi veitt", "Error configuring Dropbox storage" => "Villa við að setja upp Dropbox gagnasvæði", "Grant access" => "Veita aðgengi", @@ -21,3 +22,4 @@ "SSL root certificates" => "SSL rótar skilríki", "Import Root Certificate" => "Flytja inn rótar skilríki" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/it.php b/apps/files_external/l10n/it.php index 4c70a04022ecba70b8b9845d10047a256a8c5dcb..b53663beb564598cf79944b6d4f9aeafb2cb5791 100644 --- a/apps/files_external/l10n/it.php +++ b/apps/files_external/l10n/it.php @@ -1,4 +1,5 @@ - "Accesso consentito", "Error configuring Dropbox storage" => "Errore durante la configurazione dell'archivio Dropbox", "Grant access" => "Concedi l'accesso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificati SSL radice", "Import Root Certificate" => "Importa certificato radice" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ja_JP.php b/apps/files_external/l10n/ja_JP.php index 97dd4e119d4d9fdecdbe1bc41dfac60d830bdcfd..fc528f035c2b9f142842dfe405be48538bfb943f 100644 --- a/apps/files_external/l10n/ja_JP.php +++ b/apps/files_external/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "アクセスは許可されました", "Error configuring Dropbox storage" => "Dropboxストレージの設定エラー", "Grant access" => "アクセスを許可", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSLルート証明書", "Import Root Certificate" => "ルート証明書をインポート" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ka.php b/apps/files_external/l10n/ka.php index 14c0625e1f280d2661e7dd33cb07e27814ef1fe4..f6356d2cef83005942ee5e3e5ee4b8db773a25ab 100644 --- a/apps/files_external/l10n/ka.php +++ b/apps/files_external/l10n/ka.php @@ -1,3 +1,5 @@ - "მომხმარებლები" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ka_GE.php b/apps/files_external/l10n/ka_GE.php index b0845555b4b41d6d46b76cffb628dd6b61ee37af..445d40e70899ea33a99017a2b2a2fd154ab8ed46 100644 --- a/apps/files_external/l10n/ka_GE.php +++ b/apps/files_external/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "დაშვება მინიჭებულია", "Error configuring Dropbox storage" => "შეცდომა Dropbox საცავის კონფიგურირების დროს", "Grant access" => "დაშვების მინიჭება", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root სერთიფიკატები", "Import Root Certificate" => "Root სერთიფიკატის იმპორტირება" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ko.php b/apps/files_external/l10n/ko.php index 803b489c218313cae5ce99d463eebee15e753d59..64d815a5bcb59e2d2ea5a7248a6bd2db43a2d11a 100644 --- a/apps/files_external/l10n/ko.php +++ b/apps/files_external/l10n/ko.php @@ -1,4 +1,5 @@ - "접근 허가됨", "Error configuring Dropbox storage" => "Dropbox 저장소 설정 오류", "Grant access" => "접근 권한 부여", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL 루트 인증서", "Import Root Certificate" => "루트 인증서 가져오기" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/ku_IQ.php b/apps/files_external/l10n/ku_IQ.php index 59eabb36c9ffd7f5779582ff862c0ff9723ee4ea..39778bce07238a15a01a931bba6b46475a73ce42 100644 --- a/apps/files_external/l10n/ku_IQ.php +++ b/apps/files_external/l10n/ku_IQ.php @@ -1,4 +1,6 @@ - "ناوی بوخچه", "Users" => "به‌كارهێنه‌ر" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lb.php b/apps/files_external/l10n/lb.php index 4e78227ec4854d4d7281a9fc69199347bde8c6f1..13233bf36262761dffc5eb70baa1fc379d9c65d1 100644 --- a/apps/files_external/l10n/lb.php +++ b/apps/files_external/l10n/lb.php @@ -1,6 +1,8 @@ - "Dossiers Numm:", "Groups" => "Gruppen", "Users" => "Benotzer", "Delete" => "Läschen" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/lt_LT.php b/apps/files_external/l10n/lt_LT.php index 29c962d9a8057b2898921ce6113494c5b9b5ac76..57cdfe6722a97e21b216b7a00f030ec2eb238d87 100644 --- a/apps/files_external/l10n/lt_LT.php +++ b/apps/files_external/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Priėjimas suteiktas", "Error configuring Dropbox storage" => "Klaida nustatinėjant Dropbox talpyklą", "Grant access" => "Suteikti priėjimą", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL sertifikatas", "Import Root Certificate" => "Įkelti pagrindinį sertifikatą" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_external/l10n/lv.php b/apps/files_external/l10n/lv.php index b37dbcbdc16adbeeace1cbaf2588e5ce6bec524f..bc9e3aeefe7634c284bb5e596374fa4a50d5744c 100644 --- a/apps/files_external/l10n/lv.php +++ b/apps/files_external/l10n/lv.php @@ -1,4 +1,5 @@ - "Piešķirta pieeja", "Error configuring Dropbox storage" => "Kļūda, konfigurējot Dropbox krātuvi", "Grant access" => "Piešķirt pieeju", @@ -23,3 +24,4 @@ "SSL root certificates" => "SSL saknes sertifikāti", "Import Root Certificate" => "Importēt saknes sertifikātus" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_external/l10n/mk.php b/apps/files_external/l10n/mk.php index 1f1a1c27831fd1a6d97e8f5bb4b23b0c13068082..e410b398ac95473cd7c943bd5f4699513f920add 100644 --- a/apps/files_external/l10n/mk.php +++ b/apps/files_external/l10n/mk.php @@ -1,4 +1,5 @@ - "Пристапот е дозволен", "Error configuring Dropbox storage" => "Грешка при конфигурација на Dropbox", "Grant access" => "Дозволи пристап", @@ -21,3 +22,4 @@ "SSL root certificates" => "SSL root сертификати", "Import Root Certificate" => "Увези" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_external/l10n/ms_MY.php b/apps/files_external/l10n/ms_MY.php index 2fdb089ebc6f42d110ca755d899f683269f4fcc2..4e33263a8631b252528a3f09ab5f1bc1df76aa6f 100644 --- a/apps/files_external/l10n/ms_MY.php +++ b/apps/files_external/l10n/ms_MY.php @@ -1,5 +1,7 @@ - "Kumpulan", "Users" => "Pengguna", "Delete" => "Padam" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/my_MM.php b/apps/files_external/l10n/my_MM.php index 5acfbb0321e780fbde7413815f045f9ec50a4366..1cbe5f0fe52b691a7f0bde497b1c5fb043ba05a0 100644 --- a/apps/files_external/l10n/my_MM.php +++ b/apps/files_external/l10n/my_MM.php @@ -1,3 +1,5 @@ - "သုံးစွဲသူ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/nb_NO.php b/apps/files_external/l10n/nb_NO.php index ea8648303d1be23bec5c75f626e4f1f5ccaf63ec..cb31ac89227f9f4c6bac176edf275eb765042508 100644 --- a/apps/files_external/l10n/nb_NO.php +++ b/apps/files_external/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Tilgang innvilget", "Error configuring Dropbox storage" => "Feil ved konfigurering av Dropbox-lagring", "Grant access" => "Gi tilgang", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root-sertifikater", "Import Root Certificate" => "Importer root-sertifikat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/nl.php b/apps/files_external/l10n/nl.php index ded5a861a8b50ca0509b0dce2ceb65b97c96715e..35e63b09a352d5639655bc1801683396f651fd73 100644 --- a/apps/files_external/l10n/nl.php +++ b/apps/files_external/l10n/nl.php @@ -1,4 +1,5 @@ - "Toegang toegestaan", "Error configuring Dropbox storage" => "Fout tijdens het configureren van Dropbox opslag", "Grant access" => "Sta toegang toe", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL root certificaten", "Import Root Certificate" => "Importeer root certificaat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/nn_NO.php b/apps/files_external/l10n/nn_NO.php index 998c3f824578b5d2553d84eecd777aff27a8c4ff..7bb38f14cee42a817458068331022b1fef4d2af3 100644 --- a/apps/files_external/l10n/nn_NO.php +++ b/apps/files_external/l10n/nn_NO.php @@ -1,6 +1,8 @@ - "Innstillingar", "Groups" => "Grupper", "Users" => "Brukarar", "Delete" => "Slett" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/oc.php b/apps/files_external/l10n/oc.php index 47db011473f714e564a7f6f4879819579babee4c..99f2fd507d2b86388c61f60e17c95878940b082a 100644 --- a/apps/files_external/l10n/oc.php +++ b/apps/files_external/l10n/oc.php @@ -1,5 +1,7 @@ - "Grops", "Users" => "Usancièrs", "Delete" => "Escafa" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/pl.php b/apps/files_external/l10n/pl.php index e03ded1e70a222268880990d6d7fc2339755e9e4..f5501b9755b47091ca0047f3ae232031746284b6 100644 --- a/apps/files_external/l10n/pl.php +++ b/apps/files_external/l10n/pl.php @@ -1,4 +1,5 @@ - "Dostęp do", "Error configuring Dropbox storage" => "Wystąpił błąd podczas konfigurowania zasobu Dropbox", "Grant access" => "Udziel dostępu", @@ -24,3 +25,4 @@ "SSL root certificates" => "Główny certyfikat SSL", "Import Root Certificate" => "Importuj główny certyfikat" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_external/l10n/pt_BR.php b/apps/files_external/l10n/pt_BR.php index bc3c356a5175f89f4d93437da084f4b67376aa4b..f69bbc1ebe62e0e0a7de8397dd6aecf371873876 100644 --- a/apps/files_external/l10n/pt_BR.php +++ b/apps/files_external/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Acesso concedido", "Error configuring Dropbox storage" => "Erro ao configurar armazenamento do Dropbox", "Grant access" => "Permitir acesso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados SSL raíz", "Import Root Certificate" => "Importar Certificado Raíz" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/pt_PT.php b/apps/files_external/l10n/pt_PT.php index 0a05d1f8825fb3654dae7470c8b54616aa82dcf6..3f2afd33f079d364f2eb12a7b985492f3a706228 100644 --- a/apps/files_external/l10n/pt_PT.php +++ b/apps/files_external/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Acesso autorizado", "Error configuring Dropbox storage" => "Erro ao configurar o armazenamento do Dropbox", "Grant access" => "Conceder acesso", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificados SSL de raiz", "Import Root Certificate" => "Importar Certificado Root" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ro.php b/apps/files_external/l10n/ro.php index ed23b4cca8f7c52266f92e96603956a8bd59eb9b..7115d09ea94780ab2e8ac624b2ef8238a8146427 100644 --- a/apps/files_external/l10n/ro.php +++ b/apps/files_external/l10n/ro.php @@ -1,4 +1,5 @@ - "Acces permis", "Error configuring Dropbox storage" => "Eroare la configurarea mediului de stocare Dropbox", "Grant access" => "Permite accesul", @@ -24,3 +25,4 @@ "SSL root certificates" => "Certificate SSL root", "Import Root Certificate" => "Importă certificat root" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_external/l10n/ru.php b/apps/files_external/l10n/ru.php index d2c5292bac414da45f92ca36d928ff3ff087d238..50c25acba06833573977bbba3e7c71ee5eae5be2 100644 --- a/apps/files_external/l10n/ru.php +++ b/apps/files_external/l10n/ru.php @@ -1,4 +1,5 @@ - "Доступ предоставлен", "Error configuring Dropbox storage" => "Ошибка при настройке хранилища Dropbox", "Grant access" => "Предоставление доступа", @@ -24,3 +25,4 @@ "SSL root certificates" => "Корневые сертификаты SSL", "Import Root Certificate" => "Импортировать корневые сертификаты" ); +$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/l10n/ru_RU.php b/apps/files_external/l10n/ru_RU.php deleted file mode 100644 index a43417dfbc1a134a783914c108680fa888d81f06..0000000000000000000000000000000000000000 --- a/apps/files_external/l10n/ru_RU.php +++ /dev/null @@ -1,4 +0,0 @@ - "Группы", -"Delete" => "Удалить" -); diff --git a/apps/files_external/l10n/si_LK.php b/apps/files_external/l10n/si_LK.php index cc9cb9b9ce50084b2bb06281e90782e5c9df89c9..cad928accef3604aa3b0d97d98a553b6435fb9fe 100644 --- a/apps/files_external/l10n/si_LK.php +++ b/apps/files_external/l10n/si_LK.php @@ -1,4 +1,5 @@ - "පිවිසීමට හැක", "Error configuring Dropbox storage" => "Dropbox ගබඩාව වින්‍යාස කිරීමේ දෝශයක් ඇත", "Grant access" => "පිවිසුම ලබාදෙන්න", @@ -19,3 +20,4 @@ "SSL root certificates" => "SSL මූල සහතිකයන්", "Import Root Certificate" => "මූල සහතිකය ආයාත කරන්න" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/sk_SK.php b/apps/files_external/l10n/sk_SK.php index 33edcb9d4c8c112202b001263ff202486b01156e..ca445387bcae8d08b7dc5f40245791fa92791156 100644 --- a/apps/files_external/l10n/sk_SK.php +++ b/apps/files_external/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Prístup povolený", "Error configuring Dropbox storage" => "Chyba pri konfigurácii úložiska Dropbox", "Grant access" => "Povoliť prístup", @@ -24,3 +25,4 @@ "SSL root certificates" => "Koreňové SSL certifikáty", "Import Root Certificate" => "Importovať koreňový certifikát" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_external/l10n/sl.php b/apps/files_external/l10n/sl.php index 09b91b913e9a796899b1b8b96d7756939b5e8814..b0fcbf9eb69d306a9c12de375ee42410cb9e20dd 100644 --- a/apps/files_external/l10n/sl.php +++ b/apps/files_external/l10n/sl.php @@ -1,4 +1,5 @@ - "Dostop je odobren", "Error configuring Dropbox storage" => "Napaka nastavljanja shrambe Dropbox", "Grant access" => "Odobri dostop", @@ -24,3 +25,4 @@ "SSL root certificates" => "Korenska potrdila SSL", "Import Root Certificate" => "Uvozi korensko potrdilo" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_external/l10n/sq.php b/apps/files_external/l10n/sq.php index d5393aa38527a242df701d3002ca1c60335c346c..42de15edadc8ddad3b715e774dfd974ef81eec25 100644 --- a/apps/files_external/l10n/sq.php +++ b/apps/files_external/l10n/sq.php @@ -1,4 +1,6 @@ - "Përdoruesit", "Delete" => "Elimino" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/sr.php b/apps/files_external/l10n/sr.php index 2554c498ddafc60584bcbd399f6b4190d60b3749..c456daa004db0dcd52418dd33b016015a99698cf 100644 --- a/apps/files_external/l10n/sr.php +++ b/apps/files_external/l10n/sr.php @@ -1,5 +1,7 @@ - "Групе", "Users" => "Корисници", "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/l10n/sr@latin.php b/apps/files_external/l10n/sr@latin.php index 24f27ddf81bc2a1067493880089e0db8c9fa0156..a2489bbc64b7db27bb2e2644bc785bc5ace4630a 100644 --- a/apps/files_external/l10n/sr@latin.php +++ b/apps/files_external/l10n/sr@latin.php @@ -1,5 +1,7 @@ - "Grupe", "Users" => "Korisnici", "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_external/l10n/sv.php b/apps/files_external/l10n/sv.php index 80e68ab6e0645305d0440d03cd8c17372b5fb4d8..2c0b0ab69e4dd508b939fd0b80fb4be3b097f2cd 100644 --- a/apps/files_external/l10n/sv.php +++ b/apps/files_external/l10n/sv.php @@ -1,4 +1,5 @@ - "Åtkomst beviljad", "Error configuring Dropbox storage" => "Fel vid konfigurering av Dropbox", "Grant access" => "Bevilja åtkomst", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL rotcertifikat", "Import Root Certificate" => "Importera rotcertifikat" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/ta_LK.php b/apps/files_external/l10n/ta_LK.php index cee3b6edb8a2b669287a99296b232c942e17c651..bb663a4fcb6a31f26f4d8a4b064d49038ac764e3 100644 --- a/apps/files_external/l10n/ta_LK.php +++ b/apps/files_external/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "அனுமதி வழங்கப்பட்டது", "Error configuring Dropbox storage" => "Dropbox சேமிப்பை தகவமைப்பதில் வழு", "Grant access" => "அனுமதியை வழங்கல்", @@ -19,3 +20,4 @@ "SSL root certificates" => "SSL வேர் சான்றிதழ்கள்", "Import Root Certificate" => "வேர் சான்றிதழை இறக்குமதி செய்க" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/te.php b/apps/files_external/l10n/te.php index 3d31f6438f586ab936a37a0dca4cf1cc7ccc8e40..7f8d893d46382d80d7c621bcd1ae161d70e65cc7 100644 --- a/apps/files_external/l10n/te.php +++ b/apps/files_external/l10n/te.php @@ -1,5 +1,7 @@ - "సంచయం పేరు", "Users" => "వాడుకరులు", "Delete" => "తొలగించు" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/th_TH.php b/apps/files_external/l10n/th_TH.php index 2f733eab9e8f4efca77ffada056b5a28167bb900..f2ea35f10f4783252a3a3ce87ae3733241da516b 100644 --- a/apps/files_external/l10n/th_TH.php +++ b/apps/files_external/l10n/th_TH.php @@ -1,4 +1,5 @@ - "การเข้าถึงได้รับอนุญาตแล้ว", "Error configuring Dropbox storage" => "เกิดข้อผิดพลาดในการกำหนดค่าพื้นที่จัดเก็บข้อมูล Dropbox", "Grant access" => "อนุญาตให้เข้าถึงได้", @@ -21,3 +22,4 @@ "SSL root certificates" => "ใบรับรองความปลอดภัยด้วยระบบ SSL จาก Root", "Import Root Certificate" => "นำเข้าข้อมูลใบรับรองความปลอดภัยจาก Root" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/tr.php b/apps/files_external/l10n/tr.php index 3c3c0c24f97ad6baa6c8529f8272b5aed44ff0b1..cc52c425b8d67c344a2aedf67d357b163900fe89 100644 --- a/apps/files_external/l10n/tr.php +++ b/apps/files_external/l10n/tr.php @@ -1,4 +1,5 @@ - "Giriş kabul edildi", "Error configuring Dropbox storage" => "Dropbox depo yapılandırma hatası", "Grant access" => "Erişim sağlandı", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL kök sertifikaları", "Import Root Certificate" => "Kök Sertifikalarını İçe Aktar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_external/l10n/ug.php b/apps/files_external/l10n/ug.php index 2d1dea989063c0cc93a38882d4c7303f60e6ae1e..ae20f7424da7e96e56d7547f07d1aec42e948b16 100644 --- a/apps/files_external/l10n/ug.php +++ b/apps/files_external/l10n/ug.php @@ -1,4 +1,5 @@ - "قىسقۇچ ئاتى", "External storage" => "سىرتقى ساقلىغۇچ", "Configuration" => "سەپلىمە", @@ -7,3 +8,4 @@ "Users" => "ئىشلەتكۈچىلەر", "Delete" => "ئۆچۈر" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/uk.php b/apps/files_external/l10n/uk.php index 34d19af0ee94ac061e583979c4dc7ba9521fb3a8..e535b455d10aacbab34ceb58d786423a5f99506e 100644 --- a/apps/files_external/l10n/uk.php +++ b/apps/files_external/l10n/uk.php @@ -1,4 +1,5 @@ - "Доступ дозволено", "Error configuring Dropbox storage" => "Помилка при налаштуванні сховища Dropbox", "Grant access" => "Дозволити доступ", @@ -6,6 +7,7 @@ "Error configuring Google Drive storage" => "Помилка при налаштуванні сховища Google Drive", "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it." => "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його.", "Warning: The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it." => "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її.", +"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." => "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її.", "External Storage" => "Зовнішні сховища", "Folder name" => "Ім'я теки", "External storage" => "Зовнішнє сховище", @@ -23,3 +25,4 @@ "SSL root certificates" => "SSL корневі сертифікати", "Import Root Certificate" => "Імпортувати корневі сертифікати" ); +$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/l10n/ur_PK.php b/apps/files_external/l10n/ur_PK.php index 278357b4d68c5ec2cb0ed08de2979f0c75aeacb1..56df17991bcf1d655b943a3906474043e1ba1047 100644 --- a/apps/files_external/l10n/ur_PK.php +++ b/apps/files_external/l10n/ur_PK.php @@ -1,3 +1,5 @@ - "یوزرز" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_external/l10n/vi.php b/apps/files_external/l10n/vi.php index 769f9e2a0976aa443ffda271da4e10fe6de52959..da8ac419cdaa9f95e69f842d55931f9fd74366d5 100644 --- a/apps/files_external/l10n/vi.php +++ b/apps/files_external/l10n/vi.php @@ -1,4 +1,5 @@ - "Đã cấp quyền truy cập", "Error configuring Dropbox storage" => "Lỗi cấu hình lưu trữ Dropbox ", "Grant access" => "Cấp quyền truy cập", @@ -24,3 +25,4 @@ "SSL root certificates" => "Chứng chỉ SSL root", "Import Root Certificate" => "Nhập Root Certificate" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_CN.GB2312.php b/apps/files_external/l10n/zh_CN.GB2312.php index 47298f8007dbfc9b2fa59ceed1e90334347f357f..3633de6314e2057deaa31e7fbbf863f124d88b74 100644 --- a/apps/files_external/l10n/zh_CN.GB2312.php +++ b/apps/files_external/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "已授予权限", "Error configuring Dropbox storage" => "配置 Dropbox 存储出错", "Grant access" => "授予权限", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL 根证书", "Import Root Certificate" => "导入根证书" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_CN.php b/apps/files_external/l10n/zh_CN.php index 8157923183cc92a1909a3b06cb7c28b1c8ec2089..5e2c2e4fe0c5b80b27f5e700e0061a00caa4a8b7 100644 --- a/apps/files_external/l10n/zh_CN.php +++ b/apps/files_external/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "权限已授予。", "Error configuring Dropbox storage" => "配置Dropbox存储时出错", "Grant access" => "授权", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL根证书", "Import Root Certificate" => "导入根证书" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_HK.php b/apps/files_external/l10n/zh_HK.php index a85b5a03b8a57a72423892c9f6446fb6b36f6087..76e0ed69d27fa72ab2b56f77b254e757b29f262a 100644 --- a/apps/files_external/l10n/zh_HK.php +++ b/apps/files_external/l10n/zh_HK.php @@ -1,5 +1,7 @@ - "群組", "Users" => "用戶", "Delete" => "刪除" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/l10n/zh_TW.php b/apps/files_external/l10n/zh_TW.php index a8314dcef03660b8b3ecd734b66c340f5fb3c610..d85d18a1c321634dd24af794f60119c9d92adc59 100644 --- a/apps/files_external/l10n/zh_TW.php +++ b/apps/files_external/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "允許存取", "Error configuring Dropbox storage" => "設定 Dropbox 儲存時發生錯誤", "Grant access" => "允許存取", @@ -24,3 +25,4 @@ "SSL root certificates" => "SSL 根憑證", "Import Root Certificate" => "匯入根憑證" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_external/lib/amazons3.php b/apps/files_external/lib/amazons3.php index f2dd6108b1a27286d3896f52048f2c5ff9949567..f4d1940b184140ad20e6b659a0cf1d790beacefd 100644 --- a/apps/files_external/lib/amazons3.php +++ b/apps/files_external/lib/amazons3.php @@ -33,10 +33,25 @@ use Aws\S3\Exception\S3Exception; class AmazonS3 extends \OC\Files\Storage\Common { + /** + * @var \Aws\S3\S3Client + */ private $connection; + /** + * @var string + */ private $bucket; + /** + * @var array + */ private static $tmpFiles = array(); + /** + * @var bool + */ private $test = false; + /** + * @var int + */ private $timeout = 15; private function normalizePath($path) { @@ -96,6 +111,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); throw new \Exception("Creation of bucket failed."); } } @@ -129,6 +145,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -150,6 +167,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { $path ); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -184,6 +202,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -221,6 +240,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return opendir('fakedir://amazons3' . $path); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } @@ -249,6 +269,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return $stat; } catch(S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } @@ -269,6 +290,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { return 'dir'; } } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -293,6 +315,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -315,6 +338,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { 'SaveAs' => $tmpFile )); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -361,6 +385,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { 'Key' => $path )); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -398,6 +423,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { $this->testTimeout(); } } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -417,6 +443,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } else { @@ -432,6 +459,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { )); $this->testTimeout(); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } @@ -514,6 +542,7 @@ class AmazonS3 extends \OC\Files\Storage\Common { unlink($tmpFile); } catch (S3Exception $e) { + \OCP\Util::writeLog('files_external', $e->getMessage(), \OCP\Util::ERROR); return false; } } diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index e3a2cf0b30b347a7e136d055e79bdb5896318b65..14e974d65caab802b7b3615cbdf3fa44283c71c7 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 57ff3707d36785bfb54cc5106b519358a8eeb47f..0ef7646ace7526553cb92df6fde9b67d637f8473 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/css/404.css b/apps/files_sharing/css/404.css new file mode 100644 index 0000000000000000000000000000000000000000..2ed81df3b86fc50750c7ff0dad544043cb80ae28 --- /dev/null +++ b/apps/files_sharing/css/404.css @@ -0,0 +1,12 @@ + +#body-login .error-broken-link{ + text-align:left;color:#fff; +} + +#body-login .error-broken-link ul{ + margin:10px 0 10px 0; +} + +#body-login .error-broken-link ul li{ + list-style: disc;list-style-position:inside;cursor:default; +} diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index eb5a6e8cb7fe27e001353a3e348757e60b4638a9..b2efafde4e78868fcd062582bdad7e6c2c15d685 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/af_ZA.php b/apps/files_sharing/l10n/af_ZA.php index 04e194530b1579dd85e08b1ccdacee1964f70d0e..946cc3a5bb81832b2ddb23908ff05bdb91ed2f2f 100644 --- a/apps/files_sharing/l10n/af_ZA.php +++ b/apps/files_sharing/l10n/af_ZA.php @@ -1,3 +1,5 @@ - "Wagwoord" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ar.php b/apps/files_sharing/l10n/ar.php index 043c7ee1b27781ea5ceb5be6fa4eec1430a0cd3b..ff7b40d16bcde171fa92ce65d9bb974706e660ea 100644 --- a/apps/files_sharing/l10n/ar.php +++ b/apps/files_sharing/l10n/ar.php @@ -1,4 +1,5 @@ - "كلمة المرور", "Submit" => "تطبيق", "%s shared the folder %s with you" => "%s شارك المجلد %s معك", @@ -8,3 +9,4 @@ "Cancel upload" => "إلغاء رفع الملفات", "No preview available for" => "لا يوجد عرض مسبق لـ" ); +$PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_sharing/l10n/bg_BG.php b/apps/files_sharing/l10n/bg_BG.php index 8e719ba23562924b2b957067e2416d615b9e1d0f..1094870fd0fc20648a87bbb25da2e6d50df77541 100644 --- a/apps/files_sharing/l10n/bg_BG.php +++ b/apps/files_sharing/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Парола", "Submit" => "Потвърждение", "%s shared the folder %s with you" => "%s сподели папката %s с Вас", @@ -8,3 +9,4 @@ "Cancel upload" => "Спри качването", "No preview available for" => "Няма наличен преглед за" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/bn_BD.php b/apps/files_sharing/l10n/bn_BD.php index baa0c5c707c8af76dc77ab4de89a2cbcc53093f5..71b948e347ba311b6dd8b13ea07ef25a3d1dc841 100644 --- a/apps/files_sharing/l10n/bn_BD.php +++ b/apps/files_sharing/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "কূটশব্দ", "Submit" => "জমা দিন", "%s shared the folder %s with you" => "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন", @@ -8,3 +9,4 @@ "Cancel upload" => "আপলোড বাতিল কর", "No preview available for" => "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ca.php b/apps/files_sharing/l10n/ca.php index 9d2ab5031c13825586b84f108a69cc2b01812ce7..cbe8f86e253d8eb6aecfffa8b7c7ec1d8cea0882 100644 --- a/apps/files_sharing/l10n/ca.php +++ b/apps/files_sharing/l10n/ca.php @@ -1,7 +1,14 @@ - "la contrasenya és incorrecta. Intenteu-ho de nou.", "Password" => "Contrasenya", "Submit" => "Envia", +"Sorry, this link doesn’t seem to work anymore." => "Aquest enllaç sembla que no funciona.", +"Reasons might be:" => "Les raons podrien ser:", +"the item was removed" => "l'element ha estat eliminat", +"the link expired" => "l'enllaç ha vençut", +"sharing is disabled" => "s'ha desactivat la compartició", +"For more info, please ask the person who sent this link." => "Per més informació contacteu amb qui us ha enviat l'enllaç.", "%s shared the folder %s with you" => "%s ha compartit la carpeta %s amb vós", "%s shared the file %s with you" => "%s ha compartit el fitxer %s amb vós", "Download" => "Baixa", @@ -9,3 +16,4 @@ "Cancel upload" => "Cancel·la la pujada", "No preview available for" => "No hi ha vista prèvia disponible per a" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/cs_CZ.php b/apps/files_sharing/l10n/cs_CZ.php index a57764a18bc49a646370a74e12197b5486914a15..7258dedcf6d76c47e81942539cb89a8ca978ca29 100644 --- a/apps/files_sharing/l10n/cs_CZ.php +++ b/apps/files_sharing/l10n/cs_CZ.php @@ -1,6 +1,14 @@ - "Heslo není správné. Zkuste to znovu.", "Password" => "Heslo", "Submit" => "Odeslat", +"Sorry, this link doesn’t seem to work anymore." => "Je nám líto, ale tento odkaz již není funkční.", +"Reasons might be:" => "Možné důvody:", +"the item was removed" => "položka byla odebrána", +"the link expired" => "platnost odkazu vypršela", +"sharing is disabled" => "sdílení je zakázané", +"For more info, please ask the person who sent this link." => "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz.", "%s shared the folder %s with you" => "%s s Vámi sdílí složku %s", "%s shared the file %s with you" => "%s s Vámi sdílí soubor %s", "Download" => "Stáhnout", @@ -8,3 +16,4 @@ "Cancel upload" => "Zrušit odesílání", "No preview available for" => "Náhled není dostupný pro" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/cy_GB.php b/apps/files_sharing/l10n/cy_GB.php index 6ff3e274c39af1ceaaf70d0ea43178bcb3ac90c5..66fbc4e1d1c3f249e88eacce8391967c75e78dbe 100644 --- a/apps/files_sharing/l10n/cy_GB.php +++ b/apps/files_sharing/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Cyfrinair", "Submit" => "Cyflwyno", "%s shared the folder %s with you" => "Rhannodd %s blygell %s â chi", @@ -8,3 +9,4 @@ "Cancel upload" => "Diddymu llwytho i fyny", "No preview available for" => "Does dim rhagolwg ar gael ar gyfer" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_sharing/l10n/da.php b/apps/files_sharing/l10n/da.php index e3e469a4e51bce6edd12fc221806345b09873091..0ca0f38161a38836f4858b9dec22d062d2ac2015 100644 --- a/apps/files_sharing/l10n/da.php +++ b/apps/files_sharing/l10n/da.php @@ -1,6 +1,14 @@ - "Kodeordet er forkert. Prøv igen.", "Password" => "Kodeord", "Submit" => "Send", +"Sorry, this link doesn’t seem to work anymore." => "Desværre, dette link ser ikke ud til at fungerer længere.", +"Reasons might be:" => "Årsagen kan være:", +"the item was removed" => "Filen blev fjernet", +"the link expired" => "linket udløb", +"sharing is disabled" => "deling er deaktiveret", +"For more info, please ask the person who sent this link." => "For yderligere information, kontakt venligst personen der sendte linket. ", "%s shared the folder %s with you" => "%s delte mappen %s med dig", "%s shared the file %s with you" => "%s delte filen %s med dig", "Download" => "Download", @@ -8,3 +16,4 @@ "Cancel upload" => "Fortryd upload", "No preview available for" => "Forhåndsvisning ikke tilgængelig for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de.php b/apps/files_sharing/l10n/de.php index ad2d171aa9f2a0607eff9125550af65e0b94bb50..afed17d8839443916bbd9c10c2c899a57152017f 100644 --- a/apps/files_sharing/l10n/de.php +++ b/apps/files_sharing/l10n/de.php @@ -1,7 +1,14 @@ - "Bitte überprüfen sie Ihr Passwort und versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Absenden", +"Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", +"Reasons might be:" => "Gründe könnten sein:", +"the item was removed" => "Die Elemente wurden entfernt", +"the link expired" => "Der Link ist abgelaufen", +"sharing is disabled" => "Teilen ist deaktiviert", +"For more info, please ask the person who sent this link." => "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat.", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Dir geteilt", "%s shared the file %s with you" => "%s hat die Datei %s mit Dir geteilt", "Download" => "Download", @@ -9,3 +16,4 @@ "Cancel upload" => "Upload abbrechen", "No preview available for" => "Es ist keine Vorschau verfügbar für" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/de_DE.php b/apps/files_sharing/l10n/de_DE.php index cac7b7591d66f560cca368112db490c8c812310d..1bd24f9d9c4bf47ebb1020c2f4a14e3b256a617a 100644 --- a/apps/files_sharing/l10n/de_DE.php +++ b/apps/files_sharing/l10n/de_DE.php @@ -1,7 +1,14 @@ - "Das Passwort ist falsch. Bitte versuchen Sie es erneut.", "Password" => "Passwort", "Submit" => "Bestätigen", +"Sorry, this link doesn’t seem to work anymore." => "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren.", +"Reasons might be:" => "Gründe könnten sein:", +"the item was removed" => "Das Element wurde entfernt", +"the link expired" => "Der Link ist abgelaufen", +"sharing is disabled" => "Teilen ist deaktiviert", +"For more info, please ask the person who sent this link." => "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat.", "%s shared the folder %s with you" => "%s hat den Ordner %s mit Ihnen geteilt", "%s shared the file %s with you" => "%s hat die Datei %s mit Ihnen geteilt", "Download" => "Herunterladen", @@ -9,3 +16,4 @@ "Cancel upload" => "Upload abbrechen", "No preview available for" => "Es ist keine Vorschau verfügbar für" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/el.php b/apps/files_sharing/l10n/el.php index b7b893537186f831731d6491ee43e00c1a9b17bd..93486a831b1972921f716e5deeebfa5d83d7a928 100644 --- a/apps/files_sharing/l10n/el.php +++ b/apps/files_sharing/l10n/el.php @@ -1,6 +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" => "Λήψη", @@ -8,3 +16,4 @@ "Cancel upload" => "Ακύρωση αποστολής", "No preview available for" => "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/en@pirate.php b/apps/files_sharing/l10n/en@pirate.php index cb40c5a168088bf194258df39224b23268a651ee..a60f1fe72f21bbd77cf7d26638589765ba881bb2 100644 --- a/apps/files_sharing/l10n/en@pirate.php +++ b/apps/files_sharing/l10n/en@pirate.php @@ -1,4 +1,5 @@ - "Secret Code", "Submit" => "Submit", "%s shared the folder %s with you" => "%s shared the folder %s with you", @@ -6,3 +7,4 @@ "Download" => "Download", "No preview available for" => "No preview available for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/eo.php b/apps/files_sharing/l10n/eo.php index d3ca5370a2c7947efa339341143c66b2d8ecbcf6..70e703bda91a9ad41709c0aa7614ffcc5e809d91 100644 --- a/apps/files_sharing/l10n/eo.php +++ b/apps/files_sharing/l10n/eo.php @@ -1,4 +1,5 @@ - "Pasvorto", "Submit" => "Sendi", "%s shared the folder %s with you" => "%s kunhavigis la dosierujon %s kun vi", @@ -8,3 +9,4 @@ "Cancel upload" => "Nuligi alŝuton", "No preview available for" => "Ne haveblas antaŭvido por" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es.php b/apps/files_sharing/l10n/es.php index 1b65cf0c1903b13b8df0c056805fc1c55ff51207..1f238d083fbdb07945ba2980ee1266b34f71c460 100644 --- a/apps/files_sharing/l10n/es.php +++ b/apps/files_sharing/l10n/es.php @@ -1,7 +1,14 @@ - "La contraseña introducida es errónea. Inténtelo de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", +"Sorry, this link doesn’t seem to work anymore." => "Este enlace parece no funcionar más.", +"Reasons might be:" => "Las causas podrían ser:", +"the item was removed" => "el elemento fue eliminado", +"the link expired" => "el enlace expiró", +"sharing is disabled" => "compartir está desactivado", +"For more info, please ask the person who sent this link." => "Para mayor información, contacte a la persona que le envió el enlace.", "%s shared the folder %s with you" => "%s compartió la carpeta %s contigo", "%s shared the file %s with you" => "%s compartió el fichero %s contigo", "Download" => "Descargar", @@ -9,3 +16,4 @@ "Cancel upload" => "Cancelar subida", "No preview available for" => "No hay vista previa disponible para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/es_AR.php b/apps/files_sharing/l10n/es_AR.php index 90bfe704d22a8d102ba53af9d325c1dfa20e1c46..fed0b1e7b30f9b4ed4520296b79b3ca1f23b14bb 100644 --- a/apps/files_sharing/l10n/es_AR.php +++ b/apps/files_sharing/l10n/es_AR.php @@ -1,4 +1,5 @@ - "La contraseña no es correcta. Probá de nuevo.", "Password" => "Contraseña", "Submit" => "Enviar", @@ -9,3 +10,4 @@ "Cancel upload" => "Cancelar subida", "No preview available for" => "La vista preliminar no está disponible para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/et_EE.php b/apps/files_sharing/l10n/et_EE.php index 78fe436398c7d652a5b07c69a85eaaee173ca1a7..fe230902ff1b9f75cb727b7094b41c04fbb9f8d1 100644 --- a/apps/files_sharing/l10n/et_EE.php +++ b/apps/files_sharing/l10n/et_EE.php @@ -1,7 +1,14 @@ - "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", @@ -9,3 +16,4 @@ "Cancel upload" => "Tühista üleslaadimine", "No preview available for" => "Eelvaadet pole saadaval" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/eu.php b/apps/files_sharing/l10n/eu.php index 7a4559cb6556582498caa6127dda0e24fa5b6fb2..8e13c24a9267bb5ba9425cbb0f1348b4388b8d7f 100644 --- a/apps/files_sharing/l10n/eu.php +++ b/apps/files_sharing/l10n/eu.php @@ -1,4 +1,6 @@ - "Pasahitza ez da egokia. Saiatu berriro.", "Password" => "Pasahitza", "Submit" => "Bidali", "%s shared the folder %s with you" => "%sk zurekin %s karpeta elkarbanatu du", @@ -8,3 +10,4 @@ "Cancel upload" => "Ezeztatu igoera", "No preview available for" => "Ez dago aurrebista eskuragarririk hauentzat " ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/fa.php b/apps/files_sharing/l10n/fa.php index 7a744c8463d5cfd44fc1f9b553ad12f46699102f..48888f798a0a1e505b8ed09b1de3994d277c6b36 100644 --- a/apps/files_sharing/l10n/fa.php +++ b/apps/files_sharing/l10n/fa.php @@ -1,4 +1,5 @@ - "رمزعبور اشتباه می باشد. دوباره امتحان کنید.", "Password" => "گذرواژه", "Submit" => "ثبت", @@ -9,3 +10,4 @@ "Cancel upload" => "متوقف کردن بار گذاری", "No preview available for" => "هیچگونه پیش نمایشی موجود نیست" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/fi_FI.php b/apps/files_sharing/l10n/fi_FI.php index 370cbd987445eb8f44be7e73622b8e2c28a455a6..42905be57a686d0e48c543442683b9c80a8c58be 100644 --- a/apps/files_sharing/l10n/fi_FI.php +++ b/apps/files_sharing/l10n/fi_FI.php @@ -1,7 +1,14 @@ - "Väärä salasana. Yritä uudelleen.", "Password" => "Salasana", "Submit" => "Lähetä", +"Sorry, this link doesn’t seem to work anymore." => "Valitettavasti linkki ei vaikuta enää toimivan.", +"Reasons might be:" => "Mahdollisia syitä:", +"the item was removed" => "kohde poistettiin", +"the link expired" => "linkki vanheni", +"sharing is disabled" => "jakaminen on poistettu käytöstä", +"For more info, please ask the person who sent this link." => "Kysy lisätietoja henkilöltä, jolta sait linkin.", "%s shared the folder %s with you" => "%s jakoi kansion %s kanssasi", "%s shared the file %s with you" => "%s jakoi tiedoston %s kanssasi", "Download" => "Lataa", @@ -9,3 +16,4 @@ "Cancel upload" => "Peru lähetys", "No preview available for" => "Ei esikatselua kohteelle" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/fr.php b/apps/files_sharing/l10n/fr.php index 32aa6e0065aeadee4a74256d1a34503ddd4dd616..b263cd87959d17c21270c8e6b03ff3fea41826a1 100644 --- a/apps/files_sharing/l10n/fr.php +++ b/apps/files_sharing/l10n/fr.php @@ -1,4 +1,5 @@ - "Le mot de passe est incorrect. Veuillez réessayer.", "Password" => "Mot de passe", "Submit" => "Envoyer", @@ -9,3 +10,4 @@ "Cancel upload" => "Annuler l'envoi", "No preview available for" => "Pas d'aperçu disponible pour" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/gl.php b/apps/files_sharing/l10n/gl.php index 2d8de8e101972f8928909d8be11db12962e2da47..66b1f0e5ffce5aefa5e9e4fa23836c76c4abe83e 100644 --- a/apps/files_sharing/l10n/gl.php +++ b/apps/files_sharing/l10n/gl.php @@ -1,7 +1,14 @@ - "O contrasinal é incorrecto. Ténteo de novo.", "Password" => "Contrasinal", "Submit" => "Enviar", +"Sorry, this link doesn’t seem to work anymore." => "Semella que esta ligazón non funciona.", +"Reasons might be:" => "As razóns poderían ser:", +"the item was removed" => "o elemento foi retirado", +"the link expired" => "a ligazón caducou", +"sharing is disabled" => "foi desactivada a compartición", +"For more info, please ask the person who sent this link." => "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón.", "%s shared the folder %s with you" => "%s compartiu o cartafol %s con vostede", "%s shared the file %s with you" => "%s compartiu o ficheiro %s con vostede", "Download" => "Descargar", @@ -9,3 +16,4 @@ "Cancel upload" => "Cancelar o envío", "No preview available for" => "Sen vista previa dispoñíbel para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/he.php b/apps/files_sharing/l10n/he.php index 41fc314f3c2c07bd266f116cc773b812dd7c26ab..f8b304898ce75dda95ca1b0c24f28e0387d17a9a 100644 --- a/apps/files_sharing/l10n/he.php +++ b/apps/files_sharing/l10n/he.php @@ -1,4 +1,5 @@ - "סיסמא", "Submit" => "שליחה", "%s shared the folder %s with you" => "%s שיתף עמך את התיקייה %s", @@ -8,3 +9,4 @@ "Cancel upload" => "ביטול ההעלאה", "No preview available for" => "אין תצוגה מקדימה זמינה עבור" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hi.php b/apps/files_sharing/l10n/hi.php index 560df54fc94879dc4a36194c970aa8fc1400a6a7..74a2c320438158d5d3dfb359556d07927acc09bc 100644 --- a/apps/files_sharing/l10n/hi.php +++ b/apps/files_sharing/l10n/hi.php @@ -1,3 +1,5 @@ - "पासवर्ड" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hr.php b/apps/files_sharing/l10n/hr.php index d5763a8ddb8f9ef48be2a8cac0016a7f484c9987..87eb9567067f2df42fbbaea6bd149c5e7adeb44f 100644 --- a/apps/files_sharing/l10n/hr.php +++ b/apps/files_sharing/l10n/hr.php @@ -1,7 +1,9 @@ - "Lozinka", "Submit" => "Pošalji", "Download" => "Preuzimanje", "Upload" => "Učitaj", "Cancel upload" => "Prekini upload" ); +$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/hu_HU.php b/apps/files_sharing/l10n/hu_HU.php index 15ff6ff3c2bd90c9c4ed3d2a70ab687e339d1325..7ef69b1e0b67cb7a9a70bada4807c0f8f91918b6 100644 --- a/apps/files_sharing/l10n/hu_HU.php +++ b/apps/files_sharing/l10n/hu_HU.php @@ -1,7 +1,14 @@ - "A megadott jelszó nem megfelelő. Próbálja újra!", "Password" => "Jelszó", "Submit" => "Elküld", +"Sorry, this link doesn’t seem to work anymore." => "Sajnos úgy tűnik, ez a link már nem működik.", +"Reasons might be:" => "Ennek az oka a következő lehet:", +"the item was removed" => "az állományt időközben eltávolították", +"the link expired" => "lejárt a link érvényességi ideje", +"sharing is disabled" => "letiltásra került a megosztás", +"For more info, please ask the person who sent this link." => "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!", "%s shared the folder %s with you" => "%s megosztotta Önnel ezt a mappát: %s", "%s shared the file %s with you" => "%s megosztotta Önnel ezt az állományt: %s", "Download" => "Letöltés", @@ -9,3 +16,4 @@ "Cancel upload" => "A feltöltés megszakítása", "No preview available for" => "Nem áll rendelkezésre előnézet ehhez: " ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/hy.php b/apps/files_sharing/l10n/hy.php index 438e8a7433cfde7ccdab2b0e2a3c466fb56a415f..d4cb416f45a895f0c390032f0445d94956955488 100644 --- a/apps/files_sharing/l10n/hy.php +++ b/apps/files_sharing/l10n/hy.php @@ -1,4 +1,6 @@ - "Հաստատել", "Download" => "Բեռնել" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ia.php b/apps/files_sharing/l10n/ia.php index 01acba5108a1826f84e46f9b971c566bec173b33..5112501073d965f6d1603eec60d9b855238936cc 100644 --- a/apps/files_sharing/l10n/ia.php +++ b/apps/files_sharing/l10n/ia.php @@ -1,6 +1,8 @@ - "Contrasigno", "Submit" => "Submitter", "Download" => "Discargar", "Upload" => "Incargar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/id.php b/apps/files_sharing/l10n/id.php index cc6e591834ca19ec3db0aafa8ca420422d73bd4e..a4d73bd2b7527df7f490ba4b671aff7692dd42a0 100644 --- a/apps/files_sharing/l10n/id.php +++ b/apps/files_sharing/l10n/id.php @@ -1,4 +1,5 @@ - "Sandi", "Submit" => "Kirim", "%s shared the folder %s with you" => "%s membagikan folder %s dengan Anda", @@ -8,3 +9,4 @@ "Cancel upload" => "Batal pengunggahan", "No preview available for" => "Tidak ada pratinjau tersedia untuk" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/is.php b/apps/files_sharing/l10n/is.php index 222459f7a00aa366f407b6de219db6cf52f2cfd4..05241d3f9e6cc8c85ff67bcd6b3ac6193853daf9 100644 --- a/apps/files_sharing/l10n/is.php +++ b/apps/files_sharing/l10n/is.php @@ -1,4 +1,5 @@ - "Lykilorð", "Submit" => "Senda", "%s shared the folder %s with you" => "%s deildi möppunni %s með þér", @@ -8,3 +9,4 @@ "Cancel upload" => "Hætta við innsendingu", "No preview available for" => "Yfirlit ekki í boði fyrir" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/it.php b/apps/files_sharing/l10n/it.php index cf25c53ca388923aedaa8fa4d1e37c6f5cbf7613..a611e0641c8c09ca1b06a2ef3682e908fef4d14a 100644 --- a/apps/files_sharing/l10n/it.php +++ b/apps/files_sharing/l10n/it.php @@ -1,7 +1,14 @@ - "La password è errata. Prova ancora.", "Password" => "Password", "Submit" => "Invia", +"Sorry, this link doesn’t seem to work anymore." => "Spiacenti, questo collegamento sembra non essere più attivo.", +"Reasons might be:" => "I motivi potrebbero essere:", +"the item was removed" => "l'elemento è stato rimosso", +"the link expired" => "il collegamento è scaduto", +"sharing is disabled" => "la condivisione è disabilitata", +"For more info, please ask the person who sent this link." => "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento.", "%s shared the folder %s with you" => "%s ha condiviso la cartella %s con te", "%s shared the file %s with you" => "%s ha condiviso il file %s con te", "Download" => "Scarica", @@ -9,3 +16,4 @@ "Cancel upload" => "Annulla il caricamento", "No preview available for" => "Nessuna anteprima disponibile per" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ja_JP.php b/apps/files_sharing/l10n/ja_JP.php index d2bc2d11245a5c17f1f0470efd9a42db7ee9180f..4f7d5b31c2f70792133008f3a0b57128bd0173ed 100644 --- a/apps/files_sharing/l10n/ja_JP.php +++ b/apps/files_sharing/l10n/ja_JP.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" => "ダウンロード", @@ -9,3 +16,4 @@ "Cancel upload" => "アップロードをキャンセル", "No preview available for" => "プレビューはありません" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ka.php b/apps/files_sharing/l10n/ka.php index 0270d5d6f8c6a5516cb1e294839a69882573385e..a9b046e03b6d54a307afa37a01691770a20fd49c 100644 --- a/apps/files_sharing/l10n/ka.php +++ b/apps/files_sharing/l10n/ka.php @@ -1,4 +1,6 @@ - "პაროლი", "Download" => "გადმოწერა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ka_GE.php b/apps/files_sharing/l10n/ka_GE.php index c88cc59cf8dc88127a32640577f206814af037d3..a5a80b3c5a19a931ea15fae0ba861248f806d286 100644 --- a/apps/files_sharing/l10n/ka_GE.php +++ b/apps/files_sharing/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "პაროლი", "Submit" => "გაგზავნა", "%s shared the folder %s with you" => "%s–მა გაგიზიარათ ფოლდერი %s", @@ -8,3 +9,4 @@ "Cancel upload" => "ატვირთვის გაუქმება", "No preview available for" => "წინასწარი დათვალიერება შეუძლებელია" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ko.php b/apps/files_sharing/l10n/ko.php index d2cf52447f17cdd8f0fc02fa32c02e66cb65ebcb..f3a94a70979a25676f57553b41abb90b41c48446 100644 --- a/apps/files_sharing/l10n/ko.php +++ b/apps/files_sharing/l10n/ko.php @@ -1,4 +1,5 @@ - "암호", "Submit" => "제출", "%s shared the folder %s with you" => "%s 님이 폴더 %s을(를) 공유하였습니다", @@ -8,3 +9,4 @@ "Cancel upload" => "업로드 취소", "No preview available for" => "다음 항목을 미리 볼 수 없음:" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/ku_IQ.php b/apps/files_sharing/l10n/ku_IQ.php index 576671aaa754d8749db5f7ffdab06fdf49f0d660..55576a19c36d797a1723cb4c67bd8da8a28ce287 100644 --- a/apps/files_sharing/l10n/ku_IQ.php +++ b/apps/files_sharing/l10n/ku_IQ.php @@ -1,4 +1,5 @@ - "وشەی تێپەربو", "Submit" => "ناردن", "%s shared the folder %s with you" => "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ", @@ -7,3 +8,4 @@ "Upload" => "بارکردن", "No preview available for" => "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/lb.php b/apps/files_sharing/l10n/lb.php index a604affee64501a4c0ee7a60c36534e2e80a9eb9..d37a1d9d22a35b75c0a757520c549c8f9c7e0c54 100644 --- a/apps/files_sharing/l10n/lb.php +++ b/apps/files_sharing/l10n/lb.php @@ -1,4 +1,5 @@ - "Den Passwuert ass incorrect. Probeier ed nach eng keier.", "Password" => "Passwuert", "Submit" => "Fortschécken", @@ -9,3 +10,4 @@ "Cancel upload" => "Upload ofbriechen", "No preview available for" => "Keeng Preview do fir" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/lt_LT.php b/apps/files_sharing/l10n/lt_LT.php index 0f9347377c9176dc60fc5a4ae288481ee6151a15..5d0e58e2fb295dc0023bd474c08b839542cb5aca 100644 --- a/apps/files_sharing/l10n/lt_LT.php +++ b/apps/files_sharing/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Slaptažodis", "Submit" => "Išsaugoti", "%s shared the folder %s with you" => "%s pasidalino su jumis %s aplanku", @@ -8,3 +9,4 @@ "Cancel upload" => "Atšaukti siuntimą", "No preview available for" => "Peržiūra nėra galima" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/lv.php b/apps/files_sharing/l10n/lv.php index be021b8e7a04720373b1f22d676136194cb45bb3..0eb04fb966f34744d712a922116d2dec18355b66 100644 --- a/apps/files_sharing/l10n/lv.php +++ b/apps/files_sharing/l10n/lv.php @@ -1,4 +1,5 @@ - "Parole", "Submit" => "Iesniegt", "%s shared the folder %s with you" => "%s ar jums dalījās ar mapi %s", @@ -8,3 +9,4 @@ "Cancel upload" => "Atcelt augšupielādi", "No preview available for" => "Nav pieejams priekšskatījums priekš" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/mk.php b/apps/files_sharing/l10n/mk.php index ed04035ea5da9d6610efc80f1dd962c6d9cd0b96..c913b2beaf74494e6dfe22e3c5774cbac3250311 100644 --- a/apps/files_sharing/l10n/mk.php +++ b/apps/files_sharing/l10n/mk.php @@ -1,4 +1,5 @@ - "Лозинка", "Submit" => "Прати", "%s shared the folder %s with you" => "%s ја сподели папката %s со Вас", @@ -8,3 +9,4 @@ "Cancel upload" => "Откажи прикачување", "No preview available for" => "Нема достапно преглед за" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/apps/files_sharing/l10n/ms_MY.php b/apps/files_sharing/l10n/ms_MY.php index 0a6a05b77815f008a1d80f28248182829b7fec5d..0a3d08bbc176d341a836176dd7de39a0d5dd9ee0 100644 --- a/apps/files_sharing/l10n/ms_MY.php +++ b/apps/files_sharing/l10n/ms_MY.php @@ -1,7 +1,9 @@ - "Kata laluan", "Submit" => "Hantar", "Download" => "Muat turun", "Upload" => "Muat naik", "Cancel upload" => "Batal muat naik" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/my_MM.php b/apps/files_sharing/l10n/my_MM.php index 4b37ab8b48a75365370546eab07a0037df38d5f8..f44010004cdb04c290cf23b461e454370eac0ab1 100644 --- a/apps/files_sharing/l10n/my_MM.php +++ b/apps/files_sharing/l10n/my_MM.php @@ -1,5 +1,7 @@ - "စကားဝှက်", "Submit" => "ထည့်သွင်းမည်", "Download" => "ဒေါင်းလုတ်" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/nb_NO.php b/apps/files_sharing/l10n/nb_NO.php index 65eadd3ccaec4477e5c2f59a755830d1c6c19c1b..dd8a8edf31388bd0d34fb8e43c3b3cf4076fc8ff 100644 --- a/apps/files_sharing/l10n/nb_NO.php +++ b/apps/files_sharing/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Passordet er feil. Prøv på nytt.", "Password" => "Passord", "Submit" => "Send inn", @@ -9,3 +10,4 @@ "Cancel upload" => "Avbryt opplasting", "No preview available for" => "Forhåndsvisning ikke tilgjengelig for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/nl.php b/apps/files_sharing/l10n/nl.php index 90f2f2290ff64996caba2631d09e65e225903d85..9c46a1ab4b3225a5efa80674fd87eb8d8f68de15 100644 --- a/apps/files_sharing/l10n/nl.php +++ b/apps/files_sharing/l10n/nl.php @@ -1,7 +1,14 @@ - "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", @@ -9,3 +16,4 @@ "Cancel upload" => "Upload afbreken", "No preview available for" => "Geen voorbeeldweergave beschikbaar voor" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/nn_NO.php b/apps/files_sharing/l10n/nn_NO.php index afa3eabe8cf3dafc4af74a89cf6063d533bfc5a8..bcb6538b09f22b1a6b880ff63f8eec2b56239185 100644 --- a/apps/files_sharing/l10n/nn_NO.php +++ b/apps/files_sharing/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Passord", "Submit" => "Send", "%s shared the folder %s with you" => "%s delte mappa %s med deg", @@ -8,3 +9,4 @@ "Cancel upload" => "Avbryt opplasting", "No preview available for" => "Inga førehandsvising tilgjengeleg for" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/oc.php b/apps/files_sharing/l10n/oc.php index 4ec48b151a83a8809c00edb4e4dbbd712f485d18..493ddb4dfd3d31b038654563bbecca48ee16ab28 100644 --- a/apps/files_sharing/l10n/oc.php +++ b/apps/files_sharing/l10n/oc.php @@ -1,7 +1,9 @@ - "Senhal", "Submit" => "Sosmetre", "Download" => "Avalcarga", "Upload" => "Amontcarga", "Cancel upload" => " Anulla l'amontcargar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/pl.php b/apps/files_sharing/l10n/pl.php index 39039da77b6d73f8165c466b4f3b61b0b1dfde45..43c7e2e31447d69a92ecbccf4f37b96fb5d869f7 100644 --- a/apps/files_sharing/l10n/pl.php +++ b/apps/files_sharing/l10n/pl.php @@ -1,6 +1,14 @@ - "To hasło jest niewłaściwe. Spróbuj ponownie.", "Password" => "Hasło", "Submit" => "Wyślij", +"Sorry, this link doesn’t seem to work anymore." => "Przepraszamy ale wygląda na to, że ten link już nie działa.", +"Reasons might be:" => "Możliwe powody:", +"the item was removed" => "element został usunięty", +"the link expired" => "link wygasł", +"sharing is disabled" => "Udostępnianie jest wyłączone", +"For more info, please ask the person who sent this link." => "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link.", "%s shared the folder %s with you" => "%s współdzieli folder z tobą %s", "%s shared the file %s with you" => "%s współdzieli z tobą plik %s", "Download" => "Pobierz", @@ -8,3 +16,4 @@ "Cancel upload" => "Anuluj wysyłanie", "No preview available for" => "Podgląd nie jest dostępny dla" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_sharing/l10n/pt_BR.php b/apps/files_sharing/l10n/pt_BR.php index c82989857a9965b2958fc8672e54c88e3bcb2924..9fc1cacf7cbddcc42dc45a312d4dc497e3488fde 100644 --- a/apps/files_sharing/l10n/pt_BR.php +++ b/apps/files_sharing/l10n/pt_BR.php @@ -1,7 +1,14 @@ - "Senha incorreta. Tente novamente.", "Password" => "Senha", "Submit" => "Submeter", +"Sorry, this link doesn’t seem to work anymore." => "Desculpe, este link parece não mais funcionar.", +"Reasons might be:" => "As razões podem ser:", +"the item was removed" => "o item foi removido", +"the link expired" => "o link expirou", +"sharing is disabled" => "compartilhamento está desativada", +"For more info, please ask the person who sent this link." => "Para mais informações, por favor, pergunte a pessoa que enviou este link.", "%s shared the folder %s with you" => "%s compartilhou a pasta %s com você", "%s shared the file %s with you" => "%s compartilhou o arquivo %s com você", "Download" => "Baixar", @@ -9,3 +16,4 @@ "Cancel upload" => "Cancelar upload", "No preview available for" => "Nenhuma visualização disponível para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/pt_PT.php b/apps/files_sharing/l10n/pt_PT.php index 8b02e73606223b3f819716f9355f1e181f5b75ef..73dc2a3e1f35f742a803c79cb126d29da36d6c27 100644 --- a/apps/files_sharing/l10n/pt_PT.php +++ b/apps/files_sharing/l10n/pt_PT.php @@ -1,7 +1,14 @@ - "Password errada, por favor tente de novo", "Password" => "Password", "Submit" => "Submeter", +"Sorry, this link doesn’t seem to work anymore." => "Desculpe, mas este link parece não estar a funcionar.", +"Reasons might be:" => "As razões poderão ser:", +"the item was removed" => "O item foi removido", +"the link expired" => "O link expirou", +"sharing is disabled" => "A partilha está desativada", +"For more info, please ask the person who sent this link." => "Para mais informações, por favor questione a pessoa que lhe enviou este link", "%s shared the folder %s with you" => "%s partilhou a pasta %s consigo", "%s shared the file %s with you" => "%s partilhou o ficheiro %s consigo", "Download" => "Transferir", @@ -9,3 +16,4 @@ "Cancel upload" => "Cancelar envio", "No preview available for" => "Não há pré-visualização para" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ro.php b/apps/files_sharing/l10n/ro.php index 3197068cdd131f6ce16903f717915e1bb6e21572..d17152ff1b1b300f5cb1a39de7389448b8c096ab 100644 --- a/apps/files_sharing/l10n/ro.php +++ b/apps/files_sharing/l10n/ro.php @@ -1,4 +1,5 @@ - "Parola este incorectă. Încercaţi din nou.", "Password" => "Parolă", "Submit" => "Trimite", @@ -9,3 +10,4 @@ "Cancel upload" => "Anulează încărcarea", "No preview available for" => "Nici o previzualizare disponibilă pentru " ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/apps/files_sharing/l10n/ru.php b/apps/files_sharing/l10n/ru.php index 77332c183f64a75bbf3de9151c7c3cb6f8b9788d..f42f1d9aeb6af6cac2b77168b4d258322787a6ed 100644 --- a/apps/files_sharing/l10n/ru.php +++ b/apps/files_sharing/l10n/ru.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" => "Скачать", @@ -9,3 +16,4 @@ "Cancel upload" => "Отмена загрузки", "No preview available for" => "Предпросмотр недоступен для" ); +$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/ru_RU.php b/apps/files_sharing/l10n/ru_RU.php deleted file mode 100644 index 2cadd163462aaa92e781eb415cde248d47a4d088..0000000000000000000000000000000000000000 --- a/apps/files_sharing/l10n/ru_RU.php +++ /dev/null @@ -1,3 +0,0 @@ - "Загрузка" -); diff --git a/apps/files_sharing/l10n/si_LK.php b/apps/files_sharing/l10n/si_LK.php index 27b9d649a0af5bccde4812ff61a83ce4b353d43a..6135f09213968e899ccfb91531fb17af32a8a381 100644 --- a/apps/files_sharing/l10n/si_LK.php +++ b/apps/files_sharing/l10n/si_LK.php @@ -1,4 +1,5 @@ - "මුර පදය", "Submit" => "යොමු කරන්න", "%s shared the folder %s with you" => "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය", @@ -8,3 +9,4 @@ "Cancel upload" => "උඩුගත කිරීම අත් හරින්න", "No preview available for" => "පූර්වදර්ශනයක් නොමැත" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/sk_SK.php b/apps/files_sharing/l10n/sk_SK.php index 77173b44345c5f3d6def6067d7a45e146f25e879..31ecb28b602f113ab6391df502ee45637a7911fd 100644 --- a/apps/files_sharing/l10n/sk_SK.php +++ b/apps/files_sharing/l10n/sk_SK.php @@ -1,6 +1,14 @@ - "Heslo je chybné. Skúste to znova.", "Password" => "Heslo", "Submit" => "Odoslať", +"Sorry, this link doesn’t seem to work anymore." => "To je nepríjemné, ale tento odkaz už nie je funkčný.", +"Reasons might be:" => "Možné dôvody:", +"the item was removed" => "položka bola presunutá", +"the link expired" => "linke vypršala platnosť", +"sharing is disabled" => "zdieľanie je zakázané", +"For more info, please ask the person who sent this link." => "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz.", "%s shared the folder %s with you" => "%s zdieľa s vami priečinok %s", "%s shared the file %s with you" => "%s zdieľa s vami súbor %s", "Download" => "Sťahovanie", @@ -8,3 +16,4 @@ "Cancel upload" => "Zrušiť odosielanie", "No preview available for" => "Žiaden náhľad k dispozícii pre" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_sharing/l10n/sl.php b/apps/files_sharing/l10n/sl.php index 39d2fca81cb25ca3fcb6aa55b5065edecccaf21f..cbd4f5fea2234b4262c28e0f856e0252dab73c95 100644 --- a/apps/files_sharing/l10n/sl.php +++ b/apps/files_sharing/l10n/sl.php @@ -1,4 +1,5 @@ - "Geslo", "Submit" => "Pošlji", "%s shared the folder %s with you" => "Oseba %s je določila mapo %s za souporabo", @@ -8,3 +9,4 @@ "Cancel upload" => "Prekliči pošiljanje", "No preview available for" => "Predogled ni na voljo za" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_sharing/l10n/sq.php b/apps/files_sharing/l10n/sq.php index 1c0e0aa2bd138347c466a4aa7b026201dce73744..ae29e5738ffdd8f67c3ad72b96a497e55cf09907 100644 --- a/apps/files_sharing/l10n/sq.php +++ b/apps/files_sharing/l10n/sq.php @@ -1,4 +1,5 @@ - "Kodi", "Submit" => "Parashtro", "%s shared the folder %s with you" => "%s ndau me ju dosjen %s", @@ -8,3 +9,4 @@ "Cancel upload" => "Anulo ngarkimin", "No preview available for" => "Shikimi paraprak nuk është i mundur për" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/sr.php b/apps/files_sharing/l10n/sr.php index f893ec0ab422f3139a249a2630a69577481dc8ea..3b97d15419a117e84b76619299eab7ea60e8841f 100644 --- a/apps/files_sharing/l10n/sr.php +++ b/apps/files_sharing/l10n/sr.php @@ -1,7 +1,9 @@ - "Лозинка", "Submit" => "Пошаљи", "Download" => "Преузми", "Upload" => "Отпреми", "Cancel upload" => "Прекини отпремање" ); +$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/sr@latin.php b/apps/files_sharing/l10n/sr@latin.php index c45f711e15f559c362bcfe68c2dd093695a067b7..1a6be6257616931897ee0fdc389ae857264ab058 100644 --- a/apps/files_sharing/l10n/sr@latin.php +++ b/apps/files_sharing/l10n/sr@latin.php @@ -1,6 +1,8 @@ - "Lozinka", "Submit" => "Pošalji", "Download" => "Preuzmi", "Upload" => "Pošalji" ); +$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/sv.php b/apps/files_sharing/l10n/sv.php index dac5e33ec509d32d591401601ccf80c839b771b0..b8a5f8629a6ef8b3a2d13df1efa4bfbd5ab707da 100644 --- a/apps/files_sharing/l10n/sv.php +++ b/apps/files_sharing/l10n/sv.php @@ -1,7 +1,14 @@ - "Lösenordet är fel. Försök igen.", "Password" => "Lösenord", "Submit" => "Skicka", +"Sorry, this link doesn’t seem to work anymore." => "Tyvärr, denna länk verkar inte fungera längre.", +"Reasons might be:" => "Orsaker kan vara:", +"the item was removed" => "objektet togs bort", +"the link expired" => "giltighet för länken har gått ut", +"sharing is disabled" => "delning är inaktiverat", +"For more info, please ask the person who sent this link." => "För mer information, kontakta den person som skickade den här länken.", "%s shared the folder %s with you" => "%s delade mappen %s med dig", "%s shared the file %s with you" => "%s delade filen %s med dig", "Download" => "Ladda ner", @@ -9,3 +16,4 @@ "Cancel upload" => "Avbryt uppladdning", "No preview available for" => "Ingen förhandsgranskning tillgänglig för" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/ta_LK.php b/apps/files_sharing/l10n/ta_LK.php index 6e69855be11d34e8d84940ee5c410e4458bda74c..b4eb0fb7fb84914ce945a9220d6aafdefa541ab1 100644 --- a/apps/files_sharing/l10n/ta_LK.php +++ b/apps/files_sharing/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "கடவுச்சொல்", "Submit" => "சமர்ப்பிக்குக", "%s shared the folder %s with you" => "%s கோப்புறையானது %s உடன் பகிரப்பட்டது", @@ -8,3 +9,4 @@ "Cancel upload" => "பதிவேற்றலை இரத்து செய்க", "No preview available for" => "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/te.php b/apps/files_sharing/l10n/te.php index 1e2eedc684412607f66fba52489aef0edf896b6b..94ca7650e5ffe4b950b95c02dc4d23dfbbdf49ee 100644 --- a/apps/files_sharing/l10n/te.php +++ b/apps/files_sharing/l10n/te.php @@ -1,3 +1,5 @@ - "సంకేతపదం" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/th_TH.php b/apps/files_sharing/l10n/th_TH.php index 608c86d586a872640075786bb72dfc601a870ed4..060bd8bed9472307fa6733aafde4108818138e0b 100644 --- a/apps/files_sharing/l10n/th_TH.php +++ b/apps/files_sharing/l10n/th_TH.php @@ -1,4 +1,5 @@ - "รหัสผ่าน", "Submit" => "ส่ง", "%s shared the folder %s with you" => "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ", @@ -8,3 +9,4 @@ "Cancel upload" => "ยกเลิกการอัพโหลด", "No preview available for" => "ไม่สามารถดูตัวอย่างได้สำหรับ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/tr.php b/apps/files_sharing/l10n/tr.php index 4da9c17c7e8b72783b842cf9ddc2bafc92d55d5d..a5bcff82cf333989387942ca40546049e12352ca 100644 --- a/apps/files_sharing/l10n/tr.php +++ b/apps/files_sharing/l10n/tr.php @@ -1,4 +1,5 @@ - "Parola", "Submit" => "Gönder", "%s shared the folder %s with you" => "%s sizinle paylaşılan %s klasör", @@ -8,3 +9,4 @@ "Cancel upload" => "Yüklemeyi iptal et", "No preview available for" => "Kullanılabilir önizleme yok" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_sharing/l10n/ug.php b/apps/files_sharing/l10n/ug.php index 9f9c7beb4105911ac014b4588e7a1c49421e0008..43ee9f77bcd8198244163019ca3323bb82d3bfdb 100644 --- a/apps/files_sharing/l10n/ug.php +++ b/apps/files_sharing/l10n/ug.php @@ -1,7 +1,9 @@ - "ئىم", "Submit" => "تاپشۇر", "Download" => "چۈشۈر", "Upload" => "يۈكلە", "Cancel upload" => "يۈكلەشتىن ۋاز كەچ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/uk.php b/apps/files_sharing/l10n/uk.php index 8ef7f1bd8adb32a0dd10bae742eac0d6722bdfba..b6a7784c6908ccb1cc16a2f53e3afa98262b4f08 100644 --- a/apps/files_sharing/l10n/uk.php +++ b/apps/files_sharing/l10n/uk.php @@ -1,4 +1,5 @@ - "Пароль", "Submit" => "Передати", "%s shared the folder %s with you" => "%s опублікував каталог %s для Вас", @@ -8,3 +9,4 @@ "Cancel upload" => "Перервати завантаження", "No preview available for" => "Попередній перегляд недоступний для" ); +$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/ur_PK.php b/apps/files_sharing/l10n/ur_PK.php index 745f2f930d193b6c5ab9142a040ea800afa902a1..4f6767c26a136e2c22a894ee0ab5ecd31ccedb3b 100644 --- a/apps/files_sharing/l10n/ur_PK.php +++ b/apps/files_sharing/l10n/ur_PK.php @@ -1,3 +1,5 @@ - "پاسورڈ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_sharing/l10n/vi.php b/apps/files_sharing/l10n/vi.php index d75fb1dc53f0e5223899b3c1ff4324ceaf9703e9..00e8e094c367ded734e2e3b9c352e6f78e678e42 100644 --- a/apps/files_sharing/l10n/vi.php +++ b/apps/files_sharing/l10n/vi.php @@ -1,4 +1,5 @@ - "Mật khẩu", "Submit" => "Xác nhận", "%s shared the folder %s with you" => "%s đã chia sẻ thư mục %s với bạn", @@ -8,3 +9,4 @@ "Cancel upload" => "Hủy upload", "No preview available for" => "Không có xem trước cho" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_CN.GB2312.php b/apps/files_sharing/l10n/zh_CN.GB2312.php index 2dd79ec38d4fb8a3cf3255f36c286eceb9076d2d..5c426672c886b455c8bcda966ab428b5d34c1a46 100644 --- a/apps/files_sharing/l10n/zh_CN.GB2312.php +++ b/apps/files_sharing/l10n/zh_CN.GB2312.php @@ -1,6 +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" => "下载", @@ -8,3 +16,4 @@ "Cancel upload" => "取消上传", "No preview available for" => "没有预览可用于" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_CN.php b/apps/files_sharing/l10n/zh_CN.php index c7fa08b81f03277826543f42b244743c931087e9..37898a1cd0069be5fdead9e798e70ac72c11ccdf 100644 --- a/apps/files_sharing/l10n/zh_CN.php +++ b/apps/files_sharing/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "密码", "Submit" => "提交", "%s shared the folder %s with you" => "%s与您共享了%s文件夹", @@ -8,3 +9,4 @@ "Cancel upload" => "取消上传", "No preview available for" => "没有预览" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_HK.php b/apps/files_sharing/l10n/zh_HK.php index 8f9b7900c2ccf2f839d665ec778b14d67121370c..434420264eade4bfc3a2d91b59d8ecf71ff9fde8 100644 --- a/apps/files_sharing/l10n/zh_HK.php +++ b/apps/files_sharing/l10n/zh_HK.php @@ -1,5 +1,7 @@ - "密碼", "Download" => "下載", "Upload" => "上傳" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/l10n/zh_TW.php b/apps/files_sharing/l10n/zh_TW.php index b172879469fe1dffd90f686829d2a38b79d2782d..b950cbf8c9ec086644cf615e106988e347ec7125 100644 --- a/apps/files_sharing/l10n/zh_TW.php +++ b/apps/files_sharing/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "密碼", "Submit" => "送出", "%s shared the folder %s with you" => "%s 和您分享了資料夾 %s ", @@ -8,3 +9,4 @@ "Cancel upload" => "取消上傳", "No preview available for" => "無法預覽" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_sharing/public.php b/apps/files_sharing/public.php index 3f8e29345a7f2e0118986a6afe4a66f2ed90537c..741ab145384b3d2745613cab1b26001156809632 100644 --- a/apps/files_sharing/public.php +++ b/apps/files_sharing/public.php @@ -234,6 +234,12 @@ if (isset($path)) { } else { OCP\Util::writeLog('share', 'could not resolve linkItem', \OCP\Util::DEBUG); } + +$errorTemplate = new OCP\Template('files_sharing', 'part.404', ''); +$errorContent = $errorTemplate->fetchPage(); + header('HTTP/1.0 404 Not Found'); +OCP\Util::addStyle('files_sharing', '404'); $tmpl = new OCP\Template('', '404', 'guest'); +$tmpl->assign('content', $errorContent); $tmpl->printPage(); diff --git a/apps/files_sharing/templates/part.404.php b/apps/files_sharing/templates/part.404.php new file mode 100644 index 0000000000000000000000000000000000000000..b5152e1511a988fdff7dff2e1a3f3dc3c96c7dea --- /dev/null +++ b/apps/files_sharing/templates/part.404.php @@ -0,0 +1,12 @@ +
    + +
\ No newline at end of file diff --git a/apps/files_trashbin/ajax/delete.php b/apps/files_trashbin/ajax/delete.php index 16c39ab385382507cdd4a6069c31a2d4cca66805..92361b65f63e01fc7120d0cf6a622c53e2671d71 100644 --- a/apps/files_trashbin/ajax/delete.php +++ b/apps/files_trashbin/ajax/delete.php @@ -13,7 +13,7 @@ $success = array(); $i = 0; foreach ($list as $file) { - if ( $dirlisting=='0') { + if ( $dirlisting === '0') { $delimiter = strrpos($file, '.d'); $filename = substr($file, 0, $delimiter); $timestamp = substr($file, $delimiter+2); diff --git a/apps/files_trashbin/ajax/isEmpty.php b/apps/files_trashbin/ajax/isEmpty.php new file mode 100644 index 0000000000000000000000000000000000000000..2e54c7e77b989ec2c518201b76eea845d0930763 --- /dev/null +++ b/apps/files_trashbin/ajax/isEmpty.php @@ -0,0 +1,14 @@ + array("isEmpty" => $trashStatus))); + + diff --git a/apps/files_trashbin/ajax/undelete.php b/apps/files_trashbin/ajax/undelete.php index 9d78f166765b13f44344bfb1a3361cd8aec6f7d2..e39004cc0d54ee5758e6d6251d0690b82d1c7f68 100644 --- a/apps/files_trashbin/ajax/undelete.php +++ b/apps/files_trashbin/ajax/undelete.php @@ -12,7 +12,7 @@ $success = array(); $i = 0; foreach ($list as $file) { - if ( $dirlisting=='0') { + if ( $dirlisting === '0') { $delimiter = strrpos($file, '.d'); $filename = substr($file, 0, $delimiter); $timestamp = substr($file, $delimiter+2); diff --git a/apps/files_trashbin/index.php b/apps/files_trashbin/index.php index 6f1c364737e1939ba462bc7cfa9ace10ca3c68e7..2dbaefe7a78ebdca37331f3619f0a7db4e3b2bb1 100644 --- a/apps/files_trashbin/index.php +++ b/apps/files_trashbin/index.php @@ -24,7 +24,7 @@ if ($dir) { $dirContent = $view->opendir($dir); $i = 0; while($entryName = readdir($dirContent)) { - if ( $entryName != '.' && $entryName != '..' ) { + if (!\OC\Files\Filesystem::isIgnoredDir($entryName)) { $pos = strpos($dir.'/', '/', 1); $tmp = substr($dir, 0, $pos); $pos = strrpos($tmp, '.d'); @@ -54,13 +54,13 @@ foreach ($result as $r) { $i['timestamp'] = $r['timestamp']; $i['mimetype'] = $r['mime']; $i['type'] = $r['type']; - if ($i['type'] == 'file') { + if ($i['type'] === 'file') { $fileinfo = pathinfo($r['id']); $i['basename'] = $fileinfo['filename']; $i['extension'] = isset($fileinfo['extension']) ? ('.'.$fileinfo['extension']) : ''; } $i['directory'] = $r['location']; - if ($i['directory'] == '/') { + if ($i['directory'] === '/') { $i['directory'] = ''; } $i['permissions'] = OCP\PERMISSION_READ; @@ -68,9 +68,9 @@ foreach ($result as $r) { } function fileCmp($a, $b) { - if ($a['type'] == 'dir' and $b['type'] != 'dir') { + if ($a['type'] === 'dir' and $b['type'] !== 'dir') { return -1; - } elseif ($a['type'] != 'dir' and $b['type'] == 'dir') { + } elseif ($a['type'] !== 'dir' and $b['type'] === 'dir') { return 1; } else { return strnatcasecmp($a['name'], $b['name']); @@ -83,7 +83,7 @@ usort($files, "fileCmp"); $pathtohere = ''; $breadcrumb = array(); foreach (explode('/', $dir) as $i) { - if ($i != '') { + if ($i !== '') { if ( preg_match('/^(.+)\.d[0-9]+$/', $i, $match) ) { $name = $match[1]; } else { diff --git a/apps/files_trashbin/js/trash.js b/apps/files_trashbin/js/trash.js index 87dfea491e76afd917c9ba0bcad616be57612b9f..b14a7240cbe5d0c211b9665492d302136b8e6428 100644 --- a/apps/files_trashbin/js/trash.js +++ b/apps/files_trashbin/js/trash.js @@ -8,6 +8,7 @@ $(document).ready(function() { var undeleteAction = $('tr').filterAttr('data-file',filename).children("td.date"); var files = tr.attr('data-file'); undeleteAction[0].innerHTML = undeleteAction[0].innerHTML+spinner; + disableActions(); $.post(OC.filePath('files_trashbin','ajax','undelete.php'), {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, function(result){ @@ -15,9 +16,10 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } + enableActions(); }); }); @@ -34,7 +36,7 @@ $(document).ready(function() { var newHTML = ''; var files = tr.attr('data-file'); deleteAction[0].outerHTML = newHTML; - + disableActions(); $.post(OC.filePath('files_trashbin','ajax','delete.php'), {files:JSON.stringify([files]), dirlisting:tr.attr('data-dirlisting') }, function(result){ @@ -42,9 +44,10 @@ $(document).ready(function() { var row = document.getElementById(result.data.success[i].filename); row.parentNode.removeChild(row); } - if (result.status != 'success') { + if (result.status !== 'success') { OC.dialogs.alert(result.data.message, t('core', 'Error')); } + enableActions(); }); }); @@ -72,7 +75,7 @@ $(document).ready(function() { var rows = $(this).parent().parent().parent().children('tr'); for (var i = start; i < end; i++) { $(rows).each(function(index) { - if (index == i) { + if (index === i) { var checkbox = $(this).children().children('input:checkbox'); $(checkbox).attr('checked', 'checked'); $(checkbox).parent().parent().addClass('selected'); @@ -98,7 +101,7 @@ $(document).ready(function() { var files=getSelectedFiles('file'); var fileslist = JSON.stringify(files); var dirlisting=getSelectedFiles('dirlisting')[0]; - + disableActions(); for (var i=0; ispan.name').text(t('files','Name')); $('#modified').text(t('files','Deleted')); $('table').removeClass('multiselect'); @@ -182,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(''); @@ -236,3 +234,13 @@ function getSelectedFiles(property){ function fileDownloadPath(dir, file) { return OC.filePath('files_trashbin', '', 'download.php') + '?file='+encodeURIComponent(file); } + +function enableActions() { + $(".action").css("display", "inline"); + $(":input:checkbox").css("display", "inline"); +} + +function disableActions() { + $(".action").css("display", "none"); + $(":input:checkbox").css("display", "none"); +} diff --git a/apps/files_trashbin/l10n/ar.php b/apps/files_trashbin/l10n/ar.php index f36133db547948a97806359b82f8459cc7e232b2..710a9d14196ee4704c5265c2239fd03b76f35f38 100644 --- a/apps/files_trashbin/l10n/ar.php +++ b/apps/files_trashbin/l10n/ar.php @@ -1,4 +1,5 @@ - "تعذّر حذف%s بشكل دائم", "Couldn't restore %s" => "تعذّر استرجاع %s ", "perform restore operation" => "إبدء عملية الإستعادة", @@ -7,12 +8,11 @@ "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" => "إلغاء", "Deleted Files" => "الملفات المحذوفه" ); +$PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/apps/files_trashbin/l10n/bg_BG.php b/apps/files_trashbin/l10n/bg_BG.php index 1e0953b013a5657a5b8d0f40baa7e1904435927b..3c12e6906ed661ef08bed666f120de9f40bc3d0d 100644 --- a/apps/files_trashbin/l10n/bg_BG.php +++ b/apps/files_trashbin/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Невъзможно перманентното изтриване на %s", "Couldn't restore %s" => "Невъзможно възтановяване на %s", "perform restore operation" => "извършване на действие по възстановяване", @@ -7,12 +8,11 @@ "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" => "Изтриване", "Deleted Files" => "Изтрити файлове" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/bn_BD.php b/apps/files_trashbin/l10n/bn_BD.php index 75b071bfa7432dab12c1303049c4b8a57ef9aee0..c3741dbd1dba4bf49cc903babc1217403cde6c30 100644 --- a/apps/files_trashbin/l10n/bn_BD.php +++ b/apps/files_trashbin/l10n/bn_BD.php @@ -1,9 +1,9 @@ - "সমস্যা", "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 b7540f653d678d28fb17e1cfe0e36829293930d4..6e226b7fc8534b2aafab433cbccafddb964d8ab3 100644 --- a/apps/files_trashbin/l10n/ca.php +++ b/apps/files_trashbin/l10n/ca.php @@ -1,4 +1,5 @@ - "No s'ha pogut esborrar permanentment %s", "Couldn't restore %s" => "No s'ha pogut restaurar %s", "perform restore operation" => "executa l'operació de restauració", @@ -7,12 +8,12 @@ "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", "Delete" => "Esborra", "Deleted Files" => "Fitxers eliminats" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/cs_CZ.php b/apps/files_trashbin/l10n/cs_CZ.php index 416b6b231d5a63f5331aae8bdbcaf2db150e46b5..383d2a217f7c49d666a4fe8d4b39c1189491ae1a 100644 --- a/apps/files_trashbin/l10n/cs_CZ.php +++ b/apps/files_trashbin/l10n/cs_CZ.php @@ -1,4 +1,5 @@ - "Nelze trvale odstranit %s", "Couldn't restore %s" => "Nelze obnovit %s", "perform restore operation" => "provést obnovu", @@ -7,12 +8,12 @@ "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", "Delete" => "Smazat", "Deleted Files" => "Smazané soubory" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/cy_GB.php b/apps/files_trashbin/l10n/cy_GB.php index 055e8d8654dd68ae2f0a22c0a17d6e61d5ce9b76..123a445c2c1d0697a615d2043f0e31b75c12c37f 100644 --- a/apps/files_trashbin/l10n/cy_GB.php +++ b/apps/files_trashbin/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Methwyd dileu %s yn barhaol", "Couldn't restore %s" => "Methwyd adfer %s", "perform restore operation" => "gweithrediad adfer", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Ffeiliau Ddilewyd" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/apps/files_trashbin/l10n/da.php b/apps/files_trashbin/l10n/da.php index 16f98baed7e879d806030dbb3ea0d497f8fb3074..2fbc08938789690676e04c6c8e4e196d586bdb2d 100644 --- a/apps/files_trashbin/l10n/da.php +++ b/apps/files_trashbin/l10n/da.php @@ -1,4 +1,5 @@ - "Kunne ikke slette %s permanent", "Couldn't restore %s" => "Kunne ikke gendanne %s", "perform restore operation" => "udfør gendannelsesoperation", @@ -7,12 +8,12 @@ "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", "Delete" => "Slet", "Deleted Files" => "Slettede filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/de.php b/apps/files_trashbin/l10n/de.php index 4dd9033969e485482ec028e2f90530d3e7ed7a6a..ad6e0839bd61481f401842dbeacb0ef3158faf84 100644 --- a/apps/files_trashbin/l10n/de.php +++ b/apps/files_trashbin/l10n/de.php @@ -1,4 +1,5 @@ - "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "perform restore operation" => "Wiederherstellung ausführen", @@ -7,12 +8,12 @@ "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", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/de_DE.php b/apps/files_trashbin/l10n/de_DE.php index 829b5026e1a354d5fc07ec4a325d86422e0eef4d..0df6941280109e1d617e421447a21aa0e5e4aa35 100644 --- a/apps/files_trashbin/l10n/de_DE.php +++ b/apps/files_trashbin/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Konnte %s nicht dauerhaft löschen", "Couldn't restore %s" => "Konnte %s nicht wiederherstellen", "perform restore operation" => "Wiederherstellung ausführen", @@ -7,12 +8,12 @@ "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", "Delete" => "Löschen", "Deleted Files" => "Gelöschte Dateien" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/el.php b/apps/files_trashbin/l10n/el.php index f95d90ada6171ae224c1c3a90494bd4e5530b3c9..759e5299e4200c58acca5df8a0801e1d5f2f5ba8 100644 --- a/apps/files_trashbin/l10n/el.php +++ b/apps/files_trashbin/l10n/el.php @@ -1,4 +1,5 @@ - "Αδύνατη η μόνιμη διαγραφή του %s", "Couldn't restore %s" => "Αδυναμία επαναφοράς %s", "perform restore operation" => "εκτέλεση λειτουργία επαναφοράς", @@ -7,12 +8,12 @@ "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" => "Επαναφορά", "Delete" => "Διαγραφή", "Deleted Files" => "Διαγραμμένα Αρχεία" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/eo.php b/apps/files_trashbin/l10n/eo.php index 161e9c3e88ac110eac7d7d2ec79938ed755a3506..d1e30cba58883a032b8e099d308a9cf8cafaf0e4 100644 --- a/apps/files_trashbin/l10n/eo.php +++ b/apps/files_trashbin/l10n/eo.php @@ -1,12 +1,12 @@ - "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" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es.php b/apps/files_trashbin/l10n/es.php index b2d5a2aed268320da0c79911173aeb4f2fce69b5..956d89ae6880d44befddef8290d8ea46c3947562 100644 --- a/apps/files_trashbin/l10n/es.php +++ b/apps/files_trashbin/l10n/es.php @@ -1,4 +1,5 @@ - "No se puede eliminar %s permanentemente", "Couldn't restore %s" => "No se puede restaurar %s", "perform restore operation" => "restaurar", @@ -7,12 +8,12 @@ "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", "Delete" => "Eliminar", "Deleted Files" => "Archivos Eliminados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/es_AR.php b/apps/files_trashbin/l10n/es_AR.php index de7494ca69e879b7100ebcb96e3766d71c8ef57c..6f47255b50652bf06c450dc91f35bfc8df1d7385 100644 --- a/apps/files_trashbin/l10n/es_AR.php +++ b/apps/files_trashbin/l10n/es_AR.php @@ -1,4 +1,5 @@ - "No fue posible borrar %s de manera permanente", "Couldn't restore %s" => "No se pudo restaurar %s", "perform restore operation" => "Restaurar", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Archivos eliminados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/et_EE.php b/apps/files_trashbin/l10n/et_EE.php index 3d3b46a180823b469bfcf364ccaa548aaa0f2bf0..2cfcafa804e5bc6d6a65e96cbcfa7c906368f5fd 100644 --- a/apps/files_trashbin/l10n/et_EE.php +++ b/apps/files_trashbin/l10n/et_EE.php @@ -1,4 +1,5 @@ - "%s jäädavalt kustutamine ebaõnnestus", "Couldn't restore %s" => "%s ei saa taastada", "perform restore operation" => "soorita taastamine", @@ -7,12 +8,12 @@ "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", "Deleted Files" => "Kustutatud failid" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/eu.php b/apps/files_trashbin/l10n/eu.php index 45b77b7990c23d6449f6090d5cb9ef17c99b8816..b114dc3386a3f3a7fd7c6391c356ded31b68d37d 100644 --- a/apps/files_trashbin/l10n/eu.php +++ b/apps/files_trashbin/l10n/eu.php @@ -1,4 +1,5 @@ - "Ezin izan da %s betirako ezabatu", "Couldn't restore %s" => "Ezin izan da %s berreskuratu", "perform restore operation" => "berreskuratu", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Ezabatutako Fitxategiak" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/fa.php b/apps/files_trashbin/l10n/fa.php index 6ecc6feacbf8d7bf15750547cc75cc9094f95d46..654f20a5f1c7418a3cfd073db073a586099f8401 100644 --- a/apps/files_trashbin/l10n/fa.php +++ b/apps/files_trashbin/l10n/fa.php @@ -1,4 +1,5 @@ - "%s را نمی توان برای همیشه حذف کرد", "Couldn't restore %s" => "%s را نمی توان بازگرداند", "perform restore operation" => "انجام عمل بازگرداندن", @@ -7,12 +8,11 @@ "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" => "حذف", "Deleted Files" => "فایلهای حذف شده" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/fi_FI.php b/apps/files_trashbin/l10n/fi_FI.php index fd6edf398ea017164b971f00f955bf8748c6b8f4..f03950981c08c00cbc6036b99ed3d39f16ce4539 100644 --- a/apps/files_trashbin/l10n/fi_FI.php +++ b/apps/files_trashbin/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Kohdetta %s ei voitu poistaa pysyvästi", "Couldn't restore %s" => "Kohteen %s palautus epäonnistui", "perform restore operation" => "suorita palautustoiminto", @@ -7,12 +8,12 @@ "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", "Delete" => "Poista", "Deleted Files" => "Poistetut tiedostot" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/fr.php b/apps/files_trashbin/l10n/fr.php index 8198e3e32a8287454400b8926b3b54341692bb1e..8854190e2ceb7827bc8d7e26ea85b96bbecad34f 100644 --- a/apps/files_trashbin/l10n/fr.php +++ b/apps/files_trashbin/l10n/fr.php @@ -1,4 +1,5 @@ - "Impossible d'effacer %s de façon permanente", "Couldn't restore %s" => "Impossible de restaurer %s", "perform restore operation" => "effectuer l'opération de restauration", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Fichiers effacés" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/gl.php b/apps/files_trashbin/l10n/gl.php index b9b3c8a1e5c73663530541360eb39d45459c230a..568c17607fe0eb90554711df084aae6ce981bf21 100644 --- a/apps/files_trashbin/l10n/gl.php +++ b/apps/files_trashbin/l10n/gl.php @@ -1,4 +1,5 @@ - "Non foi posíbel eliminar %s permanente", "Couldn't restore %s" => "Non foi posíbel restaurar %s", "perform restore operation" => "realizar a operación de restauración", @@ -7,12 +8,12 @@ "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", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros eliminados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/he.php b/apps/files_trashbin/l10n/he.php index 853d4e1925abe81b00b9ba51d8f5f122f74426b0..6aa6264a315914829450a6a1cc4069de9e12d92e 100644 --- a/apps/files_trashbin/l10n/he.php +++ b/apps/files_trashbin/l10n/he.php @@ -1,4 +1,5 @@ - "לא ניתן למחוק את %s לצמיתות", "Couldn't restore %s" => "לא ניתן לשחזר את %s", "perform restore operation" => "ביצוע פעולת שחזור", @@ -7,12 +8,11 @@ "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" => "מחיקה", "Deleted Files" => "קבצים שנמחקו" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hr.php b/apps/files_trashbin/l10n/hr.php index a65d876e1f06311cbb151b7af98a2268ba6615bc..d227b4979aadbc0e0929e603a69b682b34c88469 100644 --- a/apps/files_trashbin/l10n/hr.php +++ b/apps/files_trashbin/l10n/hr.php @@ -1,5 +1,9 @@ - "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 5e64bc04e03132ab36250716d23d24e2efd8eec0..aac6cf780001a1b143f0943ce40b8615616ecb2c 100644 --- a/apps/files_trashbin/l10n/hu_HU.php +++ b/apps/files_trashbin/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Nem sikerült %s végleges törlése", "Couldn't restore %s" => "Nem sikerült %s visszaállítása", "perform restore operation" => "a visszaállítás végrehajtása", @@ -7,12 +8,12 @@ "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", "Delete" => "Törlés", "Deleted Files" => "Törölt fájlok" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/hy.php b/apps/files_trashbin/l10n/hy.php index 3b80487278a16a8f1f7b407908ea855f3f5def10..6ff58b56202081827d5ef70cc85325aa7c0803e0 100644 --- a/apps/files_trashbin/l10n/hy.php +++ b/apps/files_trashbin/l10n/hy.php @@ -1,3 +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 dea25b30ba45adc3b79a7625bed071f62e29890f..c583344a81e1b624563f77b1be7ec8f0654082a2 100644 --- a/apps/files_trashbin/l10n/ia.php +++ b/apps/files_trashbin/l10n/ia.php @@ -1,5 +1,9 @@ - "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 62a63d515a3749ac279aa642c8132f22d0a1da05..6aad1302f43e4442d7c50d3d2f7acbd5877e221a 100644 --- a/apps/files_trashbin/l10n/id.php +++ b/apps/files_trashbin/l10n/id.php @@ -1,4 +1,5 @@ - "Tidak dapat menghapus permanen %s", "Couldn't restore %s" => "Tidak dapat memulihkan %s", "perform restore operation" => "jalankan operasi pemulihan", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Berkas yang Dihapus" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/is.php b/apps/files_trashbin/l10n/is.php index 12267c6695a30511218476c545d50fc2d50e6ded..55ae433646147d0694d9324c949d3de602173718 100644 --- a/apps/files_trashbin/l10n/is.php +++ b/apps/files_trashbin/l10n/is.php @@ -1,9 +1,9 @@ - "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 795fd6ea1674618537b7380e7040b98d77591300..0dc2b938f8a76769fe785d716e1d5f57e6c0db1f 100644 --- a/apps/files_trashbin/l10n/it.php +++ b/apps/files_trashbin/l10n/it.php @@ -1,4 +1,5 @@ - "Impossibile eliminare %s definitivamente", "Couldn't restore %s" => "Impossibile ripristinare %s", "perform restore operation" => "esegui operazione di ripristino", @@ -7,12 +8,12 @@ "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", "Delete" => "Elimina", "Deleted Files" => "File eliminati" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ja_JP.php b/apps/files_trashbin/l10n/ja_JP.php index db5783bf4328a690bc12794794ed8d0f7873c6f9..eb9748d57c04af064215003511089c12b805b199 100644 --- a/apps/files_trashbin/l10n/ja_JP.php +++ b/apps/files_trashbin/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "%s を完全に削除出来ませんでした", "Couldn't restore %s" => "%s を復元出来ませんでした", "perform restore operation" => "復元操作を実行する", @@ -7,12 +8,12 @@ "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" => "復元", "Delete" => "削除", "Deleted Files" => "削除されたファイル" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ka_GE.php b/apps/files_trashbin/l10n/ka_GE.php index 667eb500eb9f11ea6e716a642849d582be03c466..236d8951e9dcf47368d21fab951bbd7b5e0a7967 100644 --- a/apps/files_trashbin/l10n/ka_GE.php +++ b/apps/files_trashbin/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "ფაილი %s–ის სრულად წაშლა ვერ მოხერხდა", "Couldn't restore %s" => "%s–ის აღდგენა ვერ მოხერხდა", "perform restore operation" => "მიმდინარეობს აღდგენის ოპერაცია", @@ -7,12 +8,11 @@ "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" => "წაშლა", "Deleted Files" => "წაშლილი ფაილები" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ko.php b/apps/files_trashbin/l10n/ko.php index 42ad87e98d2247283f347a1df1e85f5de1e4f83e..f2e604d75915416e9825bae5b97db30f9f1883a7 100644 --- a/apps/files_trashbin/l10n/ko.php +++ b/apps/files_trashbin/l10n/ko.php @@ -1,11 +1,11 @@ - "오류", "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" => "삭제" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/ku_IQ.php b/apps/files_trashbin/l10n/ku_IQ.php index 67fdd7d08fa910660052b87b9adaa4ba95746bdb..3f110f06002b4386638af1efde66098d4cd25096 100644 --- a/apps/files_trashbin/l10n/ku_IQ.php +++ b/apps/files_trashbin/l10n/ku_IQ.php @@ -1,4 +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 2065ee03d3204b97d1d4fa1552d85bc3f15cd55c..cbfd515a8b3fd2c335ae318a7eca8af7fe3b554f 100644 --- a/apps/files_trashbin/l10n/lb.php +++ b/apps/files_trashbin/l10n/lb.php @@ -1,5 +1,9 @@ - "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 7df63bd7f28b94c5bda6aa4cffdb1a10c8bbc5ed..c4a12ff21755aff9c89634d80665430c68699333 100644 --- a/apps/files_trashbin/l10n/lt_LT.php +++ b/apps/files_trashbin/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Nepavyko negrįžtamai ištrinti %s", "Couldn't restore %s" => "Nepavyko atkurti %s", "perform restore operation" => "atkurti", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Ištrinti failai" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/lv.php b/apps/files_trashbin/l10n/lv.php index b1b8c3e6b03ab09e82f55a411a9395e0e0fdb8e1..ccbf117fdad7050a82bda7cb97b06f3bfdc739d8 100644 --- a/apps/files_trashbin/l10n/lv.php +++ b/apps/files_trashbin/l10n/lv.php @@ -1,4 +1,5 @@ - "Nevarēja pilnībā izdzēst %s", "Couldn't restore %s" => "Nevarēja atjaunot %s", "perform restore operation" => "veikt atjaunošanu", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Dzēstās datnes" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/mk.php b/apps/files_trashbin/l10n/mk.php index 175399249e55dd20bafb3a64e17b6b2f6d949fd2..965518dbc86e043c42cb8c7ac0246a9eb9365f54 100644 --- a/apps/files_trashbin/l10n/mk.php +++ b/apps/files_trashbin/l10n/mk.php @@ -1,9 +1,9 @@ - "Грешка", "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 52a997aab15678a8157171a982614f6a911c36cd..1b5ca07c70cff20792d903193d4cf04b1fa6b19f 100644 --- a/apps/files_trashbin/l10n/ms_MY.php +++ b/apps/files_trashbin/l10n/ms_MY.php @@ -1,5 +1,9 @@ - "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 43ad018049447a8d0a1b6c1bcf98a031bf498680..8a69b3d87aa1d0f1f8d43dce3ae55a7c61f01eb5 100644 --- a/apps/files_trashbin/l10n/nb_NO.php +++ b/apps/files_trashbin/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Kunne ikke slette %s fullstendig", "Couldn't restore %s" => "Kunne ikke gjenopprette %s", "perform restore operation" => "utfør gjenopprettings operasjon", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Slettet filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/nl.php b/apps/files_trashbin/l10n/nl.php index 91844a14b663eca3c3be1984becb1ecd6e7a9cbb..2c6dcb2fcbf2d2266001e6c7087c10c9da6003c1 100644 --- a/apps/files_trashbin/l10n/nl.php +++ b/apps/files_trashbin/l10n/nl.php @@ -1,4 +1,5 @@ - "Kon %s niet permanent verwijderen", "Couldn't restore %s" => "Kon %s niet herstellen", "perform restore operation" => "uitvoeren restore operatie", @@ -7,12 +8,12 @@ "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", "Delete" => "Verwijder", "Deleted Files" => "Verwijderde bestanden" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/nn_NO.php b/apps/files_trashbin/l10n/nn_NO.php index 454ea2b05753198172040752659ff7bc99149290..9e351668e33626bd279e9638c59a2939bc8a27bf 100644 --- a/apps/files_trashbin/l10n/nn_NO.php +++ b/apps/files_trashbin/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Klarte ikkje sletta %s for godt", "Couldn't restore %s" => "Klarte ikkje gjenoppretta %s", "perform restore operation" => "utfør gjenoppretting", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Sletta filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/oc.php b/apps/files_trashbin/l10n/oc.php index fa9e097f6ca53fd35c4462ec4f9b2e3a26d95855..a62902c3b7e89ca6bc1d54f4a4c3d798d7bfc997 100644 --- a/apps/files_trashbin/l10n/oc.php +++ b/apps/files_trashbin/l10n/oc.php @@ -1,5 +1,9 @@ - "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 5c9f558f11fd610ed79046a6cd880493f05e0a6d..e8295e2ff038bd599cc2962ef918d8a3fac93018 100644 --- a/apps/files_trashbin/l10n/pl.php +++ b/apps/files_trashbin/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie można trwale usunąć %s", "Couldn't restore %s" => "Nie można przywrócić %s", "perform restore operation" => "wykonywanie operacji przywracania", @@ -7,12 +8,12 @@ "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óć", "Delete" => "Usuń", "Deleted Files" => "Usunięte pliki" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/apps/files_trashbin/l10n/pt_BR.php b/apps/files_trashbin/l10n/pt_BR.php index 9dad8a40a85e4ab5abbae6e09579db6a7dc5d75a..1e3c67ba027a48389c527fa45287e80e0b9675eb 100644 --- a/apps/files_trashbin/l10n/pt_BR.php +++ b/apps/files_trashbin/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Não foi possível excluir %s permanentemente", "Couldn't restore %s" => "Não foi possível restaurar %s", "perform restore operation" => "realizar operação de restauração", @@ -7,12 +8,12 @@ "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", "Delete" => "Excluir", "Deleted Files" => "Arquivos Apagados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/pt_PT.php b/apps/files_trashbin/l10n/pt_PT.php index ba85158b70e1a4c3a098232f3e5595b5454409e5..0c88d132b5cc00eb299bbf25a4c7f1d975071b87 100644 --- a/apps/files_trashbin/l10n/pt_PT.php +++ b/apps/files_trashbin/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Não foi possível eliminar %s de forma permanente", "Couldn't restore %s" => "Não foi possível restaurar %s", "perform restore operation" => "executar a operação de restauro", @@ -7,12 +8,12 @@ "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", "Delete" => "Eliminar", "Deleted Files" => "Ficheiros Apagados" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ro.php b/apps/files_trashbin/l10n/ro.php index 3af21b7e3f367ab670c38fa81358d1db4835668e..0b1d2cd9e179cb5020e2538fd02912daddaced54 100644 --- a/apps/files_trashbin/l10n/ro.php +++ b/apps/files_trashbin/l10n/ro.php @@ -1,10 +1,10 @@ - "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 0d55703cdc064b7e4ddfa58330e571f1fe60a936..909e4d7131fabe07aef9b7fe0d48b473718bcfe7 100644 --- a/apps/files_trashbin/l10n/ru.php +++ b/apps/files_trashbin/l10n/ru.php @@ -1,4 +1,5 @@ - "%s не может быть удалён навсегда", "Couldn't restore %s" => "%s не может быть восстановлен", "perform restore operation" => "выполнить операцию восстановления", @@ -7,12 +8,12 @@ "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" => "Восстановить", "Delete" => "Удалить", "Deleted Files" => "Удаленные файлы" ); +$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/ru_RU.php b/apps/files_trashbin/l10n/ru_RU.php deleted file mode 100644 index 8636e417ecb207808d94e78c9acc8e05d51d1266..0000000000000000000000000000000000000000 --- a/apps/files_trashbin/l10n/ru_RU.php +++ /dev/null @@ -1,5 +0,0 @@ - "Ошибка", -"Name" => "Имя", -"Delete" => "Удалить" -); diff --git a/apps/files_trashbin/l10n/si_LK.php b/apps/files_trashbin/l10n/si_LK.php index 48ea423a4c4b3339e7e38dc8627d4d79c7847b3d..6dad84437cf37981ac08e7593a85c60e3a1d7739 100644 --- a/apps/files_trashbin/l10n/si_LK.php +++ b/apps/files_trashbin/l10n/si_LK.php @@ -1,7 +1,9 @@ - "දෝෂයක්", "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 7cef36ef1c0805436aed68f7816bc32542f19f33..0f78da5fc3dc96e0d554b9467163777f68494437 100644 --- a/apps/files_trashbin/l10n/sk_SK.php +++ b/apps/files_trashbin/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Nemožno zmazať %s navždy", "Couldn't restore %s" => "Nemožno obnoviť %s", "perform restore operation" => "vykonať obnovu", @@ -7,12 +8,12 @@ "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ť", "Delete" => "Zmazať", "Deleted Files" => "Zmazané súbory" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/apps/files_trashbin/l10n/sl.php b/apps/files_trashbin/l10n/sl.php index 8c8446d4e5b0d2ac2e762755b8801326769adfd0..eb2d42a18ff4d489d722c06fb06f630c10e505ab 100644 --- a/apps/files_trashbin/l10n/sl.php +++ b/apps/files_trashbin/l10n/sl.php @@ -1,4 +1,5 @@ - "Datoteke %s ni mogoče dokončno izbrisati.", "Couldn't restore %s" => "Ni mogoče obnoviti %s", "perform restore operation" => "izvedi opravilo obnavljanja", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Izbrisane datoteke" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/apps/files_trashbin/l10n/sq.php b/apps/files_trashbin/l10n/sq.php index ce3ed947ccd57c106321d8150b3a484f2adca86d..1b7b5b828c81e08db327277b77d964d062fd0cfa 100644 --- a/apps/files_trashbin/l10n/sq.php +++ b/apps/files_trashbin/l10n/sq.php @@ -1,4 +1,5 @@ - "Nuk munda ta eliminoj përfundimisht %s", "Couldn't restore %s" => "Nuk munda ta rivendos %s", "perform restore operation" => "ekzekuto operacionin e rivendosjes", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "Skedarë të eliminuar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/sr.php b/apps/files_trashbin/l10n/sr.php index 280c2b028204dcca9d3be74749416cdef968d070..7311e759f989ca7747c0a47533d6011c4a2efa82 100644 --- a/apps/files_trashbin/l10n/sr.php +++ b/apps/files_trashbin/l10n/sr.php @@ -1,14 +1,14 @@ - "врати у претходно стање", "Error" => "Грешка", "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" => "Обриши" ); +$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/sr@latin.php b/apps/files_trashbin/l10n/sr@latin.php index 2cb86adfd405423190d97c24b545ae11bc04795f..483d1e3ca2b89bb2451fc108921db95f82bbbdf7 100644 --- a/apps/files_trashbin/l10n/sr@latin.php +++ b/apps/files_trashbin/l10n/sr@latin.php @@ -1,4 +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 d56d8946f34d63602f5ed6eb903abe49aa2c3fd9..b0752cbbe8b5ea5e036dde2445716a9618b982b7 100644 --- a/apps/files_trashbin/l10n/sv.php +++ b/apps/files_trashbin/l10n/sv.php @@ -1,4 +1,5 @@ - "Kunde inte radera %s permanent", "Couldn't restore %s" => "Kunde inte återställa %s", "perform restore operation" => "utför återställning", @@ -7,12 +8,12 @@ "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", "Delete" => "Radera", "Deleted Files" => "Raderade filer" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/apps/files_trashbin/l10n/ta_LK.php b/apps/files_trashbin/l10n/ta_LK.php index 2badaa8546772cbb10f2e49c63879a472209375c..ed93b459c7db36046316ae7af68f8c9cdd60a7fc 100644 --- a/apps/files_trashbin/l10n/ta_LK.php +++ b/apps/files_trashbin/l10n/ta_LK.php @@ -1,9 +1,9 @@ - "வழு", "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 9b36ac4272eff1e0af94a04ba38c519b27d98946..0d803a8e648535a642a395e14e6ea56dee5edc6f 100644 --- a/apps/files_trashbin/l10n/te.php +++ b/apps/files_trashbin/l10n/te.php @@ -1,6 +1,10 @@ - "పొరపాటు", "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 82d3cd2353095a6244fec279cd1d589193440c1d..31caa11aac303bc0226b360145f37404b31858e7 100644 --- a/apps/files_trashbin/l10n/th_TH.php +++ b/apps/files_trashbin/l10n/th_TH.php @@ -1,14 +1,14 @@ - "ดำเนินการคืนค่า", "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" => "ลบ", "Deleted Files" => "ไฟล์ที่ลบทิ้ง" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/tr.php b/apps/files_trashbin/l10n/tr.php index 53c143c3a9d184ceaf3798472e0cff11be04f594..f25b179bc1efbcbc47cb3da9e86f6c77663e64c2 100644 --- a/apps/files_trashbin/l10n/tr.php +++ b/apps/files_trashbin/l10n/tr.php @@ -1,4 +1,5 @@ - "%s Kalıcı olarak silinemedi", "Couldn't restore %s" => "%s Geri yüklenemedi", "perform restore operation" => "Geri yükleme işlemini gerçekleştir", @@ -7,12 +8,12 @@ "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", "Deleted Files" => "Silinen Dosyalar" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/apps/files_trashbin/l10n/ug.php b/apps/files_trashbin/l10n/ug.php index c369e385f740c1950fd7a105c8901054eecb10fd..ad983aee18b7cc425e530b0e0466355a18b9adfb 100644 --- a/apps/files_trashbin/l10n/ug.php +++ b/apps/files_trashbin/l10n/ug.php @@ -1,11 +1,12 @@ - "خاتالىق", "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" => "ئۆچۈر" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/uk.php b/apps/files_trashbin/l10n/uk.php index ffc9ab02f4895268910d613baaf119d1f12724c2..aa4b65950323fffba703987029b83c41ccf884d5 100644 --- a/apps/files_trashbin/l10n/uk.php +++ b/apps/files_trashbin/l10n/uk.php @@ -1,4 +1,5 @@ - "Неможливо видалити %s назавжди", "Couldn't restore %s" => "Неможливо відновити %s", "perform restore operation" => "виконати операцію відновлення", @@ -7,12 +8,12 @@ "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" => "Відновити", "Delete" => "Видалити", "Deleted Files" => "Видалено Файлів" ); +$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/ur_PK.php b/apps/files_trashbin/l10n/ur_PK.php index e13a623fecc335ac65e09bcaeca82fe9abb71099..f6c6a3da3c84b3f5c08590b20530b8c2e84a5d01 100644 --- a/apps/files_trashbin/l10n/ur_PK.php +++ b/apps/files_trashbin/l10n/ur_PK.php @@ -1,3 +1,7 @@ - "ایرر" + "ایرر", +"_%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 a8924c541f8fee86f3624037731ee8b6032b7f0b..072d799fa6819d0cedd041904f80463b338f9b83 100644 --- a/apps/files_trashbin/l10n/vi.php +++ b/apps/files_trashbin/l10n/vi.php @@ -1,4 +1,5 @@ - "Không thể óa %s vĩnh viễn", "Couldn't restore %s" => "Không thể khôi phục %s", "perform restore operation" => "thực hiện phục hồi", @@ -7,12 +8,11 @@ "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", "Deleted Files" => "File đã xóa" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_CN.GB2312.php b/apps/files_trashbin/l10n/zh_CN.GB2312.php index 1ab193517f80076db48537af0ccc65c901eec2d3..eaa97bb1b6ff7730c4a3b9841d27e140b5e73996 100644 --- a/apps/files_trashbin/l10n/zh_CN.GB2312.php +++ b/apps/files_trashbin/l10n/zh_CN.GB2312.php @@ -1,10 +1,12 @@ - "出错", "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 9c0f0bb3b75186fd002fed1ffa292764f81ae3f7..6609f57d9cff1d1260524b9e5d19f30c6f901963 100644 --- a/apps/files_trashbin/l10n/zh_CN.php +++ b/apps/files_trashbin/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "无法彻底删除文件%s", "Couldn't restore %s" => "无法恢复%s", "perform restore operation" => "执行恢复操作", @@ -7,12 +8,11 @@ "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" => "删除", "Deleted Files" => "已删除文件" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/l10n/zh_HK.php b/apps/files_trashbin/l10n/zh_HK.php index 53dd9869219e08d2f69033b64c7b8fbc8545359b..3f0d663baeb10ee308c1ca65edae8e5bbd1a63c6 100644 --- a/apps/files_trashbin/l10n/zh_HK.php +++ b/apps/files_trashbin/l10n/zh_HK.php @@ -1,6 +1,9 @@ - "錯誤", "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 a9dcba8f7d73ea151c6cd6aff67bfdf2a0723a96..ab6b75c57848602a3621eda654ae14f73015fc81 100644 --- a/apps/files_trashbin/l10n/zh_TW.php +++ b/apps/files_trashbin/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "無法永久刪除 %s", "Couldn't restore %s" => "無法復原 %s", "perform restore operation" => "進行復原動作", @@ -7,12 +8,11 @@ "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" => "刪除", "Deleted Files" => "已刪除的檔案" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/apps/files_trashbin/lib/hooks.php b/apps/files_trashbin/lib/hooks.php index f1df1d7ec77f9106e7b7ed4c1a2542d44b81118b..b2c6bc1df50988c960f5dfb54a96ab29f4aad8a2 100644 --- a/apps/files_trashbin/lib/hooks.php +++ b/apps/files_trashbin/lib/hooks.php @@ -56,4 +56,8 @@ class Hooks { Trashbin::deleteUser($uid); } } + + public static function post_write_hook($params) { + Trashbin::resizeTrash(\OCP\User::getUser()); + } } diff --git a/apps/files_trashbin/lib/trash.php b/apps/files_trashbin/lib/trash.php index b9d900dfab42b9b945c06fb0692fb2b54d7e4e3d..30913e00a473da3493dda9a8ca10b435773c7e28 100644 --- a/apps/files_trashbin/lib/trash.php +++ b/apps/files_trashbin/lib/trash.php @@ -25,7 +25,7 @@ namespace OCA\Files_Trashbin; class Trashbin { // how long do we keep files in the trash bin if no other value is defined in the config file (unit: days) - const DEFAULT_RETENTION_OBLIGATION = 180; + const DEFAULT_RETENTION_OBLIGATION = 30; // unit: percentage; 50% of available disk space/quota const DEFAULTMAXSIZE = 50; @@ -72,6 +72,11 @@ class Trashbin { $mime = $view->getMimeType('files' . $file_path); if ($view->is_dir('files' . $file_path)) { + $dirContent = $view->getDirectoryContent('files' . $file_path); + // no need to move empty folders to the trash bin + if (empty($dirContent)) { + return true; + } $type = 'dir'; } else { $type = 'file'; @@ -100,8 +105,8 @@ class Trashbin { \OCP\Util::emitHook('\OCA\Files_Trashbin\Trashbin', 'post_moveToTrash', array('filePath' => \OC\Files\Filesystem::normalizePath($file_path), 'trashPath' => \OC\Files\Filesystem::normalizePath($filename . '.d' . $timestamp))); - $trashbinSize += self::retainVersions($view, $file_path, $filename, $timestamp); - $trashbinSize += self::retainEncryptionKeys($view, $file_path, $filename, $timestamp); + $trashbinSize += self::retainVersions($file_path, $filename, $timestamp); + $trashbinSize += self::retainEncryptionKeys($file_path, $filename, $timestamp); } else { \OC_Log::write('files_trashbin', 'Couldn\'t move ' . $file_path . ' to the trash bin', \OC_log::ERROR); } @@ -114,14 +119,13 @@ class Trashbin { /** * Move file versions to trash so that they can be restored later * - * @param \OC\Files\View $view * @param $file_path path to original file * @param $filename of deleted file * @param $timestamp when the file was deleted * * @return size of stored versions */ - private static function retainVersions($view, $file_path, $filename, $timestamp) { + private static function retainVersions($file_path, $filename, $timestamp) { $size = 0; if (\OCP\App::isEnabled('files_versions')) { @@ -154,14 +158,13 @@ class Trashbin { /** * Move encryption keys to trash so that they can be restored later * - * @param \OC\Files\View $view * @param $file_path path to original file * @param $filename of deleted file * @param $timestamp when the file was deleted * * @return size of encryption keys */ - private static function retainEncryptionKeys($view, $file_path, $filename, $timestamp) { + private static function retainEncryptionKeys($file_path, $filename, $timestamp) { $size = 0; if (\OCP\App::isEnabled('files_encryption')) { @@ -262,14 +265,14 @@ class Trashbin { $query = \OC_DB::prepare('SELECT `location`,`type` FROM `*PREFIX*files_trash`' . ' WHERE `user`=? AND `id`=? AND `timestamp`=?'); $result = $query->execute(array($user, $filename, $timestamp))->fetchAll(); - if (count($result) != 1) { + if (count($result) !== 1) { \OC_Log::write('files_trashbin', 'trash bin database inconsistent!', \OC_Log::ERROR); return false; } // if location no longer exists, restore file in the root directory $location = $result[0]['location']; - if ($result[0]['location'] != '/' && + if ($result[0]['location'] !== '/' && (!$view->is_dir('files' . $result[0]['location']) || !$view->isUpdatable('files' . $result[0]['location']))) { $location = ''; @@ -283,11 +286,11 @@ class Trashbin { $location = ''; } - $source = \OC\Files\Filesystem::normalizePath('files_trashbin/files/' . $file); - $target = \OC\Files\Filesystem::normalizePath('files/' . $location . '/' . $filename); - // we need a extension in case a file/dir with the same name already exists - $ext = self::getUniqueExtension($location, $filename, $view); + $uniqueFilename = self::getUniqueFilename($location, $filename, $view); + + $source = \OC\Files\Filesystem::normalizePath('files_trashbin/files/' . $file); + $target = \OC\Files\Filesystem::normalizePath('files/' . $location . '/' . $uniqueFilename); $mtime = $view->filemtime($source); // disable proxy to prevent recursive calls @@ -295,24 +298,24 @@ class Trashbin { \OC_FileProxy::$enabled = false; // restore file - $restoreResult = $view->rename($source, $target . $ext); + $restoreResult = $view->rename($source, $target); // handle the restore result if ($restoreResult) { $fakeRoot = $view->getRoot(); $view->chroot('/' . $user . '/files'); - $view->touch('/' . $location . '/' . $filename . $ext, $mtime); + $view->touch('/' . $location . '/' . $uniqueFilename, $mtime); $view->chroot($fakeRoot); - \OCP\Util::emitHook('\OCA\Files_Trashbin\Trashbin', 'post_restore', array('filePath' => \OC\Files\Filesystem::normalizePath('/' . $location . '/' . $filename . $ext), + \OCP\Util::emitHook('\OCA\Files_Trashbin\Trashbin', 'post_restore', array('filePath' => \OC\Files\Filesystem::normalizePath('/' . $location . '/' . $uniqueFilename), 'trashPath' => \OC\Files\Filesystem::normalizePath($file))); - if ($view->is_dir($target . $ext)) { - $trashbinSize -= self::calculateSize(new \OC\Files\View('/' . $user . '/' . $target . $ext)); + if ($view->is_dir($target)) { + $trashbinSize -= self::calculateSize(new \OC\Files\View('/' . $user . '/' . $target)); } else { - $trashbinSize -= $view->filesize($target . $ext); + $trashbinSize -= $view->filesize($target); } - $trashbinSize -= self::restoreVersions($view, $file, $filename, $ext, $location, $timestamp); - $trashbinSize -= self::restoreEncryptionKeys($view, $file, $filename, $ext, $location, $timestamp); + $trashbinSize -= self::restoreVersions($view, $file, $filename, $uniqueFilename, $location, $timestamp); + $trashbinSize -= self::restoreEncryptionKeys($view, $file, $filename, $uniqueFilename, $location, $timestamp); if ($timestamp) { $query = \OC_DB::prepare('DELETE FROM `*PREFIX*files_trash` WHERE `user`=? AND `id`=? AND `timestamp`=?'); @@ -338,15 +341,16 @@ class Trashbin { * * @param \OC\Files\View $view file view * @param $file complete path to file - * @param $filename name of file - * @param $ext file extension in case a file with the same $filename already exists + * @param $filename name of file once it was deleted + * @param $uniqueFilename new file name to restore the file without overwriting existing files * @param $location location if file * @param $timestamp deleteion time * * @return size of restored versions */ - private static function restoreVersions($view, $file, $filename, $ext, $location, $timestamp) { + private static function restoreVersions($view, $file, $filename, $uniqueFilename, $location, $timestamp) { $size = 0; + if (\OCP\App::isEnabled('files_versions')) { // disable proxy to prevent recursive calls $proxyStatus = \OC_FileProxy::$enabled; @@ -355,7 +359,7 @@ class Trashbin { $user = \OCP\User::getUser(); $rootView = new \OC\Files\View('/'); - $target = \OC\Files\Filesystem::normalizePath('/' . $location . '/' . $filename . $ext); + $target = \OC\Files\Filesystem::normalizePath('/' . $location . '/' . $uniqueFilename); list($owner, $ownerPath) = self::getUidAndFilename($target); @@ -392,20 +396,20 @@ class Trashbin { * @param \OC\Files\View $view * @param $file complete path to file * @param $filename name of file - * @param $ext file extension in case a file with the same $filename already exists + * @param $uniqueFilename new file name to restore the file without overwriting existing files * @param $location location of file * @param $timestamp deleteion time * * @return size of restored encrypted file */ - private static function restoreEncryptionKeys($view, $file, $filename, $ext, $location, $timestamp) { + private static function restoreEncryptionKeys($view, $file, $filename, $uniqueFilename, $location, $timestamp) { // Take care of encryption keys TODO! Get '.key' in file between file name and delete date (also for permanent delete!) $size = 0; if (\OCP\App::isEnabled('files_encryption')) { $user = \OCP\User::getUser(); $rootView = new \OC\Files\View('/'); - $target = \OC\Files\Filesystem::normalizePath('/' . $location . '/' . $filename . $ext); + $target = \OC\Files\Filesystem::normalizePath('/' . $location . '/' . $uniqueFilename); list($owner, $ownerPath) = self::getUidAndFilename($target); @@ -482,14 +486,11 @@ class Trashbin { // get current sharing state $sharingEnabled = \OCP\Share::isEnabled(); - // get the final filename - $target = \OC\Files\Filesystem::normalizePath($location . '/' . $filename); - // get users sharing this file - $usersSharing = $util->getSharingUsersArray($sharingEnabled, $target . $ext, $user); + $usersSharing = $util->getSharingUsersArray($sharingEnabled, $target, $user); // Attempt to set shareKey - $util->setSharedFileKeyfiles($session, $usersSharing, $target . $ext); + $util->setSharedFileKeyfiles($session, $usersSharing, $target); } } @@ -667,9 +668,32 @@ class Trashbin { return $availableSpace; } + /** + * @brief resize trash bin if necessary after a new file was added to ownCloud + * @param string $user user id + */ + public static function resizeTrash($user) { + + $size = self::getTrashbinSize($user); + + if ($size === false || $size < 0) { + $size = self::calculateSize(new \OC\Files\View('/' . $user . '/files_trashbin')); + } + + $freeSpace = self::calculateFreeSpace($size); + + if ($freeSpace < 0) { + $newSize = $size - self::expire($size); + if ($newSize !== $size) { + self::setTrashbinSize($user, $newSize); + } + } + } + /** * clean up the trash bin * @param current size of the trash bin + * @return size of expired files */ private static function expire($trashbinSize) { @@ -780,18 +804,28 @@ class Trashbin { * @param $view filesystem view relative to users root directory * @return string with unique extension */ - private static function getUniqueExtension($location, $filename, $view) { - $ext = ''; + private static function getUniqueFilename($location, $filename, $view) { + $ext = pathinfo($filename, PATHINFO_EXTENSION); + $name = pathinfo($filename, PATHINFO_FILENAME); + $l = \OC_L10N::get('files_trashbin'); + + // if extension is not empty we set a dot in front of it + if ($ext !== '') { + $ext = '.' . $ext; + } + if ($view->file_exists('files' . $location . '/' . $filename)) { - $tmpext = '.restored'; - $ext = $tmpext; - $i = 1; - while ($view->file_exists('files' . $location . '/' . $filename . $ext)) { - $ext = $tmpext . $i; + $i = 2; + $uniqueName = $name . " (".$l->t("restored").")". $ext; + while ($view->file_exists('files' . $location . '/' . $uniqueName)) { + $uniqueName = $name . " (".$l->t("restored") . " " . $i . ")" . $ext; $i++; } + + return $uniqueName; } - return $ext; + + return $filename; } /** @@ -827,7 +861,7 @@ class Trashbin { $result = $query->execute(array($user))->fetchAll(); if ($result) { - return $result[0]['size']; + return (int)$result[0]['size']; } return false; } @@ -855,6 +889,23 @@ class Trashbin { \OCP\Util::connectHook('OC_Filesystem', 'delete', "OCA\Files_Trashbin\Hooks", "remove_hook"); //Listen to delete user signal \OCP\Util::connectHook('OC_User', 'pre_deleteUser', "OCA\Files_Trashbin\Hooks", "deleteUser_hook"); + //Listen to post write hook + \OCP\Util::connectHook('OC_Filesystem', 'post_write', "OCA\Files_Trashbin\Hooks", "post_write_hook"); + } + + /** + * @brief check if trash bin is empty for a given user + * @param string $user + */ + public static function isEmpty($user) { + + $trashSize = self::getTrashbinSize($user); + + if ($trashSize !== false && $trashSize > 0) { + return false; + } + + return true; } } diff --git a/apps/files_trashbin/templates/index.php b/apps/files_trashbin/templates/index.php index 66ec36df867093975df8de6193669c5e5e7f3a77..371765fa69a658783cef13020e8d8d5d167fe531 100644 --- a/apps/files_trashbin/templates/index.php +++ b/apps/files_trashbin/templates/index.php @@ -5,7 +5,7 @@
- +
t('Nothing in here. Your trash bin is empty!'))?>
diff --git a/apps/files_trashbin/templates/part.breadcrumb.php b/apps/files_trashbin/templates/part.breadcrumb.php index 85bb16ffa2d2822a90d3d9e315e45256ce9680f0..8ecab58e5c809c462580d8e31f28fe3ad393b994 100644 --- a/apps/files_trashbin/templates/part.breadcrumb.php +++ b/apps/files_trashbin/templates/part.breadcrumb.php @@ -12,7 +12,7 @@ -
svg" +
svg" data-dir=''>
diff --git a/apps/files_trashbin/templates/part.list.php b/apps/files_trashbin/templates/part.list.php index 94a8eec9515669533f9846edb6c77b6bd3c98ef2..254b08dd36a31e39d0a289ef35e7ded6547fa255 100644 --- a/apps/files_trashbin/templates/part.list.php +++ b/apps/files_trashbin/templates/part.list.php @@ -7,7 +7,7 @@ $name = \OCP\Util::encodePath($file['name']); $directory = \OCP\Util::encodePath($file['directory']); ?> ' @@ -22,14 +22,14 @@ data-dirlisting=0 > + style="background-image:url()" style="background-image:url()" > - + @@ -43,14 +43,14 @@ - + - + diff --git a/apps/files_versions/ajax/getVersions.php b/apps/files_versions/ajax/getVersions.php index f9174c45a650a2acd4f44c42c4f3fbc05c7f7749..4f48f71d8ca3b756e46c8066133e0b5bbb0130ca 100644 --- a/apps/files_versions/ajax/getVersions.php +++ b/apps/files_versions/ajax/getVersions.php @@ -2,24 +2,22 @@ OCP\JSON::checkAppEnabled('files_versions'); $source = $_GET['source']; +$start = $_GET['start']; list ($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($source); $count = 5; //show the newest revisions -if( ($versions = OCA\Files_Versions\Storage::getVersions($uid, $filename, $count)) ) { +if( ($versions = OCA\Files_Versions\Storage::getVersions($uid, $filename)) ) { - $versionsFormatted = array(); - - foreach ( $versions AS $version ) { - $versionsFormatted[] = OCP\Util::formatDate( $version['version'] ); + $endReached = false; + if (count($versions) <= $start+$count) { + $endReached = true; } - $versionsSorted = array_reverse( $versions ); + $versions = array_slice($versions, $start, $count); - if ( !empty( $versionsSorted ) ) { - OCP\JSON::encodedPrint($versionsSorted); - } + \OCP\JSON::success(array('data' => array('versions' => $versions, 'endReached' => $endReached))); } else { - return; + \OCP\JSON::success(array('data' => array('versions' => false, 'endReached' => true))); } diff --git a/apps/files_versions/ajax/rollbackVersion.php b/apps/files_versions/ajax/rollbackVersion.php index 284b46ee09331867fea83d8d1f6e6f958ab6feab..900d8cd6e285d1995bd155dd8497b89c756e97ef 100644 --- a/apps/files_versions/ajax/rollbackVersion.php +++ b/apps/files_versions/ajax/rollbackVersion.php @@ -3,8 +3,6 @@ OCP\JSON::checkAppEnabled('files_versions'); OCP\JSON::callCheck(); -$userDirectory = "/".OCP\USER::getUser()."/files"; - $file = $_GET['file']; $revision=(int)$_GET['revision']; diff --git a/apps/files_versions/appinfo/app.php b/apps/files_versions/appinfo/app.php index 0d0850e186432f2e037262826ab432a576b178d2..5b1e464ba6cadc72f861d86a7ae74f5d3dadb5fb 100644 --- a/apps/files_versions/appinfo/app.php +++ b/apps/files_versions/appinfo/app.php @@ -6,6 +6,7 @@ OC::$CLASSPATH['OCA\Files_Versions\Hooks'] = 'files_versions/lib/hooks.php'; OC::$CLASSPATH['OCA\Files_Versions\Capabilities'] = 'files_versions/lib/capabilities.php'; OCP\Util::addscript('files_versions', 'versions'); +OCP\Util::addStyle('files_versions', 'versions'); // Listen to write signals OCP\Util::connectHook('OC_Filesystem', 'write', "OCA\Files_Versions\Hooks", "write_hook"); diff --git a/apps/files_versions/css/versions.css b/apps/files_versions/css/versions.css index a9b259ce1405ac7da4393a9baee111186f08c710..6a9b3a95698a8cb8da9f4d3624a934c9980a39a2 100644 --- a/apps/files_versions/css/versions.css +++ b/apps/files_versions/css/versions.css @@ -1,16 +1,45 @@ -#history { - margin: 2em 2em 0; +#dropdown.drop-versions { + width:22em; } -#feedback-messages h3 { - font-size: 1.3em; - font-style: italic; +#found_versions li { + width: 100%; + cursor: default; + height: 36px; + float: left; + border-bottom: 1px solid rgba(100,100,100,.1); +} +#found_versions li:last-child { + border-bottom: none; +} + +#found_versions li > * { + padding: 7px; + float: left; + vertical-align: top; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; + filter: alpha(opacity=50); + opacity: .5; +} +#found_versions li > *:hover, +#found_versions li > *:focus { + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; + filter: alpha(opacity=100); + opacity: 1; +} + +#found_versions img { + cursor: pointer; + padding-right: 4px; +} + +#found_versions .versionDate { + min-width: 100px; + vertical-align: text-bottom; } -.success { - color: green; +#found_versions .revertVersion { + cursor: pointer; + float: right; } -.failure { - color: red; -} \ No newline at end of file diff --git a/apps/files_versions/download.php b/apps/files_versions/download.php new file mode 100644 index 0000000000000000000000000000000000000000..040a662e61bf70511d7fdffa716d462d8d812a4e --- /dev/null +++ b/apps/files_versions/download.php @@ -0,0 +1,50 @@ +. +* +*/ + +OCP\JSON::checkAppEnabled('files_versions'); +//OCP\JSON::callCheck(); + +$file = $_GET['file']; +$revision=(int)$_GET['revision']; + +list($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($file); + +$versionName = '/'.$uid.'/files_versions/'.$filename.'.v'.$revision; + +$view = new OC\Files\View('/'); + +$ftype = $view->getMimeType('/'.$uid.'/files/'.$filename); + +header('Content-Type:'.$ftype); +if ( preg_match( "/MSIE/", $_SERVER["HTTP_USER_AGENT"] ) ) { + header( 'Content-Disposition: attachment; filename="' . rawurlencode( basename($filename) ) . '"' ); +} else { + header( 'Content-Disposition: attachment; filename*=UTF-8\'\'' . rawurlencode( basename($filename) ) + . '; filename="' . rawurlencode( basename($filename) ) . '"' ); +} +OCP\Response::disableCaching(); +header('Content-Length: '.$view->filesize($versionName)); + +OC_Util::obEnd(); + +$view->readfile($versionName); diff --git a/apps/files_versions/history.php b/apps/files_versions/history.php deleted file mode 100644 index 719a7208fedb1effff25b7b8366812279952fa73..0000000000000000000000000000000000000000 --- a/apps/files_versions/history.php +++ /dev/null @@ -1,78 +0,0 @@ -. - * - */ - -OCP\User::checkLoggedIn( ); -OCP\Util::addStyle('files_versions', 'versions'); -$tmpl = new OCP\Template( 'files_versions', 'history', 'user' ); -$l = OC_L10N::get('files_versions'); - -if ( isset( $_GET['path'] ) ) { - - $path = $_GET['path']; - $tmpl->assign( 'path', $path ); - $versions = new OCA\Files_Versions\Storage(); - - // roll back to old version if button clicked - if( isset( $_GET['revert'] ) ) { - - if( $versions->rollback( $path, $_GET['revert'] ) ) { - - $tmpl->assign( 'outcome_stat', $l->t('success') ); - - $message = $l->t('File %s was reverted to version %s', - array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) ); - - $tmpl->assign( 'outcome_msg', $message); - - } else { - - $tmpl->assign( 'outcome_stat', $l->t('failure') ); - - $message = $l->t('File %s could not be reverted to version %s', - array($_GET['path'], OCP\Util::formatDate( doubleval($_GET['revert']) ) ) ); - - $tmpl->assign( 'outcome_msg', $message); - - } - - } - - // show the history only if there is something to show - $count = 999; //show the newest revisions - list ($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($path); - if( ($versions = OCA\Files_Versions\Storage::getVersions($uid, $filename, $count)) ) { - - $tmpl->assign( 'versions', array_reverse( $versions ) ); - - }else{ - - $tmpl->assign( 'message', $l->t('No old versions available') ); - - } -}else{ - - $tmpl->assign( 'message', $l->t('No path specified') ); - -} - -$tmpl->printPage( ); diff --git a/apps/files_versions/js/versions.js b/apps/files_versions/js/versions.js index a5b244174831654ac1277f419943c7e561337383..a14de7dbee2640153434db028ac7a878a821c4e0 100644 --- a/apps/files_versions/js/versions.js +++ b/apps/files_versions/js/versions.js @@ -1,4 +1,5 @@ $(document).ready(function(){ + if (typeof FileActions !== 'undefined') { // Add versions button to 'files/index.php' FileActions.register( @@ -14,39 +15,68 @@ $(document).ready(function(){ if (scanFiles.scanning){return;}//workaround to prevent additional http request block scanning feedback var file = $('#dir').val()+'/'+filename; + var createDropDown = true; // Check if drop down is already visible for a different file - if (($('#dropdown').length > 0) && $('#dropdown').hasClass('drop-versions') ) { - if (file != $('#dropdown').data('file')) { - $('#dropdown').hide('blind', function() { - $('#dropdown').remove(); - $('tr').removeClass('mouseOver'); - createVersionsDropdown(filename, file); - }); + if (($('#dropdown').length > 0) ) { + if ( $('#dropdown').hasClass('drop-versions') && file == $('#dropdown').data('file')) { + createDropDown = false; } - } else { + $('#dropdown').remove(); + $('tr').removeClass('mouseOver'); + } + + if(createDropDown === true) { createVersionsDropdown(filename, file); } } ); } + + $(document).on("click", 'span[class="revertVersion"]', function() { + var revision = $(this).attr('id'); + var file = $(this).attr('value'); + revertFile(file, revision); + }); + }); +function revertFile(file, revision) { + + $.ajax({ + type: 'GET', + url: OC.linkTo('files_versions', 'ajax/rollbackVersion.php'), + dataType: 'json', + data: {file: file, revision: revision}, + async: false, + success: function(response) { + if (response.status === 'error') { + OC.Notification.show( t('files_version', 'Failed to revert {file} to revision {timestamp}.', {file:file, timestamp:formatDate(revision * 1000)}) ); + } else { + $('#dropdown').hide('blind', function() { + $('#dropdown').remove(); + $('tr').removeClass('mouseOver'); + // TODO also update the modified time in the web ui + }); + } + } + }); + +} + function goToVersionPage(url){ window.location.assign(url); } function createVersionsDropdown(filename, files) { - var historyUrl = OC.linkTo('files_versions', 'history.php') + '?path='+encodeURIComponent( $( '#dir' ).val() ).replace( /%2F/g, '/' )+'/'+encodeURIComponent( filename ); + var start = 0; var html = ' diff --git a/core/templates/part.pagenavi.php b/core/templates/part.pagenavi.php deleted file mode 100644 index 2f5c218376568e52d8f3ee802f492f71587a284a..0000000000000000000000000000000000000000 --- 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 ef5de653033c573f69077830e5ce6a51dfb46a3f..f926ab44cd4064d466e033a336c9b31d96e7d71d 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 6ccdb9174ce008bc0a3a4cacb6cf9a15b7a67a17..2aa42f705fb51c2e12b9b976dfb849cfb8a2b0e1 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-22 06: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: 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:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes 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:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: 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 "" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Wagwoord" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Jy sal `n skakel via e-pos ontvang om jou wagwoord te herstel." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Gebruikersnaam" @@ -461,11 +462,11 @@ msgstr "Hulp" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Wolk nie gevind" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Skep `n admin-rekening" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Gevorderd" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Stel databasis op" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "sal gebruik word" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Databasis-gebruiker" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Databasis-wagwoord" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Databasis naam" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Maak opstelling klaar" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Teken uit" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "Teken aan" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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_encryption.po b/l10n/af_ZA/files_encryption.po index 920cb218987ebd3cc97ebd7f5423f89855282e9c..6e1898259c6d85035948e9632aff07bac270a62f 100644 --- a/l10n/af_ZA/files_encryption.po +++ b/l10n/af_ZA/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/af_ZA/files_sharing.po b/l10n/af_ZA/files_sharing.po index ff1a3d94c283c205a98c6626107315eeb03628df..a51530f213fa95a095d6e7a11a7db8c90f8f1290 100644 --- a/l10n/af_ZA/files_sharing.po +++ b/l10n/af_ZA/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Wagwoord" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/af_ZA/files_trashbin.po b/l10n/af_ZA/files_trashbin.po index 59b6ea0942ba2798b3d9aee9163d51e33a2f6382..020abe02dd91b116e7d1bd9b06ba32f1c280efd2 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/af_ZA/files_versions.po b/l10n/af_ZA/files_versions.po index a663f48e1751178506b8c9d837661e7a0a0f07c0..85fc84090038a534b7a7a0c4df63da7d79797b84 100644 --- a/l10n/af_ZA/files_versions.po +++ b/l10n/af_ZA/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: af_ZA\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/af_ZA/lib.po b/l10n/af_ZA/lib.po index e89d30f4081c21f4104016c126db3708e2085776..491052f17f05870d131cd406dce58086915345ef 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-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: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webdienste onder jou beheer" @@ -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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/af_ZA/settings.po b/l10n/af_ZA/settings.po index d258f18275043023789553ac4609bdbba70cca5e..64a38fbef8a4ef7cc27677593928550152bbaec7 100644 --- a/l10n/af_ZA/settings.po +++ b/l10n/af_ZA/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wagwoord" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nuwe wagwoord" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/af_ZA/user_webdavauth.po b/l10n/af_ZA/user_webdavauth.po index cf6125d605359a13059b727dbf2340d94364f691..4a6c5f4684d647e25e659beb725184ad29d32242 100644 --- a/l10n/af_ZA/user_webdavauth.po +++ b/l10n/af_ZA/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Afrikaans (South Africa) (http://www.transifex.com/projects/p/owncloud/language/af_ZA/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ar/core.po b/l10n/ar/core.po index 698b2bc7799ee6c50096ac9cec1fa09bc3c636d4..8a6009ccb392d2dbdc1d72804a3f421e9ebbcea9 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} منذ دقائق" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "قبل ساعة مضت" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} ساعة مضت" - -#: js/js.js:720 +#: js/js.js:816 +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 "%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 "today" msgstr "اليوم" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "يوم أمس" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "{days} يوم سابق" - -#: js/js.js:723 +#: 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:821 msgid "last month" msgstr "الشهر الماضي" -#: js/js.js:724 -msgid "{months} months ago" -msgstr "{months} شهر مضت" - -#: js/js.js:725 +#: 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: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 "سنة مضت" @@ -225,8 +241,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خطأ" @@ -246,123 +262,123 @@ msgstr "مشارك" msgid "Share" msgstr "شارك" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "حصل خطأ عند عملية المشاركة" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "حصل خطأ عند عملية إزالة المشاركة" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "حصل خطأ عند عملية إعادة تعيين التصريح بالتوصل" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "شورك معك ومع المجموعة {group} من قبل {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "شورك معك من قبل {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "شارك مع" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "شارك مع رابط" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "حماية كلمة السر" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "كلمة المرور" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "ارسل الرابط بالبريد الى صديق" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "أرسل" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "تاريخ إنتهاء الصلاحية" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "مشاركة عبر البريد الإلكتروني:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "لم يتم العثور على أي شخص" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "لا يسمح بعملية إعادة المشاركة" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "شورك في {item} مع {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "إلغاء مشاركة" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "التحرير مسموح" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "ضبط الوصول" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "إنشاء" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "تحديث" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "حذف" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "مشاركة" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "محمي بكلمة السر" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "حصل خطأ عند عملية إزالة تاريخ إنتهاء الصلاحية" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "حصل خطأ عند عملية تعيين تاريخ إنتهاء الصلاحية" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "جاري الارسال ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +417,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "سوف نرسل لك بريد يحتوي على وصلة لتجديد كلمة السر." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "إسم المستخدم" @@ -461,11 +478,11 @@ msgstr "المساعدة" msgid "Access forbidden" msgstr "التوصّل محظور" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "لم يتم إيجاد" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,8 +511,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Please update your PHP installation to use ownCloud securely." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -515,68 +533,72 @@ msgid "" "because the .htaccess file does not work." msgstr "مجلدات البيانات والملفات الخاصة قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت وذلك بسبب ان ملف .htaccess لا يعمل بشكل صحيح." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "للحصول على معلومات عن كيفية اعداد الخادم الخاص بك , يرجى زيارة الرابط التالي documentation." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "أضف
مستخدم رئيسي " -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "تعديلات متقدمه" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "مجلد المعلومات" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "سيتم استخدمه" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "مستخدم قاعدة البيانات" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "كلمة سر مستخدم قاعدة البيانات" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "إسم قاعدة البيانات" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "مساحة جدول قاعدة البيانات" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "خادم قاعدة البيانات" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "انهاء التعديلات" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "الخروج" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "تم رفض تسجيل الدخول التلقائي!" @@ -607,7 +629,7 @@ msgstr "أدخل" msgid "Alternative Logins" msgstr "اسماء دخول بديلة" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\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,17 @@ msgstr "استبدل {new_name} بـ {old_name}" msgid "undo" msgstr "تراجع" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "جاري تنفيذ عملية الحذف" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "جاري رفع 1 ملف" - -#: js/filelist.js:460 js/filelist.js:518 +#: 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:518 msgid "files uploading" msgstr "" @@ -200,33 +198,37 @@ msgstr "جاري تجهيز عملية التحميل. قد تستغرق بعض msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "إسم مجلد غير صحيح. استخدام مصطلح \"Shared\" محجوز للنظام" -#: 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 "مجلد عدد 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:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: 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 @@ -285,45 +287,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/ar/files_encryption.po b/l10n/ar/files_encryption.po index b364ef0b1af6be2a3f2bd625ae80265976f3351b..871a6b180016122d2c94ea40194805dc81af439d 100644 --- a/l10n/ar/files_encryption.po +++ b/l10n/ar/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ar/files_sharing.po b/l10n/ar/files_sharing.po index d29eee8ffab1e42d83381a0804ab432aa6d83dba..d8d3d8214a180b009098082e4804b0754f5553de 100644 --- a/l10n/ar/files_sharing.po +++ b/l10n/ar/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "كلمة المرور" msgid "Submit" msgstr "تطبيق" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s شارك المجلد %s معك" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s شارك الملف %s معك" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "تحميل" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "رفع" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "إلغاء رفع الملفات" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "لا يوجد عرض مسبق لـ" diff --git a/l10n/ar/files_trashbin.po b/l10n/ar/files_trashbin.po index 99b8ec187f4186925112064d4584818d977dbc97..f07045eb588d3c08914429a3fe984f2a95fcb279 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,53 @@ msgstr "تعذّر حذف%s بشكل دائم" msgid "Couldn't restore %s" msgstr "تعذّر استرجاع %s " -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "إبدء عملية الإستعادة" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "خطأ" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "حذف بشكل دائم" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "حذف بشكل دائم" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "اسم" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "تم الحذف" -#: js/trash.js:186 -msgid "1 folder" -msgstr "مجلد عدد 1" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} مجلدات" - -#: js/trash.js:196 -msgid "1 file" -msgstr "ملف واحد" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ملفات" +#: 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: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" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ar/files_versions.po b/l10n/ar/files_versions.po index 9066fe25fafa54cb1db92342cdfe4f8905b8f84e..d8cdfb73168aac12b368460f44af92c2dfcd3d1c 100644 --- a/l10n/ar/files_versions.po +++ b/l10n/ar/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "الإصدارات" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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 "" +#: js/versions.js:149 +msgid "Restore" +msgstr "استعيد" diff --git a/l10n/ar/lib.po b/l10n/ar/lib.po index e1901ce0fef700a266bc6a8dc9d695a6695b77ff..040d66a42c41137bb7cab044add09f682fe8cb8a 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-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: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\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,66 @@ 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 "سنة مضت" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ar/settings.po b/l10n/ar/settings.po index 9db344d8902e1f2fe98ad5081817151dee3fc73f..668bdd1a446522584acd44cf324cb147b6ad35fa 100644 --- a/l10n/ar/settings.po +++ b/l10n/ar/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "يجب ادخال كلمة مرور صحيحة" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "تحذير أمان" -#: templates/admin.php:20 +#: 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 "مجلدات data وملفاتك قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت. ملف .htaccess الذي وفرته Owncloud لا يعمل . نقترح أن تقوم باعداد خادمك بطريقة تجعل مجلد data غير قابل للوصول اليه عن طريق الانترنت أو أن تقوم بتغيير مساره الى خارج مسار مجلد الصفحات الافتراضي document root الخاص بخادم الويب ." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "تحذير في التنصيب" -#: templates/admin.php:34 +#: 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 "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة" -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "الرجاء التحقق من دليل التنصيب." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "الموديل 'fileinfo' مفقود" -#: templates/admin.php:49 +#: 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 "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق " -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "اللغه لا تعمل" -#: templates/admin.php:65 +#: 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 "لم يتمكن خادم ownCloud هذا كم ضبط لغة النظام الى %s . هذا يعني انه قد يكون هناك أخطاء في اسماء الملفات. نحن نوصي ان تقوم بتركيب الحزم اللازمة لدعم %s على نظامك . " +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "الاتصال بالانترنت لا يعمل" -#: templates/admin.php:80 +#: 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 "خادم الـ Owncloud هذا غير متصل بالانترنت. هذا يعني أن بعض الميزات مثل الربط بوحدة تخزينية خارجيه, التنبيهات الخاصة بالتحديثات أو تركيب تطبيقات من مصادر خارجية لن يعمل . كما ان الوصول الى الملفات من خارج الخادم وارسال رسائل البريد التنبيهية لن تعمل أيضا . نقترح أن تفعل خدمة الانترنت في هذا الخادم اذا أردت ان تستفيد من كافة ميزات Owncloud" - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "مجدول" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها" -#: templates/admin.php:113 +#: 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 "cron.php مسجلة في خدمة webcron . قم باستدعاء صفحة cron.php الموجودة في owncloud root مره كل دقيقة عن طريق بروتوكول http" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "قم باستخدام خدمة cron . قم باستدعاء ملف cron.php الموجود في مجلد Owncloud عن طريق system cronjob مره كل دقيقة" +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "مشاركة" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "السماح بالمشاركة عن طريق الAPI " -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "السماح للتطبيقات بالمشاركة عن طريق الAPI" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "السماح بالعناوين" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "السماح للمستعملين بمشاركة البنود للعموم عن طريق الروابط " -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "السماح بإعادة المشاركة " -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "السماح للمستخدمين باعادة مشاركة الملفات التي تم مشاركتها معهم" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "السماح للمستعملين بإعادة المشاركة مع أي أحد " -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "حماية" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "فرض HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "اجبار المستخدم بالاتصال مع Owncloud عن طريق اتصال مشفر" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "الرجاء الاتصال مع خادم Owncloud هذا عن طريق HTTPS لتفعيل أو تعطيل اجبار الدخول باستخدام " +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "سجل" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "مستوى السجل" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "المزيد" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "أقل" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "إصدار" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "تم إستهلاك %s من المتوفر %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "كلمة المرور" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "لقد تم تغيير كلمة السر" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "لم يتم تعديل كلمة السر بنجاح" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "كلمات السر الحالية" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "كلمات سر جديدة" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "عدل كلمة السر" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "اسم الحساب" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "البريد الإلكترونى" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "عنوانك البريدي" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "أدخل عنوانك البريدي لتفعيل استرجاع كلمة المرور" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "اللغة" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "ساعد في الترجمه" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ar/user_webdavauth.po b/l10n/ar/user_webdavauth.po index fccc6ae2c32882e584b04029f675e74c16a2cd51..69332b724f6a9ad2b069bd00697a59c9cb6ba029 100644 --- a/l10n/ar/user_webdavauth.po +++ b/l10n/ar/user_webdavauth.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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Arabic (http://www.transifex.com/projects/p/owncloud/language/ar/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,12 @@ msgid "WebDAV Authentication" msgstr "تأكد شخصية ال WebDAV" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "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/be/core.po b/l10n/be/core.po index c829cb46e4639538767a4cb57d57a656adfcecd6..fb9c15d2ccc6d650bdb485995b90996c061b61ef 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-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour 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:725 -msgid "{hours} hours 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:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -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:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -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:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +233,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +254,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +409,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +470,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +503,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +525,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Дасведчаны" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Завяршыць ўстаноўку." -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +621,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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_encryption.po b/l10n/be/files_encryption.po index 3fc7cf19381221f0b70f934e4421786d207217bd..4f5399874b4a583df790c0fd4af3321654320130 100644 --- a/l10n/be/files_encryption.po +++ b/l10n/be/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/be/files_sharing.po b/l10n/be/files_sharing.po index 43b93d5cffeddf956df984c3ebb1f496fa5fabc0..d8ea6184ffa147773b2410eaddcd022e5078bbdf 100644 --- a/l10n/be/files_sharing.po +++ b/l10n/be/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/be/files_trashbin.po b/l10n/be/files_trashbin.po index 41c6a308ab9e306dad13db706d6c883d3350859d..770cceb542cbcc8659f7a27e06814e48c5561ec8 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,48 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:194 -msgid "1 file" -msgstr "" - -#: js/trash.js:196 -msgid "{count} files" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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" msgstr "" #: templates/index.php:9 diff --git a/l10n/be/files_versions.po b/l10n/be/files_versions.po index 2ec579f88f7bf46a6c6b63a40c05d4b7924756e8..91cb8002226eba7932186578234d4c0e5f1554ae 100644 --- a/l10n/be/files_versions.po +++ b/l10n/be/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: be\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/be/lib.po b/l10n/be/lib.po index 56bb86b0ac2e4510acc17dbdb0af7ea50eecc720..c95cd9291f690544a8bcd59096eb49f5fcbf9f27 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/be/settings.po b/l10n/be/settings.po index 59e8a73e6d0731abf272c9236280688a2daccfcc..6a5d16012be6edfb77c7b615bca49f247271efa1 100644 --- a/l10n/be/settings.po +++ b/l10n/be/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/be/user_webdavauth.po b/l10n/be/user_webdavauth.po index 34e6bd83127472da1d0b7d72174d60ae8bd2a053..b528cfad4ab99dfc9fc66987b735b9733e5c1270 100644 --- a/l10n/be/user_webdavauth.po +++ b/l10n/be/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Belarusian (http://www.transifex.com/projects/p/owncloud/language/be/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/bg_BG/core.po b/l10n/bg_BG/core.po index eb413c9e8bf87268a711fccd7ad6d7328f461f5e..cf34714ed71956948bf66b2c164ea2d123175bdd 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "преди 1 минута" +#: 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:718 -msgid "1 hour ago" -msgstr "преди 1 час" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: 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 "последните години" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "Споделяне" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Споделено с" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Парола" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "създаване" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Ще получите връзка за нулиране на паролата Ви." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Потребител" @@ -461,11 +462,11 @@ msgstr "Помощ" msgid "Access forbidden" msgstr "Достъпът е забранен" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "облакът не намерен" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Създаване на админ профил" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Разширено" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Директория за данни" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "ще се ползва" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Потребител за базата" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Парола за базата" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Име на базата" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Хост за базата" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Завършване на настройките" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Изход" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "Вход" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\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 "1 папка" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папки" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -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/bg_BG/files_encryption.po b/l10n/bg_BG/files_encryption.po index 6fda53b831ba4e7bf984c1e1b6ffe38f0ce02f0e..2d57c79ed2d8c2444eb9d1f207c5aed15b217f0b 100644 --- a/l10n/bg_BG/files_encryption.po +++ b/l10n/bg_BG/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bg_BG/files_sharing.po b/l10n/bg_BG/files_sharing.po index 855cf3e040c34cb93388aa6ef40283322db6f64c..9c95c045cdb5e1cb27c38d1be92522d25d3a03b7 100644 --- a/l10n/bg_BG/files_sharing.po +++ b/l10n/bg_BG/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Парола" msgid "Submit" msgstr "Потвърждение" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s сподели папката %s с Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s сподели файла %s с Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Изтегляне" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Качване" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Спри качването" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Няма наличен преглед за" diff --git a/l10n/bg_BG/files_trashbin.po b/l10n/bg_BG/files_trashbin.po index d0c54c15ffe8e268ca219837624d551041f8fe47..1b16c5b40973dad0a08455a9bd43995cbbfbc551 100644 --- a/l10n/bg_BG/files_trashbin.po +++ b/l10n/bg_BG/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Димитър Кръстев \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,45 +28,45 @@ msgstr "Невъзможно перманентното изтриване на msgid "Couldn't restore %s" msgstr "Невъзможно възтановяване на %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "извършване на действие по възстановяване" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Грешка" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "изтриване на файла завинаги" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Изтриване завинаги" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Изтрито" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 папка" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} папки" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} файла" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/bg_BG/files_versions.po b/l10n/bg_BG/files_versions.po index 1d86aa6d8d3b10a63b55f9516fc5babdac85959c..908fe475844931b46b011b49478a42432dd4acb1 100644 --- a/l10n/bg_BG/files_versions.po +++ b/l10n/bg_BG/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: bg_BG\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "Файлът %s бе върнат към версия %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Версии" -#: history.php:49 -msgid "failure" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:116 +msgid "No other 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 "" +#: js/versions.js:149 +msgid "Restore" +msgstr "Възтановяване" diff --git a/l10n/bg_BG/lib.po b/l10n/bg_BG/lib.po index 74cc7751a414857bd6a39069ed6c2d79dca52ff7..1aa83779f3d37e47d7da3f0a51bb1c849acbf2e4 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-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: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,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 "уеб услуги под Ваш контрол" @@ -211,54 +207,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] "" #: 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 "последните години" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bg_BG/settings.po b/l10n/bg_BG/settings.po index 65aca26e56565b766624eacdaa1cc19a0a621e01..7741c170207dcde65abb39b4587dfc772c0b6877 100644 --- a/l10n/bg_BG/settings.po +++ b/l10n/bg_BG/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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 "Вашият web сървър все още не е удачно настроен да позволява синхронизация на файлове, защото WebDAV интерфейсът изглежда не работи." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Моля направете повторна справка с ръководството за инсталиране." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Крон" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Споделяне" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Още" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "По-малко" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Версия" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Парола" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Промяната на паролата не беше извършена" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Текуща парола" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Нова парола" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Промяна на паролата" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Екранно име" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Вашия email адрес" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Въведете е-поща за възстановяване на паролата" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Език" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Помогнете с превода" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/bg_BG/user_webdavauth.po b/l10n/bg_BG/user_webdavauth.po index 3b2e883a6182bfb876ad861d9484c07489b1f5a6..dd51b6caad149d0360a9110f243e871d3005417c 100644 --- a/l10n/bg_BG/user_webdavauth.po +++ b/l10n/bg_BG/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Bulgarian (Bulgaria) (http://www.transifex.com/projects/p/owncloud/language/bg_BG/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV идентификация" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud ще изпрати потребителските данни до този URL. " +msgstr "" diff --git a/l10n/bn_BD/core.po b/l10n/bn_BD/core.po index 8581463a646d40cb87c63aaa4857a7f539a3a8b8..ab30218562343410f8455b4de517f150eaf9b089 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "{minutes} মিনিট পূর্বে" +#: 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 "1 ঘন্টা পূর্বে" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} ঘন্টা পূর্বে" - -#: 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 "{days} দিন পূর্বে" +#: 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 "{months} মাস পূর্বে" +#: 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 "বছর পূর্বে" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "সমস্যা" @@ -246,123 +246,123 @@ msgstr "ভাগাভাগিকৃত" msgid "Share" msgstr "ভাগাভাগি কর" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "ভাগাভাগি করতে সমস্যা দেখা দিয়েছে " -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "ভাগাভাগি বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "অনুমতিসমূহ পরিবর্তন করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} আপনার এবং {group} গোষ্ঠীর সাথে ভাগাভাগি করেছেন" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} আপনার সাথে ভাগাভাগি করেছেন" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "যাদের সাথে ভাগাভাগি করা হয়েছে" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "লিংকের সাথে ভাগাভাগি কর" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "কূটশব্দ সুরক্ষিত" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "কূটশব্দ" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "ব্যক্তির সাথে ই-মেইল যুক্ত কর" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "পাঠাও" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করুন" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "ই-মেইলের মাধ্যমে ভাগাভাগি করুনঃ" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "কোন ব্যক্তি খুঁজে পাওয়া গেল না" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "পূনঃরায় ভাগাভাগি অনুমোদিত নয়" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "{user} এর সাথে {item} ভাগাভাগি করা হয়েছে" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "ভাগাভাগি বাতিল " -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "সম্পাদনা করতে পারবেন" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "অধিগম্যতা নিয়ন্ত্রণ" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "তৈরী করুন" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "পরিবর্ধন কর" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "মুছে ফেল" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "ভাগাভাগি কর" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "কূটশব্দদ্বারা সুরক্ষিত" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ বাতিল করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "মেয়াদোত্তীর্ণ হওয়ার তারিখ নির্ধারণ করতে সমস্যা দেখা দিয়েছে" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "পাঠানো হচ্ছে......" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "কূটশব্দ পূনঃনির্ধারণের জন্য একটি টূনঃনির্ধারণ লিংকটি আপনাকে ই-মেইলে পাঠানো হয়েছে ।" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "ব্যবহারকারী" @@ -461,11 +462,11 @@ msgstr "সহায়িকা" msgid "Access forbidden" msgstr "অধিগমনের অনুমতি নেই" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ক্লাউড খুঁজে পাওয়া গেল না" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "প্রশাসক একাউন্ট তৈরী করুন" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "সুচারু" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "ডাটা ফোল্ডার " -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "ব্যবহৃত হবে" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "ডাটাবেজ ব্যবহারকারী" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "ডাটাবেজ কূটশব্দ" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "ডাটাবেজের নাম" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "ডাটাবেজ টেবলস্পেস" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "ডাটাবেজ হোস্ট" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "সেটআপ সুসম্পন্ন কর" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "প্রস্থান" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "প্রবেশ" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\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 "{new_name} কে {old_name} নামে প্রতিস্থাপ msgid "undo" msgstr "ক্রিয়া প্রত্যাহার" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "১টি ফাইল আপলোড করা হচ্ছে" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: 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 "ফোল্ডারের নামটি সঠিক নয়। 'ভাগাভাগি করা' শুধুমাত্র Owncloud এর জন্য সংরক্ষিত।" -#: 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:765 -msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -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/bn_BD/files_encryption.po b/l10n/bn_BD/files_encryption.po index 6b42829178e714620fc093a4d2de270d3ab0674f..f029e2534bca872d25b0cb383fe91e3a9f0a73c5 100644 --- a/l10n/bn_BD/files_encryption.po +++ b/l10n/bn_BD/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bn_BD/files_sharing.po b/l10n/bn_BD/files_sharing.po index 0633b647221361affc95acc4fe2043b3e18153eb..f4120be967e7ca8dedb0d7f2ab217ff8c7ed9df2 100644 --- a/l10n/bn_BD/files_sharing.po +++ b/l10n/bn_BD/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "কূটশব্দ" msgid "Submit" msgstr "জমা দিন" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s আপনার সাথে %s ফোল্ডারটি ভাগাভাগি করেছেন" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s আপনার সাথে %s ফাইলটি ভাগাভাগি করেছেন" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ডাউনলোড" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "আপলোড" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "আপলোড বাতিল কর" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "এর জন্য কোন প্রাকবীক্ষণ সুলভ নয়" diff --git a/l10n/bn_BD/files_trashbin.po b/l10n/bn_BD/files_trashbin.po index dfac2e41a318578a727c117f13a535ba84deeaab..eba36ccfd6b1431a1c5e14582c4b2e79c3772629 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "সমস্যা" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "রাম" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "১টি ফোল্ডার" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} টি ফোল্ডার" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "১টি ফাইল" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} টি ফাইল" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/bn_BD/files_versions.po b/l10n/bn_BD/files_versions.po index 7bc652b6c84833aab793db37f66fddb5a1987208..2910e627278a6c71363d6430a4f7633a89129373 100644 --- a/l10n/bn_BD/files_versions.po +++ b/l10n/bn_BD/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: bn_BD\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "ভার্সন" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/bn_BD/lib.po b/l10n/bn_BD/lib.po index d9e572a75f83df658250227e61b70f4cb25864a9..9f5df0a9649dfc6612fd9cf75225c2689c52c3a5 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-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: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\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 "%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 "বছর পূর্বে" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/bn_BD/settings.po b/l10n/bn_BD/settings.po index dab43528425e5ff6f18325f51536a8ce9bf68e5e..6e3dfcafa4cc775b5a61bcfdbedbcdbe983de699 100644 --- a/l10n/bn_BD/settings.po +++ b/l10n/bn_BD/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "নিরাপত্তাজনিত সতর্কতা" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "বেশী" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "কম" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "ভার্সন" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "আপনি ব্যবহার করছেন %s, সুলভ %s এর মধ্যে।" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "কূটশব্দ" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "আপনার কূটশব্দটি পরিবর্তন করা হয়েছে " -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "আপনার কূটশব্দটি পরিবর্তন করতে সক্ষম নয়" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "বর্তমান কূটশব্দ" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "নতুন কূটশব্দ" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "কূটশব্দ পরিবর্তন করুন" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "ইমেইল" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "আপনার ই-মেইল ঠিকানা" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "কূটশব্দ পূনরূদ্ধার সক্রিয় করার জন্য ই-মেইল ঠিকানাটি পূরণ করুন" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "ভাষা" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "অনুবাদ করতে সহায়তা করুন" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "SSL সনদপত্র যাচাইকরণ বন্ধ রাক।" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "শুধুমাত্র যদি এই বিকল্পটি ব্যবহার করেই সংযোগ কার্যকরী হয় তবে আপনার ownCloud সার্ভারে LDAP সার্ভারের SSL সনদপত্রটি আমদানি করুন।" +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "ব্যবহারকারীর প্রদর্শিতব্য নামের ক্ষেত্র" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "ব্যবহারকারীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "গোষ্ঠীর প্রদর্শিতব্য নামের ক্ষেত্র" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "গোষ্ঠীর ownCloud নাম তৈরি করার জন্য ব্যভহৃত LDAP বৈশিষ্ট্য।" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/bn_BD/user_webdavauth.po b/l10n/bn_BD/user_webdavauth.po index c4bf197ff78e71d3096daf2bef1c49fef5c1c913..bc58e7fccf36a43d65e06ca1b52f128fc29bf3a1 100644 --- a/l10n/bn_BD/user_webdavauth.po +++ b/l10n/bn_BD/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Bengali (Bangladesh) (http://www.transifex.com/projects/p/owncloud/language/bn_BD/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/bs/core.po b/l10n/bs/core.po index 91d9aefc862c0f7b06e023160ac0cd3e9d2b3849..d544fc01ed139660a3d9991679aa4d2a8def6fc7 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-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes 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:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 "" @@ -225,8 +229,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,123 +250,123 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +405,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +466,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +499,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +617,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Podijeli" 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 "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: 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 "Fasikla" 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/bs/files_encryption.po b/l10n/bs/files_encryption.po index 15de964f5c6e9c322a13a734de2248425adb206f..8e55996135c976418c13f8ee4605cec19c33b61e 100644 --- a/l10n/bs/files_encryption.po +++ b/l10n/bs/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/bs/files_sharing.po b/l10n/bs/files_sharing.po index 6893cf5162b3b13592e593b33c10ae8dde9d8ffa..47ff900767acf32658bf32295d9e042b91307bfe 100644 --- a/l10n/bs/files_sharing.po +++ b/l10n/bs/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/bs/files_trashbin.po b/l10n/bs/files_trashbin.po index b7666f6c1ef579d2389f317255363b0047679083..319adc5d239e28576fa5b9fc505e3efd5be81b7f 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-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,46 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/bs/files_versions.po b/l10n/bs/files_versions.po index 221060a5ffda7a75fbcf48b5dd34e0d727ebde4b..ac7a80d9c4b31cdcdfb6c1a352dc33ca0b703f67 100644 --- a/l10n/bs/files_versions.po +++ b/l10n/bs/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-13 02:16+0200\n" -"PO-Revision-Date: 2013-06-12 21:41+0000\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" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: bs\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 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/bs/lib.po b/l10n/bs/lib.po index 4def658658b71818d2c03921cc5b1f2fef8a6c28..aaa796e1039071b633588e48a5988c1676c2b063 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/bs/settings.po b/l10n/bs/settings.po index 9826177e68dada94bf1fca5fb17ba4d2056ac848..f5e22a8b729244d3d8cff9bd3fbc12d8feacfbef 100644 --- a/l10n/bs/settings.po +++ b/l10n/bs/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/bs/user_webdavauth.po b/l10n/bs/user_webdavauth.po index 93f72af76555c0451884fa9c2d65ae81ee00a835..11abb30867fd137f41fb8f2c166bcc3cf80ea2e9 100644 --- a/l10n/bs/user_webdavauth.po +++ b/l10n/bs/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Bosnian (http://www.transifex.com/projects/p/owncloud/language/bs/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ca/core.po b/l10n/ca/core.po index 6fc3f8aa94deef6350d5be8f31895c59dd7e838c..a9864b9876a2af44c6f7a2b988248c9d2879890e 100644 --- a/l10n/ca/core.po +++ b/l10n/ca/core.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,59 @@ msgstr "Novembre" msgid "December" msgstr "Desembre" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Configuració" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "segons enrere" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "fa 1 minut" +#: 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 "fa {minutes} minuts" +#: 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 "fa 1 hora" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "fa {hours} hores" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "avui" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "ahir" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "el mes passat" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "mesos enrere" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "l'any passat" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "anys enrere" @@ -227,8 +227,8 @@ msgstr "No s'ha especificat el tipus d'objecte." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -248,123 +248,123 @@ msgstr "Compartit" msgid "Share" msgstr "Comparteix" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error en compartir" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Error en deixar de compartir" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Error en canviar els permisos" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartit amb vos i amb el grup {group} per {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Compartit amb vos per {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Comparteix amb" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Comparteix amb enllaç" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Protegir amb contrasenya" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Contrasenya" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Permet pujada pública" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Enllaç per correu electrónic amb la persona" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Envia" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Estableix la data de venciment" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data de venciment" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Comparteix per correu electrònic" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "No s'ha trobat ningú" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "No es permet compartir de nou" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Compartit en {item} amb {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Deixa de compartir" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "pot editar" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "control d'accés" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "crea" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "actualitza" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "elimina" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "comparteix" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegeix amb contrasenya" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error en eliminar la data de venciment" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error en establir la data de venciment" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviant..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "El correu electrónic s'ha enviat" @@ -379,9 +379,10 @@ msgstr "L'actualització ha estat incorrecte. Comuniqueu aquest error a Esteu segur que el correu/nom d'usuari és cor msgid "You will receive a link to reset your password via Email." msgstr "Rebreu un enllaç al correu electrònic per reiniciar la contrasenya." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nom d'usuari" @@ -463,11 +464,11 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Accés prohibit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No s'ha trobat el núvol" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "La versió de PHP que useu és vulnerable a l'atac per NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Actualitzeu la instal·lació de PHP per usar ownCloud de forma segura." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Actualitzeu la instal·lació de PHP per usar %s de forma segura." #: templates/installation.php:32 msgid "" @@ -517,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "La carpeta de dades i els seus fitxers probablement són accessibles des d'internet perquè el fitxer .htaccess no funciona." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Per més informació sobre com configurar correctament el servidor, mireu la documentació." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Per informació de com configurar el servidor, comproveu la documentació." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crea un compte d'administrador" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Carpeta de dades" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configura la base de dades" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "s'usarà" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Usuari de la base de dades" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Contrasenya de la base de dades" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nom de la base de dades" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Espai de taula de la base de dades" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Ordinador central de la base de dades" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Acaba la configuració" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s està disponible. Obtingueu més informació de com actualitzar." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Surt" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "L'ha rebutjat l'acceditació automàtica!" @@ -609,7 +615,7 @@ msgstr "Inici de sessió" msgid "Alternative Logins" msgstr "Acreditacions alternatives" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Comparteix" msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Esborra" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Reanomena" @@ -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:457 -msgid "1 file uploading" -msgstr "1 fitxer pujant" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "fitxers pujant" @@ -202,33 +196,29 @@ msgstr "S'està preparant la baixada. Pot trigar una estona si els fitxers són msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de carpeta no vàlid. L'ús de 'Shared' està reservat per Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Mida" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} carpetes" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fitxer" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -287,45 +277,49 @@ msgstr "Carpeta" msgid "From link" msgstr "Des d'enllaç" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fitxers esborrats" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No teniu permisos d'escriptura aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Res per aquí. Pugeu alguna cosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Baixa" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixa de compartir" -#: templates/index.php:107 +#: 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" -#: 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 "Els fitxers que esteu intentant pujar excedeixen la mida màxima de pujada del servidor" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "S'estan escanejant els fitxers, espereu" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Actualment escanejant" diff --git a/l10n/ca/files_encryption.po b/l10n/ca/files_encryption.po index 7e7d5f535ea4383662480a988a78cb36dae321a3..b7b99faec20e561c6aff54f14ab8a09a3f556996 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-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 15:50+0000\n" -"Last-Translator: Josep Tomàs \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" @@ -70,10 +70,14 @@ msgstr "Manca de requisits." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Assegureu-vos que teniu instal·lada la versió de PHP 5.3.3 o posterior, i que teniu l'extensió OpenSSL PHP activada i configurada correctament. Per ara, l'aplicació de xifrat esta desactivada." +"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 "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:" +msgstr "Els usuaris següents no estan configurats per a l'encriptació:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ca/files_sharing.po b/l10n/ca/files_sharing.po index ba3ffec06a6838e072a667a686859015451899eb..90e87e114979ad0e8a8dddb56ed59def3b8c9d73 100644 --- a/l10n/ca/files_sharing.po +++ b/l10n/ca/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "Contrasenya" msgid "Submit" msgstr "Envia" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Aquest enllaç sembla que no funciona." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Les raons podrien ser:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "l'element ha estat eliminat" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "l'enllaç ha vençut" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "s'ha desactivat la compartició" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Per més informació contacteu amb qui us ha enviat l'enllaç." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha compartit la carpeta %s amb vós" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha compartit el fitxer %s amb vós" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Baixa" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Puja" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancel·la la pujada" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No hi ha vista prèvia disponible per a" diff --git a/l10n/ca/files_trashbin.po b/l10n/ca/files_trashbin.po index 40d0345aeadd232fb4e2a196a7e99ee3c040e65c..69f190dc6aef4bdfb8df52516a40a581716d768b 100644 --- a/l10n/ca/files_trashbin.po +++ b/l10n/ca/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,45 @@ msgstr "No s'ha pogut esborrar permanentment %s" msgid "Couldn't restore %s" msgstr "No s'ha pogut restaurar %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "executa l'operació de restauració" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Error" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "esborra el fitxer permanentment" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Esborra permanentment" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Eliminat" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} carpetes" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fitxer" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} fitxers" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "restaurat" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ca/files_versions.po b/l10n/ca/files_versions.po index c1e4d1db8d646f91c09239b8435899f5c3f613bf..0ded7de3c6e26e3b06226314b6ef1e00b096fc2b 100644 --- a/l10n/ca/files_versions.po +++ b/l10n/ca/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# rogerc, 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:50+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" @@ -17,41 +18,27 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "No s'ha pogut revertir: %s" -#: history.php:40 -msgid "success" -msgstr "èxit" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "El fitxer %s s'ha revertit a la versió %s" - -#: history.php:49 -msgid "failure" -msgstr "fallada" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "El fitxer %s no s'ha pogut revertir a la versió %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versions" -#: history.php:69 -msgid "No old versions available" -msgstr "No hi ha versións antigues disponibles" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Ha fallat en retornar {file} a la revisió {timestamp}" -#: history.php:74 -msgid "No path specified" -msgstr "No heu especificat el camí" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Més versions..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versions" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "No hi ha altres versions disponibles" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverteix un fitxer a una versió anterior fent clic en el seu botó de reverteix" +#: js/versions.js:149 +msgid "Restore" +msgstr "Recupera" diff --git a/l10n/ca/lib.po b/l10n/ca/lib.po index 8f316d07dbebaf58b0b713fb613fd75689502760..28c2be4f31ce9cc9ad5ee1c7c078adfc56de9e52 100644 --- a/l10n/ca/lib.po +++ b/l10n/ca/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-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: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "Ha fallat l'actualització \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "controleu els vostres serveis web" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "no es pot obrir \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Els fitxers seleccionats son massa grans per generar un fitxer zip." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Provocat per:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/ca/settings.po b/l10n/ca/settings.po index 5feb4f36bda8c6e40c512b321b186b2b4fce94ed..bfb24dfb9de2b3a2a78ab858e84647ad7eecac7d 100644 --- a/l10n/ca/settings.po +++ b/l10n/ca/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -171,175 +171,173 @@ msgstr "Heu de facilitar una contrasenya vàlida" msgid "__language_name__" msgstr "Català" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Avís de seguretat" -#: templates/admin.php:20 +#: 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 "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web." +"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." +msgstr "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Avís de configuració" -#: templates/admin.php:34 +#: 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 "El servidor web no està configurat correctament per permetre la sincronització de fitxers perquè la interfície WebDAV sembla no funcionar correctament." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "Comproveu les guies d'instal·lació." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "No s'ha trobat el mòdul 'fileinfo'" -#: templates/admin.php:49 +#: 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 "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Locale no funciona" -#: templates/admin.php:65 +#: 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 "Aquest servidor ownCloud no pot establir el locale del sistema a %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s." +"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 "Les locale del sistema no es poden establir en %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "La connexió a internet no funciona" -#: templates/admin.php:80 +#: 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 "Aquest servidor ownCloud no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament externs, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu gaudir de totes les possibilitats d'ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Executa una tasca per cada paquet carregat" -#: templates/admin.php:113 +#: 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 "cron.php està registrat en un servei webcron. Feu la crida a cron.php a l'arrel d'ownCloud cada minut a través de http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php està registrat en un servei webcron que fa una crida cada minut a la pàgina cron.php a través de http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Usa un servei cron del sistema. Feu la crida al fitxer cron.php a través d'un cronjob del sistema cada minut." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Utilitzeu el sistema de servei cron per cridar el fitxer cron.php cada minut." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Compartir" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Habilita l'API de compartir" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Permet que les aplicacions utilitzin l'API de compartir" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Permet enllaços" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Permet als usuaris compartir elements amb el públic amb enllaços" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Permet pujada pública" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permet als usuaris habilitar pujades de tercers en les seves carpetes compartides al públic" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Permet compartir de nou" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Permet als usuaris compartir de nou elements ja compartits amb ells" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Permet compartir amb qualsevol" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Permet als usuaris compartir només amb els usuaris del seu grup" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Seguretat" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Força HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Força als clients la connexió amb ownCloud via una connexió encriptada." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Força la connexió dels clients a %s a través d'una connexió encriptada." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Connecteu aquesta instància onwCloud via HTTPS per habilitar o deshabilitar el forçament SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Registre" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivell de registre" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Més" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Menys" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versió" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Heu utilitzat %s d'un total disponible de %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasenya" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "La seva contrasenya s'ha canviat" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "No s'ha pogut canviar la contrasenya" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Contrasenya actual" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Contrasenya nova" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Canvia la contrasenya" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nom a mostrar" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Correu electrònic" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Correu electrònic" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Ompliu el correu electrònic per activar la recuperació de contrasenya" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Idioma" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Ajudeu-nos amb la traducció" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to Warning:
Apps user_ldap and user_webdavauth are incompatible. You may" -" experience unexpected behaviour. Please ask your system administrator to " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments no desitjats. Demaneu a l'administrador del sistema que en desactivi una." +msgstr "Avís: Les aplicacions user_ldap i user_webdavauth són incompatibles. Podeu experimentar comportaments inesperats. Demaneu a l'administrador del sistema que en desactivi una." #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "Desactiva el servidor principal" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Quan està connectat, ownCloud només es connecta al servidor de la rèplica." +msgid "Only connect to the replica server." +msgstr "Connecta només al servidor rèplica." #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Desactiva la validació de certificat SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor ownCloud." +"certificate in your %s server." +msgstr "Si la connexió només funciona amb aquesta opció, importeu el certificat SSL del servidor LDAP en el vostre servidor %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "Camp per mostrar el nom d'usuari" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP a usar per generar el nom d'usuari ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "Atribut LDAP a usar per generar el nom a mostrar de l'usuari." #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Camp per mostrar el nom del grup" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP a usar per generar el nom de grup ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "Atribut LDAP a usar per generar el nom a mostrar del grup." #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home a ownCloud. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits)." +"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." +msgstr "Per defecte el nom d'usuari intern es crearà a partir de l'atribut UUID. Això assegura que el nom d'usuari és únic i que els caràcters no s'han de convertir. El nom d'usuari intern té la restricció que només estan permesos els caràcters: [ a-zA-Z0-9_.@- ]. Els altres caràcters es substitueixen pel seu corresponent ASCII o simplement s'ometen. En cas de col·lisió s'incrementa/decrementa en un. El nom d'usuari intern s'utilitza per identificar un usuari internament. També és el nom per defecte de la carpeta home d'usuari. És també un port de URLs remotes, per exemple tots els serveis *DAV. Amb aquest arranjament es pot variar el comportament per defecte. Per obtenir un comportament similar al d'abans de ownCloud 5, escriviu el nom d'usuari a mostrar en el camp següent. Deixei-lo en blanc si preferiu el comportament per defecte. Els canvis tindran efecte només en els nous usuaris LDAP mapats (afegits)." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "Sobrescriu la detecció UUID" #: 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 " +"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 behaviour. " +" 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 "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran en els usuaris i grups LDAP mapats de nou (afegits)." +msgstr "Per defecte, owncloud autodetecta l'atribut UUID. L'atribut UUID s'utilitza per identificar usuaris i grups de forma indubtable. També el nom d'usuari intern es crearà en base a la UUIS, si no heu especificat res diferent a dalt. Podeu sobreescriure l'arranjament i passar l'atribut que desitgeu. Heu d'assegurar-vos que l'atribut que escolliu pot ser recollit tant pels usuaris com pels grups i que és únic. Deixeu-ho en blanc si preferiu el comportament per defecte. els canvis s'aplicaran als usuaris i grups LDAP mapats de nou (afegits)." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "Mapatge d'usuari Nom d'usuari-LDAP" #: 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 "ownCloud utilitza els noms d'usuari per emmagatzemar i assignar (meta)dades. per tal d'identificar usuaris de forma precisa, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix un mapatge del nom d'usuari ownCloud a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. Addicionalment, la DN es desa a la memòria de cau per reduïr la interacció LDAP, però no s'usa per a identificació. Si la DN canvia, els canvis són detectats per ownCloud. El nom d'usuari intern ownCloud s'utilitza internament arreu de ownCloud. Eliminar els mapatges tindrà efectues per tot arreu. L'eliminació dels mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No elimineu mai els mapatges en un entorn de producció. Elimineu-los només en un estadi experimental o de prova." +"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." +msgstr "Els noms d'usuari s'usen per desar i assignar (meta)dades. Per tal d'identificar amb precisió i reconèixer els usuaris, cada usuari LDAP tindrà un nom d'usuari intern. Això requereix mapatge del nom d'usuari a l'usuari LDAP. El nom d'usuari creat es mapa a la UUID de l'usuari LDAP. A més, la DN es posa a la memòria de cau per reduir la interacció LDAP, però no s'usa per identificació. En cas que la DN canvïi, els canvis es trobaran. El nom d'usuari intern s'usa a tot arreu. Si esborreu els mapatges quedaran sobrants a tot arreu. Esborrar els mapatges no és sensible a la configuració, afecta a totes les configuracions LDAP! No esborreu mai els mapatges en un entorn de producció, només en un estadi de prova o experimental." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/ca/user_webdavauth.po b/l10n/ca/user_webdavauth.po index ca202c2dd7979730659f1d48c177356948007717..ce6c92011258ead08a8083b8e9b954a2b3eaa84c 100644 --- a/l10n/ca/user_webdavauth.po +++ b/l10n/ca/user_webdavauth.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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 21:00+0000\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 08:00+0000\n" "Last-Translator: rogerc\n" "Language-Team: Catalan (http://www.transifex.com/projects/p/owncloud/language/ca/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "Autenticació WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Adreça:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud enviarà les credencials d'usuari a aquesta URL. Aquest endollable en comprova la resposta i interpretarà els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." +msgstr "Les credencials d'usuari s'enviaran a aquesta adreça. Aquest connector comprova la resposta i interpreta els codis d'estat 401 i 403 com a credencials no vàlides, i qualsevol altra resposta com a credencials vàlides." diff --git a/l10n/cs_CZ/core.po b/l10n/cs_CZ/core.po index 34ef4330d87870be5f8c83abb26eb296be73088d..ed23a4058a7810c2a785187536e53c06f3424ee6 100644 --- a/l10n/cs_CZ/core.po +++ b/l10n/cs_CZ/core.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# janinko , 2013 # Honza K. , 2013 +# Martin , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: I Robot \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" @@ -139,59 +142,63 @@ msgstr "Listopad" msgid "December" msgstr "Prosinec" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Nastavení" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "před pár vteřinami" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "před minutou" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "před {minutes} minutami" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "před hodinou" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "před {hours} hodinami" - -#: js/js.js:720 +#: 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 "today" msgstr "dnes" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "včera" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "minulý měsíc" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "před měsíci" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "minulý rok" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "před lety" @@ -227,8 +234,8 @@ msgstr "Není určen typ objektu." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Chyba" @@ -238,7 +245,7 @@ msgstr "Není určen název aplikace." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" -msgstr "Požadovaný soubor {file} není nainstalován." +msgstr "Požadovaný soubor {file} není nainstalován!" #: js/share.js:30 js/share.js:45 js/share.js:87 msgid "Shared" @@ -248,123 +255,123 @@ msgstr "Sdílené" msgid "Share" msgstr "Sdílet" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Chyba při sdílení" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Chyba při rušení sdílení" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Chyba při změně oprávnění" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "S Vámi a skupinou {group} sdílí {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "S Vámi sdílí {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Sdílet s" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Sdílet s odkazem" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Chránit heslem" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Heslo" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Povolit veřejné nahrávání" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Odeslat osobě odkaz e-mailem" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Odeslat" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Nastavit datum vypršení platnosti" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Datum vypršení platnosti" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Sdílet e-mailem:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Žádní lidé nenalezeni" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Sdílení již sdílené položky není povoleno" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Sdíleno v {item} s {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Zrušit sdílení" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "lze upravovat" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "řízení přístupu" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "vytvořit" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "aktualizovat" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "smazat" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "sdílet" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Chráněno heslem" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Chyba při odstraňování data vypršení platnosti" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Chyba při nastavení data vypršení platnosti" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Odesílám ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail odeslán" @@ -379,9 +386,10 @@ msgstr "Aktualizace neproběhla úspěšně. Nahlaste prosím problém do Pok #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "Požadavek selhal.
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" +msgstr "Požadavek selhal!
Ujistili jste se, že vaše uživatelské jméno a e-mail jsou správně?" #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Bude Vám e-mailem zaslán odkaz pro obnovu hesla." +msgstr "E-mailem Vám bude zaslán odkaz pro obnovu hesla." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Uživatelské jméno" @@ -413,11 +421,11 @@ 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 "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč obnovy, neexistuje způsob jak získat po obnově hesla vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" +msgstr "Vaše soubory jsou šifrovány. Pokud nemáte povolen klíč pro obnovu, neexistuje způsob jak získat, po změně hesla, vaše data. Pokud si nejste jisti co dělat, kontaktujte nejprve svého správce. Opravdu si přejete pokračovat?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "Ano, opravdu si nyní přeji obnovit své heslo" +msgstr "Ano, opravdu si nyní přeji obnovit mé heslo" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -463,11 +471,11 @@ msgstr "Nápověda" msgid "Access forbidden" msgstr "Přístup zakázán" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nebyl nalezen" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -476,7 +484,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "Ahoj,\n\njenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" +msgstr "Ahoj,\n\njenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete zde: %s\n\nDíky" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -496,8 +504,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Verze vašeho PHP je napadnutelná pomocí techniky \"NULL Byte\" (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Aktualizujte prosím vaši instanci PHP pro bezpečné používání ownCloud." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Aktualizujte prosím vaši instanci PHP pro bezpečné používání %s." #: templates/installation.php:32 msgid "" @@ -517,77 +526,81 @@ msgid "" "because the .htaccess file does not work." msgstr "Váš adresář s daty a soubory jsou dostupné z internetu, protože soubor .htaccess nefunguje." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "Pro informace jak správně nastavit váš server se podívejte do dokumentace." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Pro informace, jak správně nastavit váš server, se podívejte do dokumentace." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Vytvořit účet správce" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Pokročilé" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Složka s daty" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Nastavit databázi" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "bude použito" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Uživatel databáze" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Heslo databáze" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Název databáze" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tabulkový prostor databáze" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Hostitel databáze" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Dokončit nastavení" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získejte více informací k postupu aktualizace." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Odhlásit se" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Více aplikací" + #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Automatické přihlášení odmítnuto." +msgstr "Automatické přihlášení odmítnuto!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "V nedávné době jste nezměnili své heslo, Váš účet může být kompromitován." +msgstr "Pokud jste v nedávné době neměnili své heslo, Váš účet může být kompromitován!" #: templates/login.php:12 msgid "Please change your password to secure your account again." @@ -609,12 +622,12 @@ msgstr "Přihlásit" msgid "Alternative Logins" msgstr "Alternativní přihlášení" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

Cheers!" -msgstr "Ahoj,

jenom vám chci oznámit že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky" +msgstr "Ahoj,

jenom vám chci oznámit, že %s s vámi sdílí %s.\nPodívat se můžete
zde.

Díky" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/cs_CZ/files.po b/l10n/cs_CZ/files.po index d1f168ae5cad20077d540462f014e34923f06d9e..6086a138d9ea260d93c18455073d525eb48e0565 100644 --- a/l10n/cs_CZ/files.po +++ b/l10n/cs_CZ/files.po @@ -4,13 +4,14 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -22,7 +23,7 @@ msgstr "" #: ajax/move.php:17 #, php-format msgid "Could not move %s - File with this name already exists" -msgstr "Nelze přesunout %s - existuje soubor se stejným názvem" +msgstr "Nelze přesunout %s - již existuje soubor se stejným názvem" #: ajax/move.php:27 ajax/move.php:30 #, php-format @@ -39,7 +40,7 @@ msgstr "Neplatný token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" -msgstr "Soubor nebyl odeslán. Neznámá chyba" +msgstr "Žádný soubor nebyl odeslán. Neznámá chyba" #: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" @@ -54,7 +55,7 @@ msgstr "Odesílaný soubor přesahuje velikost upload_max_filesize povolenou v p msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný v formuláři HTML" +msgstr "Odeslaný soubor přesáhl svou velikostí parametr MAX_FILE_SIZE specifikovaný ve formuláři HTML" #: ajax/upload.php:70 msgid "The uploaded file was only partially uploaded" @@ -86,11 +87,11 @@ msgstr "Soubory" #: js/file-upload.js:11 msgid "Unable to upload your file as it is a directory or has 0 bytes" -msgstr "Nelze odeslat Váš soubor, protože je to adresář, nebo je jeho velikost 0 bajtů" +msgstr "Nelze odeslat Váš soubor, protože je to adresář nebo jeho velikost je 0 bajtů" #: js/file-upload.js:24 msgid "Not enough space available" -msgstr "Nedostatek dostupného místa" +msgstr "Nedostatek volného místa" #: js/file-upload.js:64 msgid "Upload cancelled." @@ -99,11 +100,11 @@ msgstr "Odesílání zrušeno." #: js/file-upload.js:167 js/files.js:266 msgid "" "File upload is in progress. Leaving the page now will cancel the upload." -msgstr "Probíhá odesílání souboru. Opuštění stránky vyústí ve zrušení nahrávání." +msgstr "Probíhá odesílání souboru. Opuštění stránky způsobí zrušení nahrávání." #: js/file-upload.js:233 js/files.js:339 msgid "URL cannot be empty." -msgstr "URL nemůže být prázdná" +msgstr "URL nemůže být prázdná." #: js/file-upload.js:238 lib/app.php:53 msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" @@ -122,11 +123,7 @@ msgstr "Sdílet" msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Smazat" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Přejmenovat" @@ -156,17 +153,16 @@ msgstr "nahrazeno {new_name} s {old_name}" #: js/filelist.js:350 msgid "undo" -msgstr "zpět" - -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "provést smazání" +msgstr "vrátit zpět" -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "odesílá se 1 soubor" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "soubory se odesílají" @@ -196,44 +192,42 @@ msgstr "Vaše úložiště je téměř plné ({usedSpacePercent}%)" msgid "" "Your download is being prepared. This might take some time if the files are " "big." -msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké může to chvíli trvat." +msgstr "Vaše soubory ke stažení se připravují. Pokud jsou velké, může to chvíli trvat." #: js/files.js:344 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -msgstr "Neplatný název složky. Použití 'Shared' je rezervováno pro vnitřní potřeby Owncloud" +msgstr "Neplatný název složky. Pojmenování 'Shared' je rezervováno pro vnitřní potřeby ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Název" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 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žky" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 soubor" - -#: js/files.js:775 -msgid "{count} files" -msgstr "{count} soubory" +#: 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 nemůže být přejmenován" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -287,55 +281,59 @@ msgstr "Složka" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Odstraněné soubory" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nemáte zde práva zápisu." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Žádný obsah. Nahrajte něco." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Stáhnout" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Zrušit sdílení" -#: templates/index.php:107 +#: 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ý" -#: 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 "Soubory, které se snažíte odeslat, překračují limit velikosti odesílání na tomto serveru." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Soubory se prohledávají, prosím čekejte." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Aktuální prohledávání" #: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "adresář" #: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "adresáře" #: templates/part.list.php:85 msgid "file" diff --git a/l10n/cs_CZ/files_encryption.po b/l10n/cs_CZ/files_encryption.po index 32b3711e2caf3c6b51d82c0a884c3695c23e2f74..ce70af9cff726349e9eedc5ed74c255a087ba168 100644 --- a/l10n/cs_CZ/files_encryption.po +++ b/l10n/cs_CZ/files_encryption.po @@ -3,15 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# janinko , 2013 # Honza K. , 2013 +# Martin , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-14 02:02+0200\n" -"PO-Revision-Date: 2013-07-13 21:40+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" @@ -35,7 +38,7 @@ msgstr "Záchranný klíč byl úspěšně zakázán" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče." +msgstr "Nelze zakázat záchranný klíč. Zkontrolujte prosím heslo vašeho záchranného klíče!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." @@ -43,7 +46,7 @@ msgstr "Heslo bylo úspěšně změněno." #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "Nelze změnit heslo. Pravděpodobně nebylo stávající heslo zadáno správně." +msgstr "Změna hesla se nezdařila. Pravděpodobně nebylo stávající heslo zadáno správně." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." @@ -61,18 +64,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 "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." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Nesplněné závislosti." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "" +"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 "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:" +msgstr "Následující uživatelé nemají nastavené šifrování:" #: js/settings-admin.js:11 msgid "Saving..." @@ -82,11 +89,11 @@ msgstr "Ukládám..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Váš soukromý klíč není platný! Pravděpodobně bylo vaše heslo změněno zvenčí." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Můžete odemknout váš soukromý klíč ve vašem" #: templates/invalid_private_key.php:7 msgid "personal settings" @@ -99,11 +106,11 @@ msgstr "Šifrování" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Povolit klíč pro obnovu (umožňuje obnovu uživatelských souborů v případě ztráty hesla)" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Heslo klíče pro obnovu" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -115,15 +122,15 @@ msgstr "Zakázáno" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Změna hesla klíče pro obnovu:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Původní heslo klíče pro obnovu" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nové heslo klíče pro obnovu" #: templates/settings-admin.php:53 msgid "Change Password" @@ -131,21 +138,21 @@ msgstr "Změnit heslo" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Heslo vašeho soukromého klíče se již neshoduje s vaším přihlašovacím heslem:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Změňte heslo vaše soukromého klíče na stejné jako vaše přihlašovací heslo." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Pokud si nepamatujete vaše původní heslo, můžete požádat správce o obnovu vašich souborů." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "Staré přihlašovací heslo" +msgstr "Původní přihlašovací heslo" #: templates/settings-personal.php:30 msgid "Current log-in password" @@ -153,7 +160,7 @@ msgstr "Aktuální přihlašovací heslo" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Změnit heslo soukromého klíče" #: templates/settings-personal.php:45 msgid "Enable password recovery:" @@ -163,12 +170,12 @@ msgstr "Povolit obnovu hesla:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "Povolení vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" +msgstr "Zapnutí této volby vám umožní znovu získat přístup k vašim zašifrovaným souborům pokud ztratíte heslo" #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "Možnosti obnovy souborů aktualizovány" +msgstr "Možnosti záchrany souborů aktualizovány" #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "Nelze aktualizovat obnovu souborů" +msgstr "Nelze nastavit záchranu souborů" diff --git a/l10n/cs_CZ/files_external.po b/l10n/cs_CZ/files_external.po index d1284c351c846bc5d027d41afc4edec4cc087178..a9e29ba28e7829572bdf937afd2e2ffdd15bccb1 100644 --- a/l10n/cs_CZ/files_external.po +++ b/l10n/cs_CZ/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pstast , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-05 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" @@ -17,7 +18,7 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Přístup povolen" @@ -25,7 +26,7 @@ msgstr "Přístup povolen" msgid "Error configuring Dropbox storage" msgstr "Chyba při nastavení úložiště Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Povolit přístup" @@ -33,29 +34,29 @@ msgstr "Povolit přístup" msgid "Please provide a valid Dropbox app key and secret." msgstr "Zadejte, prosím, platný klíč a bezpečnostní frázi aplikace Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Chyba při nastavení úložiště Google Drive" -#: lib/config.php:447 +#: lib/config.php:448 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Varování: není nainstalován program \"smbclient\". Není možné připojení oddílů CIFS/SMB. Prosím požádejte svého správce systému ať jej nainstaluje." -#: lib/config.php:450 +#: lib/config.php:451 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 "Varování: není nainstalována, nebo povolena, podpora FTP v PHP. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." +msgstr "Varování: podpora FTP v PHP není povolena nebo není nainstalována. Není možné připojení oddílů FTP. Prosím požádejte svého správce systému ať ji nainstaluje." -#: lib/config.php:453 +#: lib/config.php:454 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 "Varování: není nainstalována, nebo povolena, podpora Curl v PHP. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje." +msgstr "Varování: podpora CURL v PHP není povolena nebo není nainstalována. Není možné připojení oddílů ownCloud, WebDAV, či GoogleDrive. Prosím požádejte svého správce systému ať ji nainstaluje." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/cs_CZ/files_sharing.po b/l10n/cs_CZ/files_sharing.po index eb58d44f787508bc604fe00771b1341723b8def2..a6be32abb2ff63ef3c3e138633ab9c7418fd8880 100644 --- a/l10n/cs_CZ/files_sharing.po +++ b/l10n/cs_CZ/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pstast , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Heslo není správné. Zkuste to znovu." #: templates/authenticate.php:7 msgid "Password" @@ -29,28 +30,52 @@ msgstr "Heslo" msgid "Submit" msgstr "Odeslat" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Je nám líto, ale tento odkaz již není funkční." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Možné důvody:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "položka byla odebrána" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "platnost odkazu vypršela" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "sdílení je zakázané" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Pro více informací kontaktujte osobu, která vám zaslala tento odkaz." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s s Vámi sdílí složku %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s s Vámi sdílí soubor %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Stáhnout" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Odeslat" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Zrušit odesílání" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Náhled není dostupný pro" diff --git a/l10n/cs_CZ/files_trashbin.po b/l10n/cs_CZ/files_trashbin.po index 4f125de9483e1e6ac2233b3d3e3c1ff86fea46fc..776ed0a08deb0a28cb64d669d957014d3fbed45f 100644 --- a/l10n/cs_CZ/files_trashbin.po +++ b/l10n/cs_CZ/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \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" @@ -27,45 +28,47 @@ msgstr "Nelze trvale odstranit %s" msgid "Couldn't restore %s" msgstr "Nelze obnovit %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "provést obnovu" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Chyba" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "trvale odstranit soubor" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Trvale odstranit" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Název" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Smazáno" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 složka" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} složky" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 soubor" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} soubory" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "obnoveno" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/cs_CZ/files_versions.po b/l10n/cs_CZ/files_versions.po index 11930a8b793d8417ce25bed12750ed3efa6bdf51..bff662e4570771b5a8dbb9c45a4b4ccb4d8449da 100644 --- a/l10n/cs_CZ/files_versions.po +++ b/l10n/cs_CZ/files_versions.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+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" @@ -17,41 +19,27 @@ msgstr "" "Language: cs_CZ\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "Nelze navrátit: %s" +msgstr "Nelze vrátit: %s" -#: history.php:40 -msgid "success" -msgstr "úspěch" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Soubor %s byl navrácen na verzi %s" - -#: history.php:49 -msgid "failure" -msgstr "sehlhání" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Soubor %s nemohl být navrácen na verzi %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Verze" -#: history.php:69 -msgid "No old versions available" -msgstr "Nejsou dostupné žádné starší verze" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Selhalo vrácení souboru {file} na verzi {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Nezadána cesta" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Více verzí..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Verze" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Žádné další verze nejsou dostupné" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Navraťte soubor do předchozí verze kliknutím na tlačítko navrátit" +#: js/versions.js:149 +msgid "Restore" +msgstr "Obnovit" diff --git a/l10n/cs_CZ/lib.po b/l10n/cs_CZ/lib.po index d19bbe4bb92b93dbc939a6fe69e567c1996e5713..5cde1831012b13f8cf60ca2979ae4460e7c7a11d 100644 --- a/l10n/cs_CZ/lib.po +++ b/l10n/cs_CZ/lib.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 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: Czech (Czech Republic) (http://www.transifex.com/projects/p/owncloud/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -35,30 +37,26 @@ 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 "" +msgstr "Selhala aktualizace verze \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" -msgstr "služby webu pod Vaší kontrolou" +msgstr "webové služby pod Vaší kontrolou" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "nelze otevřít \"%s\"" #: files.php:226 msgid "ZIP download is turned off." -msgstr "Stahování ZIPu je vypnuto." +msgstr "Stahování v ZIPu je vypnuto." #: files.php:227 msgid "Files need to be downloaded one by one." @@ -70,13 +68,13 @@ msgstr "Zpět k souborům" #: files.php:253 msgid "Selected files too large to generate zip file." -msgstr "Vybrané soubory jsou příliš velké pro vytvoření zip souboru." +msgstr "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru." #: files.php:254 msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce." #: helper.php:235 msgid "couldn't be determined" @@ -124,16 +122,16 @@ msgstr "V názvu databáze %s nesmíte používat tečky." #: setup/mssql.php:20 #, php-format msgid "MS SQL username and/or password not valid: %s" -msgstr "Uživatelské jméno, či heslo MSSQL není platné: %s" +msgstr "Uživatelské jméno či heslo MSSQL není platné: %s" #: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 #: setup/postgresql.php:24 setup/postgresql.php:70 msgid "You need to enter either an existing account or the administrator." -msgstr "Musíte zadat existující účet, či správce." +msgstr "Musíte zadat existující účet či správce." #: setup/mysql.php:12 msgid "MySQL username and/or password not valid" -msgstr "Uživatelské jméno, či heslo MySQL není platné" +msgstr "Uživatelské jméno či heslo MySQL není platné" #: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 #: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 @@ -142,7 +140,7 @@ msgstr "Uživatelské jméno, či heslo MySQL není platné" #: setup/postgresql.php:125 setup/postgresql.php:134 #, php-format msgid "DB Error: \"%s\"" -msgstr "Chyba DB: \"%s\"" +msgstr "Chyba databáze: \"%s\"" #: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 #: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 @@ -150,7 +148,7 @@ msgstr "Chyba DB: \"%s\"" #: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" -msgstr "Podezřelý příkaz byl: \"%s\"" +msgstr "Příslušný příkaz byl: \"%s\"" #: setup/mysql.php:85 #, php-format @@ -159,7 +157,7 @@ msgstr "Uživatel '%s'@'localhost' již v MySQL existuje." #: setup/mysql.php:86 msgid "Drop this user from MySQL" -msgstr "Zahodit uživatele z MySQL" +msgstr "Zrušte tohoto uživatele z MySQL" #: setup/mysql.php:91 #, php-format @@ -168,7 +166,7 @@ msgstr "Uživatel '%s'@'%%' již v MySQL existuje" #: setup/mysql.php:92 msgid "Drop this user from MySQL." -msgstr "Zahodit uživatele z MySQL." +msgstr "Zrušte tohoto uživatele z MySQL" #: setup/oci.php:34 msgid "Oracle connection could not be established" @@ -176,16 +174,16 @@ msgstr "Spojení s Oracle nemohlo být navázáno" #: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" -msgstr "Uživatelské jméno, či heslo Oracle není platné" +msgstr "Uživatelské jméno či heslo Oracle není platné" #: setup/oci.php:173 setup/oci.php:205 #, php-format msgid "Offending command was: \"%s\", name: %s, password: %s" -msgstr "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s" +msgstr "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s" #: setup/postgresql.php:23 setup/postgresql.php:69 msgid "PostgreSQL username and/or password not valid" -msgstr "Uživatelské jméno, či heslo PostgreSQL není platné" +msgstr "Uživatelské jméno či heslo PostgreSQL není platné" #: setup.php:28 msgid "Set an admin username." @@ -199,7 +197,7 @@ msgstr "Zadejte heslo správce." msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." -msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." +msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, rozhraní WebDAV se zdá být rozbité." #: setup.php:185 #, php-format @@ -208,59 +206,59 @@ msgstr "Zkonzultujte, prosím, průvodce instalací." #: template/functions.php:80 msgid "seconds ago" -msgstr "před pár vteřinami" +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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Příčina:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/cs_CZ/settings.po b/l10n/cs_CZ/settings.po index 48b0341583ed68921acb37d7add493db0e20570a..ccdfe4c30f48e32d827d160b36f59f46c3a94d7a 100644 --- a/l10n/cs_CZ/settings.po +++ b/l10n/cs_CZ/settings.po @@ -4,14 +4,15 @@ # # Translators: # Honza K. , 2013 +# pstast , 2013 # Tomáš Chvátal , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+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" @@ -26,7 +27,7 @@ msgstr "Nelze načíst seznam z App Store" #: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 #: ajax/togglegroups.php:20 msgid "Authentication error" -msgstr "Chyba ověření" +msgstr "Chyba přihlášení" #: ajax/changedisplayname.php:31 msgid "Your display name has been changed." @@ -84,7 +85,7 @@ msgstr "Nelze přidat uživatele do skupiny %s" #: ajax/togglegroups.php:36 #, php-format msgid "Unable to remove user from group %s" -msgstr "Nelze odstranit uživatele ze skupiny %s" +msgstr "Nelze odebrat uživatele ze skupiny %s" #: ajax/updateapp.php:14 msgid "Couldn't update app." @@ -132,7 +133,7 @@ msgstr "smazáno" #: js/users.js:47 msgid "undo" -msgstr "zpět" +msgstr "vrátit zpět" #: js/users.js:79 msgid "Unable to remove user" @@ -171,175 +172,173 @@ msgstr "Musíte zadat platné heslo" msgid "__language_name__" msgstr "Česky" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Bezpečnostní upozornění" -#: templates/admin.php:20 +#: 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 "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. Důrazně Vám doporučujeme nastavit váš webový server tak, aby nebyl adresář dat přístupný, nebo přesunout adresář dat mimo kořenovou složku dokumentů webového serveru." +"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." +msgstr "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Upozornění nastavení" -#: templates/admin.php:34 +#: 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 "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV je rozbité." +msgstr "Váš webový server není správně nastaven pro umožnění synchronizace, protože rozhraní WebDAV se zdá nefunkční." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Zkonzultujte, prosím, průvodce instalací." +msgid "Please double check the installation guides." +msgstr "Zkontrolujte prosím znovu instalační příručku." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Schází modul 'fileinfo'" -#: templates/admin.php:49 +#: 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 "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." +msgstr "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" -msgstr "Locale nefunguje" +msgstr "Lokalizace nefunguje" -#: templates/admin.php:65 +#: 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 "Server ownCloud nemůže nastavit locale systému na %s. Můžete tedy mít problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat potřebné balíčky pro podporu %s." +"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 "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" -msgstr "Spojení s internetem nefujguje" +msgstr "Připojení k internetu nefunguje" -#: templates/admin.php:80 +#: 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 "Server ownCloud nemá funkční spojení s internetem. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích, nebo instalace aplikací třetích stran nefungují. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit internetové spojení pro tento server." - -#: templates/admin.php:94 +"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." +msgstr "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" -msgstr "Spustit jednu úlohu s každou načtenou stránkou" +msgstr "Spustit jednu úlohu s každým načtením stránky" -#: templates/admin.php:113 +#: 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 "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Sdílení" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Povolit API sdílení" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Povolit aplikacím používat API sdílení" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Povolit odkazy" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" -msgstr "Povolit uživatelům sdílet položky s veřejností pomocí odkazů" +msgstr "Povolit uživatelům sdílet položky veřejně pomocí odkazů" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Povolit veřejné nahrávání souborů" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Povolit znovu-sdílení" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Povolit uživatelům sdílet s kýmkoliv" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Zabezpečení" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Vynutit HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Vynutí připojování klientů ownCloud skrze šifrované spojení." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Vynutí připojování klientů k %s šifrovaným spojením." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Připojte se, prosím, k této instanci ownCloud skrze HTTPS pro povolení, nebo zakažte vynucení SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Záznam" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" -msgstr "Úroveň záznamu" +msgstr "Úroveň zaznamenávání" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Více" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Méně" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Verze" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the komun #: templates/apps.php:13 msgid "Add your App" -msgstr "Přidat Vaší aplikaci" +msgstr "Přidat Vaši aplikaci" #: templates/apps.php:28 msgid "More Apps" @@ -397,72 +396,72 @@ msgstr "Bugtracker" msgid "Commercial Support" msgstr "Placená podpora" -#: templates/personal.php:10 +#: templates/personal.php:8 msgid "Get the apps to sync your files" msgstr "Získat aplikace pro synchronizaci vašich souborů" -#: templates/personal.php:21 +#: templates/personal.php:19 msgid "Show First Run Wizard again" msgstr "Znovu zobrazit průvodce prvním spuštěním" -#: templates/personal.php:29 +#: templates/personal.php:27 #, php-format msgid "You have used %s of the available %s" msgstr "Používáte %s z %s dostupných" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Vaše heslo bylo změněno" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" -msgstr "Vaše heslo nelze změnit" +msgstr "Změna vašeho hesla se nezdařila" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Současné heslo" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Změnit heslo" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované jméno" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Vaše e-mailová adresa" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" -msgstr "Pro povolení změny hesla vyplňte adresu e-mailu" +msgstr "Pro povolení obnovy hesla vyplňte e-mailovou adresu" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Pomoci s překladem" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"Last-Translator: Honza K. \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" @@ -90,9 +90,9 @@ msgstr "Potvrdit smazání" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Varování: Aplikace user_ldap a user_webdavauth nejsou kompatibilní. Může nastávat neočekávané chování. Požádejte, prosím, správce systému aby jednu z nich zakázal." +msgstr "Varování: Aplikace user_ldap a user_webdavauth jsou vzájemně nekompatibilní. Můžete zaznamenat neočekávané chování. Požádejte prosím vašeho systémového administrátora o zakázání jednoho z nich." #: templates/settings.php:12 msgid "" @@ -223,8 +223,8 @@ msgid "Disable Main Server" msgstr "Zakázat hlavní serveru" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Při zapnutí se ownCloud připojí pouze k záložnímu serveru" +msgid "Only connect to the replica server." +msgstr "Připojit jen k replikujícímu serveru." #: templates/settings.php:76 msgid "Use TLS" @@ -243,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "Vypnout ověřování SSL certifikátu." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Pokud připojení pracuje pouze s touto možností, tak importujte SSL certifikát SSL serveru do Vašeho serveru ownCloud" +"certificate in your %s server." +msgstr "Pokud spojení funguje jen s touto volbou, importujte SSL certifikát vašeho LDAP serveru na server %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -266,11 +267,11 @@ msgstr "Nastavení adresáře" #: templates/settings.php:83 msgid "User Display Name Field" -msgstr "Pole pro zobrazované jméno uživatele" +msgstr "Pole zobrazovaného jména uživatele" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP použitý k vytvoření jména uživatele ownCloud" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "LDAP atribut použitý k vytvoření zobrazovaného jména uživatele." #: templates/settings.php:84 msgid "Base User Tree" @@ -290,11 +291,11 @@ msgstr "Volitelné, atribut na řádku" #: templates/settings.php:86 msgid "Group Display Name Field" -msgstr "Pole pro zobrazení jména skupiny" +msgstr "Pole zobrazovaného jména skupiny" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP použitý k vytvoření jména skupiny ownCloud" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "LDAP atribut použitý k vytvoření zobrazovaného jména skupiny." #: templates/settings.php:87 msgid "Base Group Tree" @@ -354,13 +355,13 @@ msgid "" "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 "" +"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." +msgstr "Ve výchozím nastavení bude uživatelské jméno vytvořeno z UUID atributu. To zajistí unikátnost uživatelského jména bez potřeby konverze znaků. Interní uživatelské jméno je omezena na znaky: [ a-zA-Z0-9_.@- ]. Ostatní znaky jsou nahrazeny jejich ASCII ekvivalentem nebo jednoduše vynechány. V případě kolize uživatelských jmen bude přidáno/navýšeno číslo. Interní uživatelské jméno je používáno k interní identifikaci uživatele. Je také výchozím názvem uživatelského domovského adresáře. Je také součástí URL pro vzdálený přístup, například všech *DAV služeb. S tímto nastavením bude výchozí chování přepsáno. Pro dosažení podobného chování jako před ownCloudem 5 uveďte atribut zobrazovaného jména do pole níže. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele z LDAP." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -372,14 +373,14 @@ msgstr "Nastavit ručně UUID atribut" #: 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 " +"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 behaviour. " +" 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 "Ve výchozím nastavení je UUID atribut nalezen automaticky. UUID atribut je používán pro nezpochybnitelnou identifikaci uživatelů a skupin z LDAP. Navíc je na základě UUID tvořeno také interní uživatelské jméno, pokud není nastaveno jinak. Můžete výchozí nastavení přepsat a použít atribut který sami zvolíte. Musíte se ale ujistit že atribut který vyberete bude uveden jak u uživatelů, tak i u skupin a je unikátní. Ponechte prázdné pro výchozí chování. Změna bude mít vliv jen na nově namapované (přidané) uživatele a skupiny z LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -391,18 +392,17 @@ msgstr "Mapování uživatelských jmen z LDAPu" #: 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 "" +"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." +msgstr "Uživatelská jména jsou používány pro uchovávání a přiřazování (meta)dat. Pro správnou identifikaci a rozpoznání uživatelů bude mít každý uživatel z LDAP interní uživatelské jméno. To je nezbytné pro mapování uživatelských jmen na uživatele LDAP. Vytvořené uživatelské jméno je mapováno na UUID uživatele v LDAP. Navíc je cachována DN pro reprodukci interakce s LDAP, ale není používána pro identifikaci. Pokud se DN změní, bude to správně rozpoznáno. Vyčištění mapování zanechá zbytky všude. Vyčištění navíc není specifické konfiguraci, bude mít vliv na všechny LDAP konfigurace! Nikdy nečistěte mapování v produkčním prostředí, jen v testovací nebo experimentální fázi." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/cs_CZ/user_webdavauth.po b/l10n/cs_CZ/user_webdavauth.po index 6cbaabde3fc067a7ea9a414897e68c37919b5a80..27661055ff63a116a4fd9406f60154ffd198ec5a 100644 --- a/l10n/cs_CZ/user_webdavauth.po +++ b/l10n/cs_CZ/user_webdavauth.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Honza K. , 2013 # Tomáš Chvátal , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 17:20+0000\n" -"Last-Translator: Tomáš Chvátal \n" +"POT-Creation-Date: 2013-08-02 01:56-0400\n" +"PO-Revision-Date: 2013-08-01 19:28+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" @@ -23,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "Ověření WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "Adresa:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud odešle uživatelské údaje na zadanou URL. Plugin zkontroluje odpověď a považuje návratovou hodnotu HTTP 401 a 403 za neplatné údaje a všechny ostatní hodnoty jako platné přihlašovací údaje." +msgstr "Uživatelské přihlašovací údaje budou odeslány na tuto adresu. Tento plugin zkontroluje odpověď serveru a interpretuje návratový kód HTTP 401 a 403 jako neplatné přihlašovací údaje a jakýkoli jiný jako platné přihlašovací údaje." diff --git a/l10n/cy_GB/core.po b/l10n/cy_GB/core.po index 626ac010b51bd2555e00520b9de1e5ed09573093..eda31fda90771099784b91e20db9b599d3e86a15 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Gosodiadau" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "eiliad yn ôl" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 munud yn ôl" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} munud yn ôl" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 awr yn ôl" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} awr yn ôl" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/js.js:818 msgid "today" msgstr "heddiw" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "ddoe" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "mis diwethaf" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "misoedd yn ôl" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "y llynedd" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "blwyddyn yn ôl" @@ -226,8 +234,8 @@ msgstr "Nid yw'r math o wrthrych wedi cael ei nodi." #: js/oc-vcategories.js:14 js/oc-vcategories.js:80 js/oc-vcategories.js:95 #: js/oc-vcategories.js:110 js/oc-vcategories.js:125 js/oc-vcategories.js:136 #: js/oc-vcategories.js:172 js/oc-vcategories.js:189 js/oc-vcategories.js:195 -#: js/oc-vcategories.js:199 js/share.js:136 js/share.js:143 js/share.js:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Gwall" @@ -247,123 +255,123 @@ msgstr "Rhannwyd" msgid "Share" msgstr "Rhannu" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Gwall wrth rannu" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Gwall wrth ddad-rannu" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Gwall wrth newid caniatâd" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Rhannwyd â chi a'r grŵp {group} gan {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Rhannwyd â chi gan {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Rhannu gyda" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Dolen ar gyfer rhannu" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Diogelu cyfrinair" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Cyfrinair" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "E-bostio dolen at berson" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Anfon" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Gosod dyddiad dod i ben" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Dyddiad dod i ben" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Rhannu drwy e-bost:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Heb ganfod pobl" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Does dim hawl ail-rannu" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Rhannwyd yn {item} â {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Dad-rannu" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "yn gallu golygu" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "rheolaeth mynediad" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "creu" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "diweddaru" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "dileu" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "rhannu" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Diogelwyd â chyfrinair" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Gwall wrth ddad-osod dyddiad dod i ben" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Gwall wrth osod dyddiad dod i ben" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Yn anfon ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Anfonwyd yr e-bost" @@ -378,9 +386,10 @@ msgstr "Methodd y diweddariad. Adroddwch y mater hwn i Gwiriwch eich enw defnyddiwr ac ebost." msgid "You will receive a link to reset your password via Email." msgstr "Byddwch yn derbyn dolen drwy e-bost i ailosod eich cyfrinair." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Enw defnyddiwr" @@ -462,11 +471,11 @@ msgstr "Cymorth" msgid "Access forbidden" msgstr "Mynediad wedi'i wahardd" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Methwyd canfod cwmwl" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +504,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Mae eich fersiwn PHP yn agored i ymosodiad NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Diweddarwch eich PHP i ddefnyddio ownCloud yn ddiogel." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -516,68 +526,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Mwy na thebyg fod modd cyrraedd eich cyfeiriadur data a ffeilau o'r rhyngrwyd oherwydd nid yw'r ffeil .htaccess yn gweithio. " -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Am wybodaeth ar sut i gyflunio'r gweinydd yn gywir, cyfeiriwch at y ddogfennaeth." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crewch gyfrif gweinyddol" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Uwch" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Plygell data" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Cyflunio'r gronfa ddata" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "ddefnyddir" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Defnyddiwr cronfa ddata" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Cyfrinair cronfa ddata" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Enw cronfa ddata" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tablespace cronfa ddata" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Gwesteiwr cronfa ddata" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Gorffen sefydlu" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ar gael. Mwy o wybodaeth am sut i ddiweddaru." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Allgofnodi" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Gwrthodwyd mewngofnodi awtomatig!" @@ -608,7 +622,7 @@ msgstr "Mewngofnodi" msgid "Alternative Logins" msgstr "Mewngofnodiadau Amgen" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Rhannu" msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Dileu" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Ailenwi" @@ -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:457 -msgid "1 file uploading" -msgstr "1 ffeil yn llwytho i fyny" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "ffeiliau'n llwytho i fyny" @@ -200,33 +196,33 @@ msgstr "Wrthi'n paratoi i lwytho i lawr. Gall gymryd peth amser os yw'r ffeiliau msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Enw plygell annilys. Mae'r defnydd o 'Shared' yn cael ei gadw gan Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Enw" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Maint" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Addaswyd" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 blygell" - -#: 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:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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 "Plygell" msgid "From link" msgstr "Dolen o" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ffeiliau ddilewyd" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nid oes gennych hawliau ysgrifennu fan hyn." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Does dim byd fan hyn. Llwythwch rhywbeth i fyny!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Llwytho i lawr" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dad-rannu" -#: templates/index.php:107 +#: 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" -#: 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 "Mae'r ffeiliau rydych yn ceisio llwytho i fyny'n fwy na maint mwyaf llwytho ffeiliau i fyny ar y gweinydd hwn." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Arhoswch, mae ffeiliau'n cael eu sganio." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Sganio cyfredol" diff --git a/l10n/cy_GB/files_encryption.po b/l10n/cy_GB/files_encryption.po index 580563b10a4555796ce48dffe6e496d0c61d6dca..0b6627605f1bbf8c11d81039d61c21cd8acc61e2 100644 --- a/l10n/cy_GB/files_encryption.po +++ b/l10n/cy_GB/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/cy_GB/files_sharing.po b/l10n/cy_GB/files_sharing.po index 38dd52e50483299b98e791b27c23b54c6736227a..6c8d5f69531ce20f22cfb9d541acb1aea76ca22e 100644 --- a/l10n/cy_GB/files_sharing.po +++ b/l10n/cy_GB/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Cyfrinair" msgid "Submit" msgstr "Cyflwyno" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "Rhannodd %s blygell %s â chi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "Rhannodd %s ffeil %s â chi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Llwytho i lawr" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Llwytho i fyny" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Diddymu llwytho i fyny" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Does dim rhagolwg ar gael ar gyfer" diff --git a/l10n/cy_GB/files_trashbin.po b/l10n/cy_GB/files_trashbin.po index fe3fb2b3480c13b7bc6419b450392e633b85c5b2..b9b366cf6367b6da3651a35311d407b2cbf09d96 100644 --- a/l10n/cy_GB/files_trashbin.po +++ b/l10n/cy_GB/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: ubuntucymraeg \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,45 +27,49 @@ msgstr "Methwyd dileu %s yn barhaol" msgid "Couldn't restore %s" msgstr "Methwyd adfer %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "gweithrediad adfer" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Gwall" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "dileu ffeil yn barhaol" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Dileu'n barhaol" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Enw" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Wedi dileu" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 blygell" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} plygell" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ffeil" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ffeil" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/cy_GB/files_versions.po b/l10n/cy_GB/files_versions.po index ee2268ca74e97c311ce3894553a36d19d246d95a..d8a7a8ea90fe3b754ad5f57e9774bfccbab08b27 100644 --- a/l10n/cy_GB/files_versions.po +++ b/l10n/cy_GB/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: cy_GB\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +#: js/versions.js:149 +msgid "Restore" +msgstr "Adfer" diff --git a/l10n/cy_GB/lib.po b/l10n/cy_GB/lib.po index ce21b1417ac21baa2d722032f4935b610fcf6441..f53ef9f6f27368e4f4efffb3d7dad3fe371f72f9 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-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: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "gwasanaethau gwe a reolir gennych" @@ -210,54 +206,58 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/cy_GB/settings.po b/l10n/cy_GB/settings.po index d6626aaa1ef9d9761141def85a76d1dfdcb9aaf0..bf5e3f365c636c3cf44de9972ed88e78afcaae3e 100644 --- a/l10n/cy_GB/settings.po +++ b/l10n/cy_GB/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Rhybudd Diogelwch" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: templates/admin.php:32 msgid "" "Your web server is not yet properly setup to allow files synchronization " "because the WebDAV interface seems to be broken." msgstr "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Gwiriwch y canllawiau gosod eto." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Cyfrinair" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Cyfrinair newydd" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-bost" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/cy_GB/user_webdavauth.po b/l10n/cy_GB/user_webdavauth.po index d034799f1886f2fc77fb41d7f5f6f4917f67769c..2658b11cd1cee24b608496b1de6fd91485441322 100644 --- a/l10n/cy_GB/user_webdavauth.po +++ b/l10n/cy_GB/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Welsh (United Kingdom) (http://www.transifex.com/projects/p/owncloud/language/cy_GB/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/da/core.po b/l10n/da/core.po index c96e2648e4576040c95626a5da041556bedd63fe..99b3fdb8c67da9359fc25f5e512ba129da2185d9 100644 --- a/l10n/da/core.po +++ b/l10n/da/core.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: I Robot \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" @@ -22,7 +24,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s delte »%s« med sig" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -139,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Indstillinger" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minut siden" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutter siden" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 time 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:719 -msgid "{hours} hours ago" -msgstr "{hours} timer 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:720 +#: js/js.js:815 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "i går" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "sidste måned" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "måneder siden" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "sidste år" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "år siden" @@ -227,8 +229,8 @@ msgstr "Objekttypen er ikke angivet." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fejl" @@ -248,123 +250,123 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fejl under deling" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Fejl under annullering af deling" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Fejl under justering af rettigheder" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med dig og gruppen {group} af {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Delt med dig af {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Del med" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Del med link" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Beskyt med adgangskode" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Kodeord" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Tillad Offentlig Upload" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "E-mail link til person" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Send" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Vælg udløbsdato" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Udløbsdato" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Del via email:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Ingen personer fundet" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Videredeling ikke tilladt" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Fjern deling" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "kan redigere" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "Adgangskontrol" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "opret" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "opdater" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "slet" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "del" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Beskyttet med adgangskode" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fejl ved fjernelse af udløbsdato" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fejl under sætning af udløbsdato" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail afsendt" @@ -379,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}" @@ -402,7 +405,7 @@ msgstr "Anmodning mislykkedes!
Er du sikker på at din e-post / brugernavn va msgid "You will receive a link to reset your password via Email." msgstr "Du vil modtage et link til at nulstille dit kodeord via email." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Brugernavn" @@ -413,11 +416,11 @@ 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" -msgstr "" +msgstr "Ja, Jeg ønsker virkelig at nulstille mit kodeord" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -463,11 +466,11 @@ msgstr "Hjælp" msgid "Access forbidden" msgstr "Adgang forbudt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Sky ikke fundet" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -476,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" @@ -496,8 +499,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Din PHP-version er sårbar overfor et NULL Byte angreb (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Opdater venligs din PHP-installation for at kunne bruge ownCloud sikkert." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Opdater venligst din PHP installation for at anvende %s sikkert." #: templates/installation.php:32 msgid "" @@ -517,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Dine data mappe og filer er sandsynligvis tilgængelige fra internettet fordi .htaccess filen ikke virker." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "For at vide mere om hvordan du konfigurerer din server ordentligt, se venligst dokumentationen." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "For information om, hvordan du konfigurerer din server korrekt se dokumentationen." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Opret en administratorkonto" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avanceret" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "vil blive brugt" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Databasebruger" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Databasekodeord" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Navn på database" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Database tabelplads" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Databasehost" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Afslut opsætning" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er tilgængelig. Få mere information om, hvordan du opdaterer." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -609,12 +617,12 @@ msgstr "Log ind" msgid "Alternative Logins" msgstr "Alternative logins" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format 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 41b2c0a768c2ade1ea6faf31f77d83133b4b6255..168a6cd426a41e998cd7d55f54ece9854538ab78 100644 --- a/l10n/da/files.po +++ b/l10n/da/files.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Danish (http://www.transifex.com/projects/p/owncloud/language/da/)\n" "MIME-Version: 1.0\n" @@ -30,11 +32,11 @@ msgstr "Kunne ikke flytte %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Ude af stand til at vælge upload mappe." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Ugyldig Token " #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -121,11 +123,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slet permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Slet" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Omdøb" @@ -157,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:457 -msgid "1 file uploading" -msgstr "1 fil uploades" +#: 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:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "uploader filer" @@ -201,38 +197,34 @@ msgstr "Dit download forberedes. Dette kan tage lidt tid ved større filer." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldigt mappenavn. Brug af \"Shared\" er forbeholdt Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Ændret" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n mappe" +msgstr[1] "%n mapper" -#: 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 msgid "%s could not be renamed" -msgstr "" +msgstr "%s kunne ikke omdøbes" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -286,55 +278,59 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Slettede filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikke skriverettigheder her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Her er tomt. Upload noget!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Fjern deling" -#: templates/index.php:107 +#: 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" -#: 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 "Filerne, du prøver at uploade, er større end den maksimale størrelse for fil-upload på denne server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Filerne bliver indlæst, vent venligst." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Indlæser" #: templates/part.list.php:74 msgid "directory" -msgstr "" +msgstr "mappe" #: templates/part.list.php:76 msgid "directories" -msgstr "" +msgstr "Mapper" #: templates/part.list.php:85 msgid "file" diff --git a/l10n/da/files_encryption.po b/l10n/da/files_encryption.po index 9df3c49abd129994dca82422a4407faf4bf66e57..105ba059f9e98fd43c8132d145e282ed9fac6b96 100644 --- a/l10n/da/files_encryption.po +++ b/l10n/da/files_encryption.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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" @@ -19,39 +21,39 @@ msgstr "" #: ajax/adminrecovery.php:29 msgid "Recovery key successfully enabled" -msgstr "" +msgstr "Gendannelsesnøgle aktiveret med succes" #: ajax/adminrecovery.php:34 msgid "" "Could not enable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Kunne ikke aktivere gendannelsesnøgle. Kontroller venligst dit gendannelsesnøgle kodeord!" #: ajax/adminrecovery.php:48 msgid "Recovery key successfully disabled" -msgstr "" +msgstr "Gendannelsesnøgle deaktiveret succesfuldt" #: ajax/adminrecovery.php:53 msgid "" "Could not disable recovery key. Please check your recovery key password!" -msgstr "" +msgstr "Kunne ikke deaktivere gendannelsesnøgle. Kontroller din gendannelsesnøgle kodeord!" #: ajax/changeRecoveryPassword.php:49 msgid "Password successfully changed." -msgstr "" +msgstr "Kodeordet blev ændret succesfuldt" #: ajax/changeRecoveryPassword.php:51 msgid "Could not change the password. Maybe the old password was not correct." -msgstr "" +msgstr "Kunne ikke ændre kodeordet. Måske var det gamle kodeord ikke korrekt." #: ajax/updatePrivateKeyPassword.php:51 msgid "Private key password successfully updated." -msgstr "" +msgstr "Privat nøgle kodeord succesfuldt opdateret." #: ajax/updatePrivateKeyPassword.php:53 msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Kunne ikke opdatere det private nøgle kodeord-. Måske var det gamle kodeord forkert." #: files/error.php:7 msgid "" @@ -59,18 +61,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 "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." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Manglende betingelser." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "" +"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 "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 "Følgende brugere er ikke sat op til kryptering:" #: js/settings-admin.js:11 msgid "Saving..." @@ -80,15 +86,15 @@ msgstr "Gemmer..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Din private nøgle er ikke gyldig. Måske blev dit kodeord ændre udefra." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Du kan låse din private nøgle op i din " #: templates/invalid_private_key.php:7 msgid "personal settings" -msgstr "" +msgstr "Personlige indstillinger" #: templates/settings-admin.php:5 templates/settings-personal.php:4 msgid "Encryption" @@ -97,76 +103,76 @@ msgstr "Kryptering" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Aktiver gendannelsesnøgle (Tillad gendannelse af brugerfiler i tilfælde af tab af kodeord):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Gendannelsesnøgle kodeord" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "" +msgstr "Aktiveret" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" -msgstr "" +msgstr "Deaktiveret" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Skift gendannelsesnøgle kodeord:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Gammel Gendannelsesnøgle kodeord" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Ny Gendannelsesnøgle kodeord" #: templates/settings-admin.php:53 msgid "Change Password" -msgstr "" +msgstr "Skift Kodeord" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Dit private nøgle kodeord stemmer ikke længere overens med dit login kodeord:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Sæt dit gamle private nøgle kodeord til at være dit nuværende login kodeord. " #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Hvis du ikke kan huske dit gamle kodeord kan du bede din administrator om at gendanne dine filer." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Gammelt login kodeord" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Nuvrende login kodeord" #: templates/settings-personal.php:35 msgid "Update Private Key Password" -msgstr "" +msgstr "Opdater Privat Nøgle Kodeord" #: templates/settings-personal.php:45 msgid "Enable password recovery:" -msgstr "" +msgstr "Aktiver kodeord gendannelse:" #: templates/settings-personal.php:47 msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Aktivering af denne valgmulighed tillader dig at generhverve adgang til dine krypterede filer i tilfælde af tab af kodeord" #: templates/settings-personal.php:63 msgid "File recovery settings updated" -msgstr "" +msgstr "Filgendannelsesindstillinger opdateret" #: templates/settings-personal.php:64 msgid "Could not update file recovery" -msgstr "" +msgstr "Kunne ikke opdatere filgendannelse" diff --git a/l10n/da/files_sharing.po b/l10n/da/files_sharing.po index 71e7807950eec2ce229e92e07d57c17acff2d13d..6ce42eb608a45e243e1913ff69a3229507fbc368 100644 --- a/l10n/da/files_sharing.po +++ b/l10n/da/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Sappe\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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Kodeordet er forkert. Prøv igen." #: templates/authenticate.php:7 msgid "Password" @@ -29,28 +30,52 @@ msgstr "Kodeord" msgid "Submit" msgstr "Send" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Desværre, dette link ser ikke ud til at fungerer længere." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Årsagen kan være:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "Filen blev fjernet" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "linket udløb" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "deling er deaktiveret" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "For yderligere information, kontakt venligst personen der sendte linket. " + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med dig" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med dig" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Upload" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Fortryd upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgængelig for" diff --git a/l10n/da/files_trashbin.po b/l10n/da/files_trashbin.po index 0b66f7e71d3e690353986a0760f8b18d5d27fdba..3f0098ca8622cbe0bd828c9a32c0e1e6070a8fd7 100644 --- a/l10n/da/files_trashbin.po +++ b/l10n/da/files_trashbin.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \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" @@ -27,45 +29,45 @@ msgstr "Kunne ikke slette %s permanent" msgid "Couldn't restore %s" msgstr "Kunne ikke gendanne %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "udfør gendannelsesoperation" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Fejl" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "slet fil permanent" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Slet permanent" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Slettet" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mappe" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n mappe" +msgstr[1] "%n mapper" + +#: 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" +msgstr "Gendannet" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/da/files_versions.po b/l10n/da/files_versions.po index 23356455f8ad4de249771b40eb869e1b579320de..3467e6621074c385c5aed4775f78b6d1c5be8eaa 100644 --- a/l10n/da/files_versions.po +++ b/l10n/da/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-29 01:56-0400\n" +"PO-Revision-Date: 2013-07-28 18:20+0000\n" +"Last-Translator: Sappe\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" @@ -17,41 +18,27 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Kunne ikke genskabe: %s" -#: history.php:40 -msgid "success" -msgstr "success" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Filen %s blev genskabt til version: %s" - -#: history.php:49 -msgid "failure" -msgstr "fejl" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Filen %s blev genskabt til version: %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versioner" -#: history.php:69 -msgid "No old versions available" -msgstr "Ingen gamle version tilgængelige" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Kunne ikke tilbagerulle {file} til den tidligere udgave: {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Ingen sti specificeret" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Flere versioner..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versioner" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Ingen andre versioner tilgængelig" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Genskab en fil til en tidligere version ved at klikke på denne genskab knap." +#: js/versions.js:149 +msgid "Restore" +msgstr "Gendan" diff --git a/l10n/da/lib.po b/l10n/da/lib.po index 03a1bcfb42f0503b0e93491c67953753dcfb9cf8..8e9c6124d7500c2d1e0bbf4f05433afd3b6c9dc8 100644 --- a/l10n/da/lib.po +++ b/l10n/da/lib.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\n" -"Last-Translator: I Robot \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" @@ -35,26 +37,22 @@ 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 "" +msgstr "Upgradering af \"%s\" fejlede" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Webtjenester under din kontrol" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Kan ikke åbne \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +74,7 @@ msgstr "De markerede filer er for store til at generere en ZIP-fil." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Download filerne i små bider, seperat, eller kontakt venligst din administrator." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +209,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Forårsaget af:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/da/settings.po b/l10n/da/settings.po index 60971e81e1c2624a09355191b495cb3e4dadb399..9bff35b5b3d3602b2150f2c39bd964dd6551a391 100644 --- a/l10n/da/settings.po +++ b/l10n/da/settings.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 # Morten Juhl-Johansen Zölde-Fejér , 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -171,175 +172,173 @@ msgstr "En gyldig adgangskode skal angives" msgid "__language_name__" msgstr "Dansk" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Sikkerhedsadvarsel" -#: templates/admin.php:20 +#: 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 "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver på en måske så data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. " +"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." +msgstr "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. " -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Opsætnings Advarsel" -#: templates/admin.php:34 +#: 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 "Din webserver er endnu ikke sat op til at tillade fil synkronisering fordi WebDAV grænsefladen virker ødelagt." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "Dobbelttjek venligst installations vejledningerne." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' mangler" -#: templates/admin.php:49 +#: 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 "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Landestandard fungerer ikke" -#: templates/admin.php:65 +#: 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 "Denne ownCloud server kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." +"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 "Systemet kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Internetforbindelse fungerer ikke" -#: templates/admin.php:80 +#: 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 "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af eksterne applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker alle ownClouds funktioner." - -#: templates/admin.php:94 +"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." +msgstr "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Udføre en opgave med hver side indlæst" -#: templates/admin.php:113 +#: 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 "cron.php er registreret hos en webcron service. Kald cron.php side i owncloud rod en gang i minuttet over HTTP." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php er registeret hos en webcron-tjeneste til at kalde cron.php en gang i minuttet over http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Brug system cron service. Kald cron.php filen i owncloud mappe via et system cronjob en gang i minuttet." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Brug systemets cron service til at kalde cron.php filen en gang i minuttet" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Aktiver Share API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Tillad apps til at bruge Share API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Tillad links" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Tillad brugere at dele elementer til offentligheden med links" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Tillad offentlig upload" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Tillad brugere at give andre mulighed for at uploade i deres offentligt delte mapper" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Tillad videredeling" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Tillad brugere at dele elementer delt med dem igen" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Tillad brugere at dele med alle" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Tillad brugere at kun dele med brugerne i deres grupper" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Sikkerhed" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Gennemtving HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Håndhæver klienter at oprette forbindelse til ownCloud via en krypteret forbindelse." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Tving klienten til at forbinde til %s via en kryptetet forbindelse." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Opret forbindelse til denne ownCloud enhed via HTTPS for at aktivere eller deaktivere SSL håndhævelse." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mere" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Version" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brugt %s af den tilgængelige %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodeord" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Din adgangskode blev ændret" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Ude af stand til at ændre dit kodeord" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Nuværende adgangskode" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nyt kodeord" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Skift kodeord" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Skærmnavn" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Din emailadresse" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Indtast en emailadresse for at kunne få påmindelse om adgangskode" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Sprog" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Hjælp med oversættelsen" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"Last-Translator: Sappe\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" @@ -23,11 +24,11 @@ msgstr "" #: ajax/deleteConfiguration.php:34 msgid "Failed to delete the server configuration" -msgstr "" +msgstr "Kunne ikke slette server konfigurationen" #: ajax/testConfiguration.php:36 msgid "The configuration is valid and the connection could be established!" -msgstr "" +msgstr "Konfigurationen er korrekt og forbindelsen kunne etableres!" #: ajax/testConfiguration.php:39 msgid "" @@ -39,7 +40,7 @@ msgstr "" msgid "" "The configuration is invalid. Please look in the ownCloud log for further " "details." -msgstr "" +msgstr "Konfigurationen er ugyldig. Se venligst ownCloud loggen for yderligere detaljer." #: js/settings.js:66 msgid "Deletion failed" @@ -51,11 +52,11 @@ msgstr "" #: js/settings.js:83 msgid "Keep settings?" -msgstr "" +msgstr "Behold indstillinger?" #: js/settings.js:97 msgid "Cannot add server configuration" -msgstr "" +msgstr "Kan ikke tilføje serverkonfiguration" #: js/settings.js:111 msgid "mappings cleared" @@ -71,24 +72,24 @@ msgstr "Fejl" #: js/settings.js:141 msgid "Connection test succeeded" -msgstr "" +msgstr "Forbindelsestest lykkedes" #: js/settings.js:146 msgid "Connection test failed" -msgstr "" +msgstr "Forbindelsestest mislykkedes" #: js/settings.js:156 msgid "Do you really want to delete the current Server Configuration?" -msgstr "" +msgstr "Ønsker du virkelig at slette den nuværende Server Konfiguration?" #: js/settings.js:157 msgid "Confirm Deletion" -msgstr "" +msgstr "Bekræft Sletning" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -100,11 +101,11 @@ msgstr "" #: templates/settings.php:16 msgid "Server configuration" -msgstr "" +msgstr "Server konfiguration" #: templates/settings.php:32 msgid "Add Server Configuration" -msgstr "" +msgstr "Tilføj Server Konfiguration" #: templates/settings.php:37 msgid "Host" @@ -172,7 +173,7 @@ msgstr "Definere filteret der bruges ved indlæsning af brugere." #: templates/settings.php:60 msgid "without any placeholder, e.g. \"objectClass=person\"." -msgstr "" +msgstr "Uden stedfortræder, f.eks. \"objectClass=person\"." #: templates/settings.php:61 msgid "Group Filter" @@ -184,15 +185,15 @@ msgstr "Definere filteret der bruges når der indlæses grupper." #: templates/settings.php:65 msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." -msgstr "" +msgstr "Uden stedfortræder, f.eks. \"objectClass=posixGroup\"." #: templates/settings.php:69 msgid "Connection Settings" -msgstr "" +msgstr "Forbindelsesindstillinger " #: templates/settings.php:71 msgid "Configuration Active" -msgstr "" +msgstr "Konfiguration Aktiv" #: templates/settings.php:71 msgid "When unchecked, this configuration will be skipped." @@ -204,7 +205,7 @@ msgstr "Port" #: templates/settings.php:73 msgid "Backup (Replica) Host" -msgstr "" +msgstr "Backup (Replika) Vært" #: templates/settings.php:73 msgid "" @@ -214,15 +215,15 @@ msgstr "" #: templates/settings.php:74 msgid "Backup (Replica) Port" -msgstr "" +msgstr "Backup (Replika) Port" #: templates/settings.php:75 msgid "Disable Main Server" -msgstr "" +msgstr "Deaktiver Hovedserver" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "" +msgid "Only connect to the replica server." +msgstr "Forbind kun til replika serveren." #: templates/settings.php:76 msgid "Use TLS" @@ -230,7 +231,7 @@ msgstr "Brug TLS" #: templates/settings.php:76 msgid "Do not use it additionally for LDAPS connections, it will fail." -msgstr "" +msgstr "Benyt ikke flere LDAPS forbindelser, det vil mislykkeds. " #: templates/settings.php:77 msgid "Case insensitve LDAP server (Windows)" @@ -241,9 +242,10 @@ msgid "Turn off SSL certificate validation." msgstr "Deaktiver SSL certifikat validering" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +269,7 @@ msgid "User Display Name Field" msgstr "User Display Name Field" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +293,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -328,7 +330,7 @@ msgstr "i bytes" #: templates/settings.php:95 msgid "Email Field" -msgstr "" +msgstr "Email Felt" #: templates/settings.php:96 msgid "User Home Folder Naming Rule" @@ -342,7 +344,7 @@ msgstr "" #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Internt Brugernavn" #: templates/settings.php:102 msgid "" @@ -352,12 +354,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +372,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +391,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 @@ -412,7 +413,7 @@ msgstr "" #: templates/settings.php:111 msgid "Test Configuration" -msgstr "" +msgstr "Test Konfiguration" #: templates/settings.php:111 msgid "Help" diff --git a/l10n/da/user_webdavauth.po b/l10n/da/user_webdavauth.po index 5a46dae8fe24a6318877dcb9a772d7f9b53cf48c..da378dda3d6fa2524d5befc46ff8e162b521a231 100644 --- a/l10n/da/user_webdavauth.po +++ b/l10n/da/user_webdavauth.po @@ -3,15 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Sappe, 2013 # cronner , 2012 # Morten Juhl-Johansen Zölde-Fejér , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 15:20+0000\n" +"Last-Translator: Sappe\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" @@ -24,12 +25,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV-godkendelse" #: templates/settings.php:4 -msgid "URL: " -msgstr "" +msgid "Address: " +msgstr "Adresse:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud vil sende brugerens oplysninger til denne URL. Plugin'et registrerer responsen og fortolker HTTP-statuskoder 401 og 403 som ugyldige oplysninger, men alle andre besvarelser som gyldige oplysninger." +msgstr "Bruger oplysningerne vil blive sendt til denne adresse. Plugin'et registrerer responsen og fortolker HTTP-statuskode 401 og 403 som ugyldige oplysninger, men alle andre besvarelser som gyldige oplysninger." diff --git a/l10n/de/core.po b/l10n/de/core.po index 29dfc00384767d7aab78e4a36f728e465be25b6c..3d323562a868ea5cc22d02d5ce84c980c264e899 100644 --- a/l10n/de/core.po +++ b/l10n/de/core.po @@ -4,7 +4,9 @@ # # Translators: # arkascha , 2013 +# I Robot , 2013 # Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 # JamFX , 2013 # ninov , 2013 # Pwnicorn , 2013 @@ -13,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: Pwnicorn \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" @@ -143,59 +145,59 @@ msgstr "November" msgid "December" msgstr "Dezember" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "vor einer Minute" +#: 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:717 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} 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:718 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "Heute" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "Gestern" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "Vor Jahren" @@ -231,8 +233,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fehler" @@ -252,123 +254,123 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Fehler beim Ändern der Rechte" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} hat dies mit Dir und der Gruppe {group} geteilt" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} hat dies mit Dir geteilt" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Teilen mit" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Über einen Link freigegeben" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Passwort" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Senden" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Setze ein Ablaufdatum" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Über eine E-Mail teilen:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Weiterverteilen ist nicht erlaubt" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Für {user} in {item} freigegeben" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "erstellen" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "aktualisieren" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "löschen" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "teilen" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Durch ein Passwort geschützt" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-Mail wurde verschickt" @@ -383,9 +385,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melde dieses Problem an die Hast Du darauf geachtet, dass Deine E-Mail/De msgid "You will receive a link to reset your password via Email." msgstr "Du erhältst einen Link per E-Mail, um Dein Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Benutzername" @@ -467,11 +470,11 @@ msgstr "Hilfe" msgid "Access forbidden" msgstr "Zugriff verboten" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nicht gefunden" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -500,8 +503,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Deine PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Bitte bringe Deine PHP Installation auf den neuesten Stand, um ownCloud sicher nutzen zu können." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Bitte aktualisiere deine PHP-Installation um %s sicher nutzen zu können." #: templates/installation.php:32 msgid "" @@ -521,68 +525,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Dein Datenverzeichnis und Deine Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Bitte ließ die Dokumentation für Informationen, wie Du Deinen Server konfigurierst." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Für Informationen, wie du deinen Server richtig konfigurierst lese bitte die Dokumentation." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Abmelden" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Mehr Apps" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatischer Login zurückgewiesen!" @@ -613,7 +621,7 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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,11 +125,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Löschen" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Umbenennen" @@ -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:457 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -204,33 +199,29 @@ msgstr "Dein Download wird vorbereitet. Dies kann bei größeren Dateien etwas d msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n Ordner" +msgstr[1] "%n Ordner" -#: 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 @@ -289,45 +280,49 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du hast hier keine Schreib-Berechtigung." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Lade etwas hoch!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:107 +#: 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ß" -#: 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 "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de/files_encryption.po b/l10n/de/files_encryption.po index aa7ff7b7d987009c506d3d0819329857282a4d1e..0505a2086482bef02a5e4252bd2ea7b503f71493 100644 --- a/l10n/de/files_encryption.po +++ b/l10n/de/files_encryption.po @@ -5,16 +5,18 @@ # Translators: # iLennart21 , 2013 # Stephan Köninger , 2013 +# Mario Siegmann , 2013 # ninov , 2013 # Pwnicorn , 2013 +# thillux, 2013 # kabum , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 12:50+0000\n" -"Last-Translator: kabum \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" @@ -72,10 +74,14 @@ msgstr "Fehlende Vorraussetzungen" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert ist und die OpenSSL-PHP-Erweiterung aktiviert und richtig konfiguriert ist. Die Verschlüsselungsanwendung wurde vorerst deaktiviert." +"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 "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:" +msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/de/files_sharing.po b/l10n/de/files_sharing.po index 8ca29758236e7040edeeaa366401a3cdc41d77f6..a8263e4c718377d63e69a8f6bb16c8662521c8b0 100644 --- a/l10n/de/files_sharing.po +++ b/l10n/de/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 # Pwnicorn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Pwnicorn \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +31,52 @@ msgstr "Passwort" msgid "Submit" msgstr "Absenden" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Gründe könnten sein:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "Die Elemente wurden entfernt" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "Der Link ist abgelaufen" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "Teilen ist deaktiviert" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Für mehr Informationen, frage bitte die Person, die dir diesen Link geschickt hat." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Dir geteilt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Dir geteilt" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de/files_trashbin.po b/l10n/de/files_trashbin.po index db0ad5cb7bd948e611e90dc9badde40c7c1cbf33..4d78f4aabd3f8e54de0c4ea683c2d53b146c28ae 100644 --- a/l10n/de/files_trashbin.po +++ b/l10n/de/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Mirodin \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" @@ -27,45 +28,45 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Fehler" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "Datei dauerhaft löschen" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "gelöscht" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "%n Ordner" + +#: 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" +msgstr "Wiederhergestellt" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de/files_versions.po b/l10n/de/files_versions.po index 24dc7347362b9ee228964ebb7443888b2eeed196..a59108a04125e5b83cc326d7d80810c0cc388a5b 100644 --- a/l10n/de/files_versions.po +++ b/l10n/de/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 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-05-24 13:28+0000\n" -"Last-Translator: Mirodin \n" +"POT-Creation-Date: 2013-07-29 01:56-0400\n" +"PO-Revision-Date: 2013-07-28 16:00+0000\n" +"Last-Translator: Mario Siegmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +18,27 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Konnte %s nicht zurücksetzen" -#: history.php:40 -msgid "success" -msgstr "Erfolgreich" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Datei %s wurde auf Version %s zurückgesetzt" - -#: history.php:49 -msgid "failure" -msgstr "Fehlgeschlagen" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Datei %s konnte nicht auf Version %s zurückgesetzt werden" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versionen" -#: history.php:69 -msgid "No old versions available" -msgstr "Keine älteren Versionen verfügbar" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Konnte {file} der Revision {timestamp} nicht rückgänging machen." -#: history.php:74 -msgid "No path specified" -msgstr "Kein Pfad angegeben" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Mehrere Versionen..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versionen" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Keine anderen Versionen verfügbar" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Setze eine Datei durch klicken auf den Zurücksetzen Button zurück" +#: js/versions.js:149 +msgid "Restore" +msgstr "Wiederherstellen" diff --git a/l10n/de/lib.po b/l10n/de/lib.po index 9617f8684012c2b1274f566cdbfbe950ee821f54..88e04aff8a65bc3319f82518530732fc59d20952 100644 --- a/l10n/de/lib.po +++ b/l10n/de/lib.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 # ninov , 2013 # Mirodin , 2013 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-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" @@ -36,26 +37,22 @@ 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 "" +msgstr "Konnte \"%s\" nicht aktualisieren." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Web-Services unter Deiner Kontrolle" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Öffnen von \"%s\" fehlgeschlagen" #: files.php:226 msgid "ZIP download is turned off." @@ -77,7 +74,7 @@ msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator." #: helper.php:235 msgid "couldn't be determined" @@ -212,56 +209,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Verursacht durch:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/de/settings.po b/l10n/de/settings.po index ec725c94768da08918f5658b5af49ddcb4ebdb18..548de28a30de231713f7ad0d0d950ea9caffc924 100644 --- a/l10n/de/settings.po +++ b/l10n/de/settings.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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 21:56+0000\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" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -174,175 +174,173 @@ msgstr "Es muss ein gültiges Passwort angegeben werden" msgid "__language_name__" msgstr "Deutsch (Persönlich)" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Sicherheitswarnung" -#: templates/admin.php:20 +#: 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 "Dein Datenverzeichnis und Deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass Du Deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass Du Dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst." +"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." +msgstr "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:34 +#: 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 "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Installationsanleitungen." +msgid "Please double check the installation guides." +msgstr "Bitte überprüfe die Instalationsanleitungen." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modul 'fileinfo' fehlt " -#: templates/admin.php:49 +#: 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 "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Ländereinstellung funktioniert nicht" -#: templates/admin.php:65 +#: 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 "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf Deinem System zu installieren." +"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 "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Keine Netzwerkverbindung" -#: templates/admin.php:80 +#: 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 "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren, wenn Du alle Funktionen von ownCloud nutzen möchtest." - -#: templates/admin.php:94 +"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." +msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Führe eine Aufgabe mit jeder geladenen Seite aus" -#: templates/admin.php:113 +#: 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 "cron.php ist an einem Webcron-Service registriert. Die cron.php Seite wird einmal pro Minute über http abgerufen." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Nutze den Cron Systemdienst. Rufe die Datei cron.php im owncloud Ordner einmal pro Minute über einen Cronjob auf." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Benutze den System-Crondienst um die cron.php minütlich aufzurufen." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Aktiviere Sharing-API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Erlaubt Apps die Nutzung der Share-API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Erlaubt Links" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Erlaubt Benutzern, Inhalte über öffentliche Links zu teilen" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "Öffentliches Hochladen erlauben" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Erlaubt erneutes Teilen" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Erzwinge HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Erzwingt die Verwendung einer verschlüsselten Verbindung" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Bitte verbinde Dich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Loglevel" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mehr" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Weniger" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Version" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du verwendest %s der verfügbaren %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Dein Passwort wurde geändert." -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Passwort konnte nicht geändert werden" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Deine E-Mail-Adresse" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Trage eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Sprache" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Hilf bei der Übersetzung" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: German \n" "MIME-Version: 1.0\n" @@ -92,9 +92,9 @@ msgstr "Löschung bestätigen" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwartetem Verhalten kommen. Bitte Deinen Systemadministator eine der beiden Anwendungen zu deaktivieren." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitte\ndeinen Systemadministator eine der beiden Anwendungen zu deaktivieren." #: templates/settings.php:12 msgid "" @@ -225,8 +225,8 @@ msgid "Disable Main Server" msgstr "Hauptserver deaktivieren" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Wenn aktiviert, wird ownCloud ausschließlich den Backupserver verwenden." +msgid "Only connect to the replica server." +msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:76 msgid "Use TLS" @@ -245,10 +245,11 @@ msgid "Turn off SSL certificate validation." msgstr "Schalte die SSL-Zertifikatsprüfung aus." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." +"certificate in your %s server." +msgstr "Falls die Verbindung nur mit dieser Option funktioniert, importiere das SSL-Zertifikat des LDAP-Servers in deinen %s Server." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -271,8 +272,8 @@ msgid "User Display Name Field" msgstr "Feld für den Anzeigenamen des Benutzers" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens des Benutzers." #: templates/settings.php:84 msgid "Base User Tree" @@ -295,8 +296,8 @@ msgid "Group Display Name Field" msgstr "Feld für den Anzeigenamen der Gruppe" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens der Gruppen." #: templates/settings.php:87 msgid "Base Group Tree" @@ -356,13 +357,13 @@ msgid "" "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 "Standardmäßig wird der interne Benutzername aus der UUID erstellt. Dies stellt sicher, daß der Name einmalig ist und keine Zeichen umgewandelt werden müssen. Für den internen Benutzernamen sind nur die folgenden Zeichen zulässig: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden durch ihr ASCII-Äquivalent ersetzt oder ausgelassen. Bei Kollisionen wird eine Nummer hinzugefügt/erhöht. Der interne Benutzername wird verwendet, um einen Benutzer intern zu identifizieren. Er ist auch der Standardname für das Benutzerverzeichnis in ownCloud und Teil von Remote-URLs, unter anderem für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten geändert werden. Um ein ähnliches Verhalten wie in ownCloud 5 zu erreichen, geben Sie das Benutzer-Anzeige-Namen-Attribut in das folgende Feld ein. Änderungen betreffen nur neu angelegte LDAP-Benutzer." +"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." +msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -374,14 +375,14 @@ msgstr "UUID-Erkennung überschreiben" #: 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 " +"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 behaviour. " +" 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 "Standardmäßig erkennt ownCloud das UUID-Attribut automatisch. Das UUID-Attribut wird benutzt, um LDAP-Benutzer und Gruppen eindeutig zu identifizieren. Außerdem wird der interne Benutzername basierend auf der UUID erstellt, wenn nicht anders angegeben. Sie können dieses Verhalten ändern und ein Attribut Ihrer Wahl angeben. Sie müssen sichergehen, dass das Attribut Ihrer Wahl auf Benutzer und Gruppen anwendbar und einzigartig ist. Für das Standardverhalten lassen Sie das Feld leer. Änderungen betreffen nur neu angelegte LDAP-Benutzer und Gruppen." +msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Du musst allerdings sicherstellen, dass deine gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lasse es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -393,18 +394,17 @@ msgstr "LDAP-Benutzernamenzuordnung" #: 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 "OwnCloud nutzt die Benutzernamen, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung vom OwnCloud-Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch OwnCloud gefunden. Der interne OwnCloud-Name, wird in der gesamten OwnCloud verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste in der OwnCloud. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Lösche niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." +"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." +msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Lösche die Zuordnungen nur in einer Test- oder Experimentierumgebung." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/de/user_webdavauth.po b/l10n/de/user_webdavauth.po index b428d9cdc890efc4239a940bcc0e00c723d8eb83..b9ceaaa95d0253133b38e9a58788bff3f4081e55 100644 --- a/l10n/de/user_webdavauth.po +++ b/l10n/de/user_webdavauth.po @@ -5,6 +5,7 @@ # Translators: # Mirodin , 2012 # Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 # AndryXY , 2013 # Pwnicorn , 2013 # seeed , 2012 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-12 02:03+0200\n" -"PO-Revision-Date: 2013-07-11 07:50+0000\n" -"Last-Translator: Pwnicorn \n" +"POT-Creation-Date: 2013-07-29 01:56-0400\n" +"PO-Revision-Date: 2013-07-28 16: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" @@ -27,12 +28,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV Authentifikation" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Addresse: " #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten und alle anderen Antworten als gültige Daten interpretieren." +msgstr "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." diff --git a/l10n/ru_RU/core.po b/l10n/de_AT/core.po similarity index 72% rename from l10n/ru_RU/core.po rename to l10n/de_AT/core.po index 06111cdf7c6ce9db02e06b9b4e3d5e9ce200339f..621763a9b8ede46cb7d7e7aa88a84c9706894982 100644 --- a/l10n/ru_RU/core.po +++ b/l10n/de_AT/core.po @@ -3,42 +3,24 @@ # 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-06-04 02:29+0200\n" -"PO-Revision-Date: 2013-06-03 00:32+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: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" +"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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" +msgid "%s shared »%s« with you" msgstr "" #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 @@ -80,135 +62,135 @@ msgstr "" msgid "Error removing %s from favorites." msgstr "" -#: js/config.php:34 +#: js/config.php:32 msgid "Sunday" msgstr "" -#: js/config.php:35 +#: js/config.php:33 msgid "Monday" msgstr "" -#: js/config.php:36 +#: js/config.php:34 msgid "Tuesday" msgstr "" -#: js/config.php:37 +#: js/config.php:35 msgid "Wednesday" msgstr "" -#: js/config.php:38 +#: js/config.php:36 msgid "Thursday" msgstr "" -#: js/config.php:39 +#: js/config.php:37 msgid "Friday" msgstr "" -#: js/config.php:40 +#: js/config.php:38 msgid "Saturday" msgstr "" -#: js/config.php:45 +#: js/config.php:43 msgid "January" msgstr "" -#: js/config.php:46 +#: js/config.php:44 msgid "February" msgstr "" -#: js/config.php:47 +#: js/config.php:45 msgid "March" msgstr "" -#: js/config.php:48 +#: js/config.php:46 msgid "April" msgstr "" -#: js/config.php:49 +#: js/config.php:47 msgid "May" msgstr "" -#: js/config.php:50 +#: js/config.php:48 msgid "June" msgstr "" -#: js/config.php:51 +#: js/config.php:49 msgid "July" msgstr "" -#: js/config.php:52 +#: js/config.php:50 msgid "August" msgstr "" -#: js/config.php:53 +#: js/config.php:51 msgid "September" msgstr "" -#: js/config.php:54 +#: js/config.php:52 msgid "October" msgstr "" -#: js/config.php:55 +#: js/config.php:53 msgid "November" msgstr "" -#: js/config.php:56 +#: js/config.php:54 msgid "December" msgstr "" -#: js/js.js:286 +#: js/js.js:355 msgid "Settings" -msgstr "Настройки" - -#: js/js.js:718 -msgid "seconds ago" msgstr "" -#: js/js.js:719 -msgid "1 minute ago" +#: js/js.js:815 +msgid "seconds ago" msgstr "" -#: js/js.js:720 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:721 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:722 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:723 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:724 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:725 -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:726 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:727 -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:728 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:729 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:730 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -218,7 +200,7 @@ msgstr "" #: js/oc-dialogs.js:122 msgid "Cancel" -msgstr "Отмена" +msgstr "" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" @@ -244,10 +226,10 @@ 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 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" -msgstr "Ошибка" +msgstr "" #: js/oc-vcategories.js:179 msgid "The app name is not specified." @@ -263,137 +245,142 @@ msgstr "" #: js/share.js:90 msgid "Share" -msgstr "Сделать общим" +msgstr "" -#: js/share.js:125 js/share.js:617 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:159 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:164 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:167 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:169 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:173 +#: js/share.js:198 +msgid "Allow Public Upload" +msgstr "" + +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:174 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:178 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:179 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:211 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:213 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:251 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:287 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:308 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:320 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:322 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:325 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:328 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:331 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:334 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:368 js/share.js:564 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:577 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:589 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:604 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:615 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." msgstr "" -#: lostpassword/controller.php:48 -msgid "ownCloud password reset" +#: lostpassword/controller.php:61 +#, php-format +msgid "%s password reset" msgstr "" #: lostpassword/templates/email.php:2 @@ -415,12 +402,24 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" -#: lostpassword/templates/lostpassword.php:21 +#: lostpassword/templates/lostpassword.php:22 +msgid "" +"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?" +msgstr "" + +#: lostpassword/templates/lostpassword.php:24 +msgid "Yes, I really want to reset my password now" +msgstr "" + +#: lostpassword/templates/lostpassword.php:27 msgid "Request reset" msgstr "" @@ -464,17 +463,28 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "" + #: templates/edit_categories_dialog.php:4 msgid "Edit categories" msgstr "" #: templates/edit_categories_dialog.php:16 msgid "Add" -msgstr "Добавить" +msgstr "" #: templates/installation.php:24 templates/installation.php:31 #: templates/installation.php:38 @@ -486,7 +496,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -507,72 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.guest.php:40 -msgid "web services under your control" -msgstr "" - -#: templates/layout.user.php:37 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:62 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Mehr Apps" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -603,6 +614,13 @@ msgstr "" msgid "Alternative Logins" msgstr "" +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

Cheers!" +msgstr "" + #: templates/part.pagenavi.php:3 msgid "prev" msgstr "" diff --git a/l10n/ru_RU/files.po b/l10n/de_AT/files.po similarity index 60% rename from l10n/ru_RU/files.po rename to l10n/de_AT/files.po index 097c3e00ba52324a0a277596148db622d922d297..6bb9f95f5e5ccbd6e5b6c9a4887150ce78407568 100644 --- a/l10n/ru_RU/files.po +++ b/l10n/de_AT/files.po @@ -7,15 +7,15 @@ 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" +"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" "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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/move.php:17 #, php-format @@ -27,46 +27,54 @@ msgstr "" msgid "Could not move %s" msgstr "" -#: ajax/upload.php:19 +#: ajax/upload.php:16 ajax/upload.php:45 +msgid "Unable to set upload directory." +msgstr "" + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "" + +#: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" -msgstr "Файл не был загружен. Неизвестная ошибка" +msgstr "" -#: ajax/upload.php:26 +#: ajax/upload.php:66 msgid "There is no error, the file uploaded with success" -msgstr "Ошибки нет, файл успешно загружен" +msgstr "" -#: ajax/upload.php:27 +#: ajax/upload.php:67 msgid "" "The uploaded file exceeds the upload_max_filesize directive in php.ini: " msgstr "" -#: ajax/upload.php:29 +#: ajax/upload.php:69 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form" -msgstr "Размер загружаемого файла превысил максимально допустимый в директиве MAX_FILE_SIZE, специфицированной в HTML-форме" +msgstr "" -#: ajax/upload.php:30 +#: ajax/upload.php:70 msgid "The uploaded file was only partially uploaded" -msgstr "Загружаемый файл был загружен лишь частично" +msgstr "" -#: ajax/upload.php:31 +#: ajax/upload.php:71 msgid "No file was uploaded" -msgstr "Файл не был загружен" +msgstr "" -#: ajax/upload.php:32 +#: ajax/upload.php:72 msgid "Missing a temporary folder" -msgstr "Отсутствие временной папки" +msgstr "" -#: ajax/upload.php:33 +#: ajax/upload.php:73 msgid "Failed to write to disk" -msgstr "Не удалось записать на диск" +msgstr "" -#: ajax/upload.php:51 +#: ajax/upload.php:91 msgid "Not enough storage available" -msgstr "Недостаточно места в хранилище" +msgstr "" -#: ajax/upload.php:83 +#: ajax/upload.php:123 msgid "Invalid directory." msgstr "" @@ -74,59 +82,83 @@ msgstr "" msgid "Files" msgstr "" +#: js/file-upload.js:11 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "" + +#: js/file-upload.js:24 +msgid "Not enough space available" +msgstr "" + +#: js/file-upload.js:64 +msgid "Upload cancelled." +msgstr "" + +#: js/file-upload.js:167 js/files.js:266 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "" + +#: js/file-upload.js:233 js/files.js:339 +msgid "URL cannot be empty." +msgstr "" + +#: js/file-upload.js:238 lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "" + +#: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 +#: js/files.js:693 js/files.js:731 +msgid "Error" +msgstr "" + #: js/fileactions.js:116 msgid "Share" -msgstr "Сделать общим" +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 +#: js/fileactions.js:192 msgid "Rename" msgstr "" -#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:421 +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 msgid "Pending" msgstr "" -#: js/filelist.js:259 js/filelist.js:261 +#: js/filelist.js:303 js/filelist.js:305 msgid "{new_name} already exists" msgstr "" -#: js/filelist.js:259 js/filelist.js:261 +#: js/filelist.js:303 js/filelist.js:305 msgid "replace" msgstr "" -#: js/filelist.js:259 +#: js/filelist.js:303 msgid "suggest name" msgstr "" -#: js/filelist.js:259 js/filelist.js:261 +#: js/filelist.js:303 js/filelist.js:305 msgid "cancel" msgstr "" -#: js/filelist.js:306 +#: js/filelist.js:350 msgid "replaced {new_name} with {old_name}" msgstr "" -#: js/filelist.js:306 +#: js/filelist.js:350 msgid "undo" msgstr "" -#: js/filelist.js:331 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:413 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:416 js/filelist.js:470 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -158,69 +190,37 @@ msgid "" "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 +#: js/files.js:344 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 +#: js/files.js:744 templates/index.php:67 msgid "Name" -msgstr "Имя" +msgstr "" -#: js/files.js:878 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "" -#: js/files.js:879 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 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 "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: lib/app.php:53 -msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" -msgstr "" +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" #: lib/app.php:73 -msgid "Unable to rename file" +#, php-format +msgid "%s could not be renamed" msgstr "" #: lib/helper.php:11 templates/index.php:18 @@ -257,7 +257,7 @@ msgstr "" #: templates/admin.php:26 msgid "Save" -msgstr "Сохранить" +msgstr "" #: templates/index.php:7 msgid "New" @@ -275,48 +275,68 @@ 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 "Загрузка" +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 "" +#: templates/part.list.php:74 +msgid "directory" +msgstr "" + +#: templates/part.list.php:76 +msgid "directories" +msgstr "" + +#: templates/part.list.php:85 +msgid "file" +msgstr "" + +#: templates/part.list.php:87 +msgid "files" +msgstr "" + #: templates/upgrade.php:2 msgid "Upgrading filesystem cache..." msgstr "" diff --git a/l10n/de_AT/files_encryption.po b/l10n/de_AT/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..59daa54beab84f48b383bc6a2924cf006f41590e --- /dev/null +++ b/l10n/de_AT/files_encryption.po @@ -0,0 +1,176 @@ +# 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-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:59+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 "" + +#: ajax/updatePrivateKeyPassword.php:51 +msgid "Private key password successfully updated." +msgstr "" + +#: ajax/updatePrivateKeyPassword.php:53 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "" + +#: files/error.php:7 +msgid "" +"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." +msgstr "" + +#: hooks/hooks.php:44 +msgid "Missing requirements." +msgstr "" + +#: 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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" + +#: js/settings-admin.js:11 +msgid "Saving..." +msgstr "" + +#: templates/invalid_private_key.php:5 +msgid "" +"Your private key is not valid! Maybe the your password was changed from " +"outside." +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "You can unlock your private key in your " +msgstr "" + +#: templates/invalid_private_key.php:7 +msgid "personal settings" +msgstr "" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "" + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "" + +#: templates/settings-admin.php:21 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "" + +#: templates/settings-admin.php:29 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "" + +#: templates/settings-admin.php:41 +msgid "Old Recovery key password" +msgstr "" + +#: templates/settings-admin.php:48 +msgid "New Recovery key password" +msgstr "" + +#: templates/settings-admin.php:53 +msgid "Change Password" +msgstr "" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "" + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "" + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "" + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "" + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "" + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "" diff --git a/l10n/ru_RU/files_external.po b/l10n/de_AT/files_external.po similarity index 79% rename from l10n/ru_RU/files_external.po rename to l10n/de_AT/files_external.po index 96563330fbce198562678d83e5a05ca6d2636822..8eaf2edc158bf0a386857fcb5c195c66a4b8062a 100644 --- a/l10n/ru_RU/files_external.po +++ b/l10n/de_AT/files_external.po @@ -7,17 +7,17 @@ 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" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" "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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Error configuring Dropbox storage" msgstr "" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "" @@ -33,24 +33,24 @@ msgstr "" msgid "Please provide a valid Dropbox app key and secret." msgstr "" -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "" -#: lib/config.php:431 +#: lib/config.php:448 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 +#: lib/config.php:451 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 +#: lib/config.php:454 msgid "" "Warning: The Curl support in PHP is not enabled or installed. " "Mounting of ownCloud / WebDAV or GoogleDrive is not possible. Please ask " @@ -95,7 +95,7 @@ msgstr "" #: templates/settings.php:92 msgid "Groups" -msgstr "Группы" +msgstr "" #: templates/settings.php:100 msgid "Users" @@ -104,7 +104,7 @@ msgstr "" #: templates/settings.php:113 templates/settings.php:114 #: templates/settings.php:149 templates/settings.php:150 msgid "Delete" -msgstr "Удалить" +msgstr "" #: templates/settings.php:129 msgid "Enable User External Storage" diff --git a/l10n/de_AT/files_sharing.po b/l10n/de_AT/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..4e09271a0bb84356cb339d02ff9d3634b030c4b8 --- /dev/null +++ b/l10n/de_AT/files_sharing.po @@ -0,0 +1,80 @@ +# 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-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "" + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "" + +#: templates/authenticate.php:9 +msgid "Submit" +msgstr "" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the file %s with you" +msgstr "" + +#: templates/public.php:26 templates/public.php:88 +msgid "Download" +msgstr "" + +#: templates/public.php:43 templates/public.php:46 +msgid "Upload" +msgstr "" + +#: templates/public.php:56 +msgid "Cancel upload" +msgstr "" + +#: templates/public.php:85 +msgid "No preview available for" +msgstr "" diff --git a/l10n/ru_RU/files_trashbin.po b/l10n/de_AT/files_trashbin.po similarity index 56% rename from l10n/ru_RU/files_trashbin.po rename to l10n/de_AT/files_trashbin.po index 958cf6f2dd639a28b1bdc6b28cd8bbcbc2871c37..a05dc1411b2fa2608006ab8174e61bed04c8aace 100644 --- a/l10n/ru_RU/files_trashbin.po +++ b/l10n/de_AT/files_trashbin.po @@ -7,15 +7,15 @@ 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" +"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" "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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/delete.php:42 #, php-format @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" -msgstr "Ошибка" +msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" -msgstr "Имя" +msgstr "" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" - -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 @@ -77,7 +77,7 @@ msgstr "" #: templates/index.php:30 templates/index.php:31 msgid "Delete" -msgstr "Удалить" +msgstr "" #: templates/part.breadcrumb.php:9 msgid "Deleted Files" diff --git a/l10n/de_AT/files_versions.po b/l10n/de_AT/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..8abfcfe23adda0f0a3aa43d9affad0f873be474c --- /dev/null +++ b/l10n/de_AT/files_versions.po @@ -0,0 +1,43 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +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" +"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" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "" + +#: js/versions.js:7 +msgid "Versions" +msgstr "" + +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" + +#: js/versions.js:79 +msgid "More versions..." +msgstr "" + +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" + +#: js/versions.js:149 +msgid "Restore" +msgstr "" diff --git a/l10n/ru_RU/lib.po b/l10n/de_AT/lib.po similarity index 54% rename from l10n/ru_RU/lib.po rename to l10n/de_AT/lib.po index 1172cc70fe77b01730df4c7ae1318e690d88af46..0984165a8405a55878beb380c86da6f6d13a53e6 100644 --- a/l10n/ru_RU/lib.po +++ b/l10n/de_AT/lib.po @@ -7,57 +7,73 @@ 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" +"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 (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" +"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: app.php:357 +#: app.php:360 msgid "Help" msgstr "" -#: app.php:370 +#: app.php:373 msgid "Personal" msgstr "" -#: app.php:381 +#: app.php:384 msgid "Settings" -msgstr "Настройки" +msgstr "" -#: app.php:393 +#: app.php:396 msgid "Users" msgstr "" -#: app.php:406 -msgid "Apps" +#: app.php:409 +msgid "Admin" msgstr "" -#: app.php:414 -msgid "Admin" +#: app.php:836 +#, php-format +msgid "Failed to upgrade \"%s\"." msgstr "" -#: files.php:210 +#: defaults.php:35 +msgid "web services under your control" +msgstr "" + +#: files.php:66 files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "" + +#: files.php:226 msgid "ZIP download is turned off." msgstr "" -#: files.php:211 +#: files.php:227 msgid "Files need to be downloaded one by one." msgstr "" -#: files.php:212 files.php:245 +#: files.php:228 files.php:256 msgid "Back to Files" msgstr "" -#: files.php:242 +#: files.php:253 msgid "Selected files too large to generate zip file." msgstr "" -#: helper.php:236 +#: files.php:254 +msgid "" +"Download the files in smaller chunks, seperately or kindly ask your " +"administrator." +msgstr "" + +#: helper.php:235 msgid "couldn't be determined" msgstr "" @@ -79,166 +95,164 @@ msgstr "" #: search/provider/file.php:26 search/provider/file.php:33 msgid "Text" -msgstr "Текст" +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 +#: setup/abstractdatabase.php:22 #, php-format msgid "%s enter the database username." msgstr "" -#: setup.php:58 +#: setup/abstractdatabase.php:25 #, php-format msgid "%s enter the database name." msgstr "" -#: setup.php:61 +#: setup/abstractdatabase.php:28 #, php-format msgid "%s you may not use dots in the database name" msgstr "" -#: setup.php:64 +#: setup/mssql.php:20 #, 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" +msgid "MS SQL username and/or password not valid: %s" msgstr "" -#: setup.php:133 setup.php:238 +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/postgresql.php:24 setup/postgresql.php:70 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 +#: setup/mysql.php:12 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 +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 +#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 +#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 +#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 +#: setup/postgresql.php:125 setup/postgresql.php:134 #, 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 +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 +#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 +#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 #, php-format msgid "Offending command was: \"%s\"" msgstr "" -#: setup.php:308 +#: setup/mysql.php:85 #, php-format msgid "MySQL user '%s'@'localhost' exists already." msgstr "" -#: setup.php:309 +#: setup/mysql.php:86 msgid "Drop this user from MySQL" msgstr "" -#: setup.php:314 +#: setup/mysql.php:91 #, php-format msgid "MySQL user '%s'@'%%' already exists" msgstr "" -#: setup.php:315 +#: setup/mysql.php:92 msgid "Drop this user from MySQL." msgstr "" -#: setup.php:466 setup.php:533 +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "" + +#: setup/oci.php:41 setup/oci.php:113 msgid "Oracle username and/or password not valid" msgstr "" -#: setup.php:592 setup.php:624 +#: setup/oci.php:173 setup/oci.php:205 #, 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" +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" msgstr "" -#: setup.php:867 +#: setup.php:28 +msgid "Set an admin username." +msgstr "" + +#: setup.php:31 +msgid "Set an admin password." +msgstr "" + +#: setup.php:184 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 +#: setup.php:185 #, php-format msgid "Please double check the installation guides." msgstr "" -#: template.php:113 +#: template/functions.php:80 msgid "seconds ago" msgstr "" -#: template.php:114 -msgid "1 minute ago" -msgstr "" - -#: template.php:115 -#, php-format -msgid "%d minutes ago" -msgstr "" +#: template/functions.php:81 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: template.php:116 -msgid "1 hour ago" -msgstr "" - -#: template.php:117 -#, php-format -msgid "%d hours ago" -msgstr "" +#: template/functions.php:82 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: template.php:118 +#: template/functions.php:83 msgid "today" msgstr "" -#: template.php:119 +#: template/functions.php:84 msgid "yesterday" msgstr "" -#: template.php:120 -#, 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.php:121 +#: template/functions.php:86 msgid "last month" msgstr "" -#: template.php:122 -#, 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.php:123 +#: template/functions.php:88 msgid "last year" msgstr "" -#: template.php:124 +#: template/functions.php:89 msgid "years ago" msgstr "" +#: template.php:297 +msgid "Caused by:" +msgstr "" + #: vcategories.php:188 vcategories.php:249 #, php-format msgid "Could not find category \"%s\"" diff --git a/l10n/ru_RU/settings.po b/l10n/de_AT/settings.po similarity index 64% rename from l10n/ru_RU/settings.po rename to l10n/de_AT/settings.po index 34972e5304e5b241f1f8fbc08c282683f3c4108e..97a2d199c8e344e3a4718ad8d3951091062ce1d3 100644 --- a/l10n/ru_RU/settings.po +++ b/l10n/de_AT/settings.po @@ -7,15 +7,15 @@ 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" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+0000\n" "Last-Translator: I Robot \n" -"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/owncloud/language/ru_RU/)\n" +"Language-Team: German (Austria) (http://www.transifex.com/projects/p/owncloud/language/de_AT/)\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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/apps/ocs.php:20 msgid "Unable to load list from App Store" @@ -58,7 +58,7 @@ msgstr "" msgid "Unable to delete group" msgstr "" -#: ajax/removeuser.php:24 +#: ajax/removeuser.php:25 msgid "Unable to delete user" msgstr "" @@ -88,45 +88,45 @@ msgstr "" msgid "Couldn't update app." msgstr "" -#: js/apps.js:30 +#: js/apps.js:35 msgid "Update to {appversion}" msgstr "" -#: js/apps.js:36 js/apps.js:76 +#: js/apps.js:41 js/apps.js:81 msgid "Disable" msgstr "" -#: js/apps.js:36 js/apps.js:64 js/apps.js:83 +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 msgid "Enable" msgstr "" -#: js/apps.js:55 +#: js/apps.js:60 msgid "Please wait...." msgstr "" -#: js/apps.js:59 js/apps.js:71 js/apps.js:80 js/apps.js:93 +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 msgid "Error" -msgstr "Ошибка" +msgstr "" -#: js/apps.js:90 +#: js/apps.js:95 msgid "Updating...." msgstr "" -#: js/apps.js:93 +#: js/apps.js:98 msgid "Error while updating app" msgstr "" -#: js/apps.js:96 +#: js/apps.js:101 msgid "Updated" msgstr "" #: js/personal.js:118 msgid "Saving..." -msgstr "Сохранение" +msgstr "" #: js/users.js:47 msgid "deleted" -msgstr "удалено" +msgstr "" #: js/users.js:47 msgid "undo" @@ -136,18 +136,18 @@ msgstr "" msgid "Unable to remove user" msgstr "" -#: js/users.js:92 templates/users.php:26 templates/users.php:83 -#: templates/users.php:108 +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 msgid "Groups" -msgstr "Группы" +msgstr "" -#: js/users.js:95 templates/users.php:85 templates/users.php:120 +#: js/users.js:95 templates/users.php:89 templates/users.php:124 msgid "Group Admin" msgstr "" -#: js/users.js:115 templates/users.php:160 +#: js/users.js:115 templates/users.php:164 msgid "Delete" -msgstr "Удалить" +msgstr "" #: js/users.js:269 msgid "add group" @@ -165,7 +165,7 @@ msgstr "" msgid "A valid password must be provided" msgstr "" -#: personal.php:35 personal.php:36 +#: personal.php:37 personal.php:38 msgid "__language_name__" msgstr "" @@ -176,10 +176,10 @@ 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." +"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." msgstr "" #: templates/admin.php:29 @@ -194,7 +194,7 @@ msgstr "" #: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" #: templates/admin.php:44 @@ -214,9 +214,9 @@ 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." +"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 "" #: templates/admin.php:75 @@ -225,12 +225,11 @@ 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." +"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." msgstr "" #: templates/admin.php:92 @@ -243,14 +242,12 @@ 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." +"cron.php is registered at a webcron service to call cron.php 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." +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" #: templates/admin.php:128 @@ -273,62 +270,72 @@ msgstr "" msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:150 +#: templates/admin.php:151 +msgid "Allow public uploads" +msgstr "" + +#: templates/admin.php:152 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "" + +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:151 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:158 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:161 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:168 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:181 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:182 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:185 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:195 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:196 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:227 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:228 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:235 templates/personal.php:111 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:237 templates/personal.php:114 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the AGPL." msgstr "" -#: templates/apps.php:11 +#: templates/apps.php:13 msgid "Add your App" msgstr "" -#: templates/apps.php:12 +#: templates/apps.php:28 msgid "More Apps" msgstr "" -#: templates/apps.php:28 +#: templates/apps.php:33 msgid "Select an App" msgstr "" -#: templates/apps.php:34 +#: templates/apps.php:39 msgid "See application page at apps.owncloud.com" msgstr "" -#: templates/apps.php:36 +#: templates/apps.php:41 msgid "-licensed by " msgstr "" -#: templates/apps.php:38 +#: templates/apps.php:43 msgid "Update" msgstr "" @@ -387,75 +394,78 @@ 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 +#: templates/personal.php:19 msgid "Show First Run Wizard again" msgstr "" -#: templates/personal.php:37 templates/users.php:23 templates/users.php:82 +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:38 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:39 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:40 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:56 templates/users.php:81 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:71 +#: templates/personal.php:73 msgid "Email" -msgstr "Email" +msgstr "" -#: templates/personal.php:73 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:74 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:83 templates/personal.php:84 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:95 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:102 -msgid "Use this address to connect to your ownCloud in your file manager" +#: templates/personal.php:106 +#, php-format +msgid "" +"Use this address to access your Files via WebDAV" msgstr "" -#: templates/users.php:21 templates/users.php:80 +#: templates/users.php:21 msgid "Login Name" msgstr "" @@ -463,34 +473,44 @@ msgstr "" msgid "Create" msgstr "" -#: templates/users.php:34 +#: templates/users.php:36 msgid "Admin Recovery Password" msgstr "" -#: templates/users.php:38 +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "" + +#: templates/users.php:42 msgid "Default Storage" msgstr "" -#: templates/users.php:44 templates/users.php:138 +#: templates/users.php:48 templates/users.php:142 msgid "Unlimited" msgstr "" -#: templates/users.php:62 templates/users.php:153 +#: templates/users.php:66 templates/users.php:157 msgid "Other" -msgstr "Другое" +msgstr "" + +#: templates/users.php:84 +msgid "Username" +msgstr "" -#: templates/users.php:87 +#: templates/users.php:91 msgid "Storage" msgstr "" -#: templates/users.php:98 +#: templates/users.php:102 msgid "change display name" msgstr "" -#: templates/users.php:102 +#: templates/users.php:106 msgid "set new password" msgstr "" -#: templates/users.php:133 +#: templates/users.php:137 msgid "Default" msgstr "" diff --git a/l10n/ru_RU/user_ldap.po b/l10n/de_AT/user_ldap.po similarity index 79% rename from l10n/ru_RU/user_ldap.po rename to l10n/de_AT/user_ldap.po index 42a5e0fe723d58bafefd42a665e46f4d9400bd60..2affcc0727d5a32b59be58a49f7eb874837169a7 100644 --- a/l10n/ru_RU/user_ldap.po +++ b/l10n/de_AT/user_ldap.po @@ -7,15 +7,15 @@ 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" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" "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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ajax/clearMappings.php:34 msgid "Failed to clear the mappings." @@ -63,11 +63,11 @@ msgstr "" #: js/settings.js:112 msgid "Success" -msgstr "Успех" +msgstr "" #: js/settings.js:117 msgid "Error" -msgstr "Ошибка" +msgstr "" #: js/settings.js:141 msgid "Connection test succeeded" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ru_RU/user_webdavauth.po b/l10n/de_AT/user_webdavauth.po similarity index 53% rename from l10n/ru_RU/user_webdavauth.po rename to l10n/de_AT/user_webdavauth.po index b2e915245745600192a7e98ad1ce5a91abc8e19d..c63e57c165e5b3acf489bcdcfecc3c9e8d924d33 100644 --- a/l10n/ru_RU/user_webdavauth.po +++ b/l10n/de_AT/user_webdavauth.po @@ -3,34 +3,31 @@ # 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" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 09:02+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" "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" +"Language: de_AT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: templates/settings.php:3 msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: http://" +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/de_CH/core.po b/l10n/de_CH/core.po new file mode 100644 index 0000000000000000000000000000000000000000..78e1a2ea08345a9d0b8a265338c38320afdd9d46 --- /dev/null +++ b/l10n/de_CH/core.po @@ -0,0 +1,642 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# arkascha , 2013 +# FlorianScholz , 2013 +# I Robot , 2013 +# Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 +# Mirodin , 2013 +# SteinQuadrat, 2013 +# traductor , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/share.php:97 +#, php-format +msgid "%s shared »%s« with you" +msgstr "%s teilt »%s« mit Ihnen" + +#: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 +msgid "Category type not provided." +msgstr "Kategorie nicht angegeben." + +#: ajax/vcategories/add.php:30 +msgid "No category to add?" +msgstr "Keine Kategorie hinzuzufügen?" + +#: ajax/vcategories/add.php:37 +#, php-format +msgid "This category already exists: %s" +msgstr "Die nachfolgende Kategorie existiert bereits: %s" + +#: ajax/vcategories/addToFavorites.php:26 ajax/vcategories/delete.php:27 +#: ajax/vcategories/favorites.php:24 +#: ajax/vcategories/removeFromFavorites.php:26 +msgid "Object type not provided." +msgstr "Objekttyp nicht angegeben." + +#: ajax/vcategories/addToFavorites.php:30 +#: ajax/vcategories/removeFromFavorites.php:30 +#, php-format +msgid "%s ID not provided." +msgstr "%s ID nicht angegeben." + +#: ajax/vcategories/addToFavorites.php:35 +#, php-format +msgid "Error adding %s to favorites." +msgstr "Fehler beim Hinzufügen von %s zu den Favoriten." + +#: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 +msgid "No categories selected for deletion." +msgstr "Es wurden keine Kategorien zum Löschen ausgewählt." + +#: ajax/vcategories/removeFromFavorites.php:35 +#, php-format +msgid "Error removing %s from favorites." +msgstr "Fehler beim Entfernen von %s von den Favoriten." + +#: js/config.php:32 +msgid "Sunday" +msgstr "Sonntag" + +#: js/config.php:33 +msgid "Monday" +msgstr "Montag" + +#: js/config.php:34 +msgid "Tuesday" +msgstr "Dienstag" + +#: js/config.php:35 +msgid "Wednesday" +msgstr "Mittwoch" + +#: js/config.php:36 +msgid "Thursday" +msgstr "Donnerstag" + +#: js/config.php:37 +msgid "Friday" +msgstr "Freitag" + +#: js/config.php:38 +msgid "Saturday" +msgstr "Samstag" + +#: js/config.php:43 +msgid "January" +msgstr "Januar" + +#: js/config.php:44 +msgid "February" +msgstr "Februar" + +#: js/config.php:45 +msgid "March" +msgstr "März" + +#: js/config.php:46 +msgid "April" +msgstr "April" + +#: js/config.php:47 +msgid "May" +msgstr "Mai" + +#: js/config.php:48 +msgid "June" +msgstr "Juni" + +#: js/config.php:49 +msgid "July" +msgstr "Juli" + +#: js/config.php:50 +msgid "August" +msgstr "August" + +#: js/config.php:51 +msgid "September" +msgstr "September" + +#: js/config.php:52 +msgid "October" +msgstr "Oktober" + +#: js/config.php:53 +msgid "November" +msgstr "November" + +#: js/config.php:54 +msgid "December" +msgstr "Dezember" + +#: js/js.js:355 +msgid "Settings" +msgstr "Einstellungen" + +#: js/js.js:815 +msgid "seconds ago" +msgstr "Gerade eben" + +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:818 +msgid "today" +msgstr "Heute" + +#: js/js.js:819 +msgid "yesterday" +msgstr "Gestern" + +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:821 +msgid "last month" +msgstr "Letzten Monat" + +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: js/js.js:823 +msgid "months ago" +msgstr "Vor Monaten" + +#: js/js.js:824 +msgid "last year" +msgstr "Letztes Jahr" + +#: js/js.js:825 +msgid "years ago" +msgstr "Vor Jahren" + +#: js/oc-dialogs.js:117 +msgid "Choose" +msgstr "Auswählen" + +#: js/oc-dialogs.js:122 +msgid "Cancel" +msgstr "Abbrechen" + +#: js/oc-dialogs.js:141 js/oc-dialogs.js:200 +msgid "Error loading file picker template" +msgstr "Es ist ein Fehler in der Vorlage des Datei-Auswählers aufgetreten." + +#: js/oc-dialogs.js:164 +msgid "Yes" +msgstr "Ja" + +#: js/oc-dialogs.js:172 +msgid "No" +msgstr "Nein" + +#: js/oc-dialogs.js:185 +msgid "Ok" +msgstr "OK" + +#: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 +#: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 +msgid "The object type is not specified." +msgstr "Der Objekttyp ist nicht angegeben." + +#: js/oc-vcategories.js: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:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 +msgid "Error" +msgstr "Fehler" + +#: js/oc-vcategories.js:179 +msgid "The app name is not specified." +msgstr "Der App-Name ist nicht angegeben." + +#: js/oc-vcategories.js:194 +msgid "The required file {file} is not installed!" +msgstr "Die benötigte Datei {file} ist nicht installiert!" + +#: js/share.js:30 js/share.js:45 js/share.js:87 +msgid "Shared" +msgstr "Geteilt" + +#: js/share.js:90 +msgid "Share" +msgstr "Teilen" + +#: js/share.js:131 js/share.js:683 +msgid "Error while sharing" +msgstr "Fehler beim Teilen" + +#: js/share.js:142 +msgid "Error while unsharing" +msgstr "Fehler beim Aufheben der Freigabe" + +#: js/share.js:149 +msgid "Error while changing permissions" +msgstr "Fehler bei der Änderung der Rechte" + +#: js/share.js:158 +msgid "Shared with you and the group {group} by {owner}" +msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." + +#: js/share.js:160 +msgid "Shared with you by {owner}" +msgstr "Von {owner} mit Ihnen geteilt." + +#: js/share.js:183 +msgid "Share with" +msgstr "Teilen mit" + +#: js/share.js:188 +msgid "Share with link" +msgstr "Über einen Link teilen" + +#: js/share.js:191 +msgid "Password protect" +msgstr "Passwortschutz" + +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 +msgid "Password" +msgstr "Passwort" + +#: js/share.js:198 +msgid "Allow Public Upload" +msgstr "Öffentliches Hochladen erlauben" + +#: js/share.js:202 +msgid "Email link to person" +msgstr "Link per E-Mail verschicken" + +#: js/share.js:203 +msgid "Send" +msgstr "Senden" + +#: js/share.js:208 +msgid "Set expiration date" +msgstr "Ein Ablaufdatum setzen" + +#: js/share.js:209 +msgid "Expiration date" +msgstr "Ablaufdatum" + +#: js/share.js:241 +msgid "Share via email:" +msgstr "Mittels einer E-Mail teilen:" + +#: js/share.js:243 +msgid "No people found" +msgstr "Niemand gefunden" + +#: js/share.js:281 +msgid "Resharing is not allowed" +msgstr "Das Weiterverteilen ist nicht erlaubt" + +#: js/share.js:317 +msgid "Shared in {item} with {user}" +msgstr "Freigegeben in {item} von {user}" + +#: js/share.js:338 +msgid "Unshare" +msgstr "Freigabe aufheben" + +#: js/share.js:350 +msgid "can edit" +msgstr "kann bearbeiten" + +#: js/share.js:352 +msgid "access control" +msgstr "Zugriffskontrolle" + +#: js/share.js:355 +msgid "create" +msgstr "erstellen" + +#: js/share.js:358 +msgid "update" +msgstr "aktualisieren" + +#: js/share.js:361 +msgid "delete" +msgstr "löschen" + +#: js/share.js:364 +msgid "share" +msgstr "teilen" + +#: js/share.js:398 js/share.js:630 +msgid "Password protected" +msgstr "Passwortgeschützt" + +#: js/share.js:643 +msgid "Error unsetting expiration date" +msgstr "Fehler beim Entfernen des Ablaufdatums" + +#: js/share.js:655 +msgid "Error setting expiration date" +msgstr "Fehler beim Setzen des Ablaufdatums" + +#: js/share.js:670 +msgid "Sending ..." +msgstr "Sende ..." + +#: js/share.js:681 +msgid "Email sent" +msgstr "Email gesendet" + +#: js/update.js:17 +msgid "" +"The update was unsuccessful. Please report this issue to the ownCloud " +"community." +msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die ownCloud Community." + +#: js/update.js:21 +msgid "The update was successful. Redirecting you to ownCloud now." +msgstr "Das Update war erfolgreich. Sie werden nun zu ownCloud weitergeleitet." + +#: 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}" +msgstr "Nutzen Sie den nachfolgenden Link, um Ihr Passwort zurückzusetzen: {link}" + +#: 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 "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." + +#: lostpassword/templates/lostpassword.php:12 +msgid "Request failed!
Did you make sure your email/username was right?" +msgstr "Anfrage fehlgeschlagen!
Haben Sie darauf geachtet, dass E-Mail-Adresse/Nutzername korrekt waren?" + +#: lostpassword/templates/lostpassword.php:15 +msgid "You will receive a link to reset your password via Email." +msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." + +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 +#: templates/login.php:19 +msgid "Username" +msgstr "Benutzername" + +#: lostpassword/templates/lostpassword.php:22 +msgid "" +"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?" +msgstr "Ihre Dateien sind verschlüsselt. Wenn Sie den Wiederherstellungsschlüssel nicht aktiviert haben, wird es keine Möglichkeit geben, um Ihre Daten wiederzubekommen, nachdem Ihr Passwort zurückgesetzt wurde. Wenn Sie sich nicht sicher sind, was Sie tun sollen, wenden Sie sich bitte an Ihren Administrator, bevor Sie fortfahren. Wollen Sie wirklich fortfahren?" + +#: lostpassword/templates/lostpassword.php:24 +msgid "Yes, I really want to reset my password now" +msgstr "Ja, ich möchte jetzt mein Passwort wirklich zurücksetzen." + +#: lostpassword/templates/lostpassword.php:27 +msgid "Request reset" +msgstr "Zurücksetzung anfordern" + +#: lostpassword/templates/resetpassword.php:4 +msgid "Your password was reset" +msgstr "Ihr Passwort wurde zurückgesetzt." + +#: lostpassword/templates/resetpassword.php:5 +msgid "To login page" +msgstr "Zur Login-Seite" + +#: lostpassword/templates/resetpassword.php:8 +msgid "New password" +msgstr "Neues Passwort" + +#: lostpassword/templates/resetpassword.php:11 +msgid "Reset password" +msgstr "Passwort zurücksetzen" + +#: strings.php:5 +msgid "Personal" +msgstr "Persönlich" + +#: strings.php:6 +msgid "Users" +msgstr "Benutzer" + +#: strings.php:7 +msgid "Apps" +msgstr "Apps" + +#: strings.php:8 +msgid "Admin" +msgstr "Administrator" + +#: strings.php:9 +msgid "Help" +msgstr "Hilfe" + +#: templates/403.php:12 +msgid "Access forbidden" +msgstr "Zugriff verboten" + +#: templates/404.php:15 +msgid "Cloud not found" +msgstr "Cloud wurde nicht gefunden" + +#: templates/altmail.php:2 +#, php-format +msgid "" +"Hey there,\n" +"\n" +"just letting you know that %s shared %s with you.\n" +"View it: %s\n" +"\n" +"Cheers!" +msgstr "Hallo,\n\nich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.\nSchauen Sie es sich an: %s\n\nViele Grüsse!" + +#: templates/edit_categories_dialog.php:4 +msgid "Edit categories" +msgstr "Kategorien ändern" + +#: templates/edit_categories_dialog.php:16 +msgid "Add" +msgstr "Hinzufügen" + +#: templates/installation.php:24 templates/installation.php:31 +#: templates/installation.php:38 +msgid "Security Warning" +msgstr "Sicherheitshinweis" + +#: templates/installation.php:25 +msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" +msgstr "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" + +#: templates/installation.php:26 +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können." + +#: templates/installation.php:32 +msgid "" +"No secure random number generator is available, please enable the PHP " +"OpenSSL extension." +msgstr "Es ist kein sicherer Zufallszahlengenerator verfügbar, bitte aktivieren Sie die PHP-Erweiterung für OpenSSL." + +#: templates/installation.php:33 +msgid "" +"Without a secure random number generator an attacker may be able to predict " +"password reset tokens and take over your account." +msgstr "Ohne einen sicheren Zufallszahlengenerator sind Angreifer in der Lage, die Tokens für das Zurücksetzen der Passwörter vorherzusehen und Ihr Konto zu übernehmen." + +#: templates/installation.php:39 +msgid "" +"Your data directory and files are probably accessible from the internet " +"because the .htaccess file does not work." +msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." + +#: templates/installation.php:41 +#, php-format +msgid "" +"For information how to properly configure your server, please see the documentation." +msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation." + +#: templates/installation.php:47 +msgid "Create an admin account" +msgstr "Administrator-Konto anlegen" + +#: templates/installation.php:65 +msgid "Advanced" +msgstr "Fortgeschritten" + +#: templates/installation.php:67 +msgid "Data folder" +msgstr "Datenverzeichnis" + +#: templates/installation.php:77 +msgid "Configure the database" +msgstr "Datenbank einrichten" + +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 +msgid "will be used" +msgstr "wird verwendet" + +#: templates/installation.php:140 +msgid "Database user" +msgstr "Datenbank-Benutzer" + +#: templates/installation.php:147 +msgid "Database password" +msgstr "Datenbank-Passwort" + +#: templates/installation.php:152 +msgid "Database name" +msgstr "Datenbank-Name" + +#: templates/installation.php:160 +msgid "Database tablespace" +msgstr "Datenbank-Tablespace" + +#: templates/installation.php:167 +msgid "Database host" +msgstr "Datenbank-Host" + +#: templates/installation.php:175 +msgid "Finish setup" +msgstr "Installation abschliessen" + +#: templates/layout.user.php:41 +#, php-format +msgid "%s is available. Get more information on how to update." +msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." + +#: templates/layout.user.php:66 +msgid "Log out" +msgstr "Abmelden" + +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Mehr Apps" + +#: templates/login.php:9 +msgid "Automatic logon rejected!" +msgstr "Automatische Anmeldung verweigert!" + +#: templates/login.php:10 +msgid "" +"If you did not change your password recently, your account may be " +"compromised!" +msgstr "Wenn Sie Ihr Passwort nicht vor kurzem geändert haben, könnte Ihr\nAccount kompromittiert sein!" + +#: templates/login.php:12 +msgid "Please change your password to secure your account again." +msgstr "Bitte ändern Sie Ihr Passwort, um Ihr Konto wieder zu sichern." + +#: templates/login.php:34 +msgid "Lost your password?" +msgstr "Passwort vergessen?" + +#: templates/login.php:39 +msgid "remember" +msgstr "merken" + +#: templates/login.php:41 +msgid "Log in" +msgstr "Einloggen" + +#: templates/login.php:47 +msgid "Alternative Logins" +msgstr "Alternative Logins" + +#: templates/mail.php:15 +#, php-format +msgid "" +"Hey there,

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

Cheers!" +msgstr "Hallo,

ich wollte Sie nur wissen lassen, dass %s %s mit Ihnen teilt.
Schauen Sie es sich an!

Viele Grüsse!" + +#: templates/part.pagenavi.php:3 +msgid "prev" +msgstr "Zurück" + +#: templates/part.pagenavi.php:20 +msgid "next" +msgstr "Weiter" + +#: templates/update.php:3 +#, php-format +msgid "Updating ownCloud to version %s, this may take a while." +msgstr "Aktualisiere ownCloud auf Version %s. Dies könnte eine Weile dauern." diff --git a/l10n/de_CH/files.po b/l10n/de_CH/files.po new file mode 100644 index 0000000000000000000000000000000000000000..20aca9d1ea24056e2ac8e37843d401938971e7b8 --- /dev/null +++ b/l10n/de_CH/files.po @@ -0,0 +1,350 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# a.tangemann , 2013 +# FlorianScholz , 2013 +# I Robot , 2013 +# kabum , 2013 +# Marcel Kühlhorn , 2013 +# Mirodin , 2013 +# SteinQuadrat, 2013 +# traductor , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/move.php:17 +#, php-format +msgid "Could not move %s - File with this name already exists" +msgstr "%s konnte nicht verschoben werden. Eine Datei mit diesem Namen existiert bereits." + +#: ajax/move.php:27 ajax/move.php:30 +#, php-format +msgid "Could not move %s" +msgstr "Konnte %s nicht verschieben" + +#: ajax/upload.php:16 ajax/upload.php:45 +msgid "Unable to set upload directory." +msgstr "Das Upload-Verzeichnis konnte nicht gesetzt werden." + +#: ajax/upload.php:22 +msgid "Invalid Token" +msgstr "Ungültiges Merkmal" + +#: ajax/upload.php:59 +msgid "No file was uploaded. Unknown error" +msgstr "Keine Datei hochgeladen. Unbekannter Fehler" + +#: ajax/upload.php:66 +msgid "There is no error, the file uploaded with success" +msgstr "Es ist kein Fehler aufgetreten. Die Datei wurde erfolgreich hochgeladen." + +#: ajax/upload.php:67 +msgid "" +"The uploaded file exceeds the upload_max_filesize directive in php.ini: " +msgstr "Die hochgeladene Datei überschreitet die upload_max_filesize Vorgabe in php.ini" + +#: ajax/upload.php:69 +msgid "" +"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " +"the HTML form" +msgstr "Die Datei ist grösser, als die MAX_FILE_SIZE Vorgabe erlaubt, die im HTML-Formular spezifiziert ist" + +#: ajax/upload.php:70 +msgid "The uploaded file was only partially uploaded" +msgstr "Die Datei konnte nur teilweise übertragen werden" + +#: ajax/upload.php:71 +msgid "No file was uploaded" +msgstr "Keine Datei konnte übertragen werden." + +#: ajax/upload.php:72 +msgid "Missing a temporary folder" +msgstr "Kein temporärer Ordner vorhanden" + +#: ajax/upload.php:73 +msgid "Failed to write to disk" +msgstr "Fehler beim Schreiben auf die Festplatte" + +#: ajax/upload.php:91 +msgid "Not enough storage available" +msgstr "Nicht genug Speicher vorhanden." + +#: ajax/upload.php:123 +msgid "Invalid directory." +msgstr "Ungültiges Verzeichnis." + +#: appinfo/app.php:12 +msgid "Files" +msgstr "Dateien" + +#: js/file-upload.js:11 +msgid "Unable to upload your file as it is a directory or has 0 bytes" +msgstr "Ihre Datei kann nicht hochgeladen werden, weil es sich um einen Ordner handelt oder 0 Bytes gross ist." + +#: js/file-upload.js:24 +msgid "Not enough space available" +msgstr "Nicht genügend Speicherplatz verfügbar" + +#: js/file-upload.js:64 +msgid "Upload cancelled." +msgstr "Upload abgebrochen." + +#: js/file-upload.js:167 js/files.js:266 +msgid "" +"File upload is in progress. Leaving the page now will cancel the upload." +msgstr "Dateiupload läuft. Wenn Sie die Seite jetzt verlassen, wird der Upload abgebrochen." + +#: js/file-upload.js:233 js/files.js:339 +msgid "URL cannot be empty." +msgstr "Die URL darf nicht leer sein." + +#: js/file-upload.js:238 lib/app.php:53 +msgid "Invalid folder name. Usage of 'Shared' is reserved by ownCloud" +msgstr "Ungültiger Ordnername. Die Verwendung von «Shared» ist ownCloud vorbehalten." + +#: js/file-upload.js:267 js/file-upload.js:283 js/files.js:373 js/files.js:389 +#: js/files.js:693 js/files.js:731 +msgid "Error" +msgstr "Fehler" + +#: js/fileactions.js:116 +msgid "Share" +msgstr "Teilen" + +#: js/fileactions.js:126 +msgid "Delete permanently" +msgstr "Endgültig löschen" + +#: js/fileactions.js:192 +msgid "Rename" +msgstr "Umbenennen" + +#: js/filelist.js:49 js/filelist.js:52 js/filelist.js:465 +msgid "Pending" +msgstr "Ausstehend" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "{new_name} already exists" +msgstr "{new_name} existiert bereits" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "replace" +msgstr "ersetzen" + +#: js/filelist.js:303 +msgid "suggest name" +msgstr "Namen vorschlagen" + +#: js/filelist.js:303 js/filelist.js:305 +msgid "cancel" +msgstr "abbrechen" + +#: js/filelist.js:350 +msgid "replaced {new_name} with {old_name}" +msgstr "{old_name} wurde ersetzt durch {new_name}" + +#: js/filelist.js:350 +msgid "undo" +msgstr "rückgängig machen" + +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" + +#: js/filelist.js:518 +msgid "files uploading" +msgstr "Dateien werden hoch geladen" + +#: js/files.js:52 +msgid "'.' is an invalid file name." +msgstr "'.' ist kein gültiger Dateiname." + +#: js/files.js:56 +msgid "File name cannot be empty." +msgstr "Der Dateiname darf nicht leer sein." + +#: js/files.js:64 +msgid "" +"Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not " +"allowed." +msgstr "Ungültiger Name, «\\», «/», «<», «>», «:», «\"», «|», «?» und «*» sind nicht zulässig." + +#: js/files.js:78 +msgid "Your storage is full, files can not be updated or synced anymore!" +msgstr "Ihr Speicher ist voll, daher können keine Dateien mehr aktualisiert oder synchronisiert werden!" + +#: js/files.js:82 +msgid "Your storage is almost full ({usedSpacePercent}%)" +msgstr "Ihr Speicher ist fast voll ({usedSpacePercent}%)" + +#: js/files.js:231 +msgid "" +"Your download is being prepared. This might take some time if the files are " +"big." +msgstr "Ihr Download wird vorbereitet. Dies kann bei grösseren Dateien etwas dauern." + +#: js/files.js:344 +msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" +msgstr "Ungültiger Verzeichnisname. Die Nutzung von «Shared» ist ownCloud vorbehalten" + +#: js/files.js:744 templates/index.php:67 +msgid "Name" +msgstr "Name" + +#: js/files.js:745 templates/index.php:78 +msgid "Size" +msgstr "Grösse" + +#: js/files.js:746 templates/index.php:80 +msgid "Modified" +msgstr "Geändert" + +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: js/files.js:768 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" + +#: lib/app.php:73 +#, php-format +msgid "%s could not be renamed" +msgstr "%s konnte nicht umbenannt werden" + +#: lib/helper.php:11 templates/index.php:18 +msgid "Upload" +msgstr "Hochladen" + +#: templates/admin.php:5 +msgid "File handling" +msgstr "Dateibehandlung" + +#: templates/admin.php:7 +msgid "Maximum upload size" +msgstr "Maximale Upload-Grösse" + +#: templates/admin.php:10 +msgid "max. possible: " +msgstr "maximal möglich:" + +#: templates/admin.php:15 +msgid "Needed for multi-file and folder downloads." +msgstr "Für Mehrfachdatei- und Ordnerdownloads benötigt:" + +#: templates/admin.php:17 +msgid "Enable ZIP-download" +msgstr "ZIP-Download aktivieren" + +#: templates/admin.php:20 +msgid "0 is unlimited" +msgstr "0 bedeutet unbegrenzt" + +#: templates/admin.php:22 +msgid "Maximum input size for ZIP files" +msgstr "Maximale Grösse für ZIP-Dateien" + +#: templates/admin.php:26 +msgid "Save" +msgstr "Speichern" + +#: templates/index.php:7 +msgid "New" +msgstr "Neu" + +#: templates/index.php:10 +msgid "Text file" +msgstr "Textdatei" + +#: templates/index.php:12 +msgid "Folder" +msgstr "Ordner" + +#: templates/index.php:14 +msgid "From link" +msgstr "Von einem Link" + +#: templates/index.php:41 +msgid "Deleted files" +msgstr "Gelöschte Dateien" + +#: templates/index.php:46 +msgid "Cancel upload" +msgstr "Upload abbrechen" + +#: templates/index.php:52 +msgid "You don’t have write permissions here." +msgstr "Sie haben hier keine Schreib-Berechtigungen." + +#: templates/index.php:59 +msgid "Nothing in here. Upload something!" +msgstr "Alles leer. Laden Sie etwas hoch!" + +#: templates/index.php:73 +msgid "Download" +msgstr "Herunterladen" + +#: templates/index.php:85 templates/index.php:86 +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" + +#: templates/index.php:107 +msgid "" +"The files you are trying to upload exceed the maximum size for file uploads " +"on this server." +msgstr "Die Datei überschreitet die Maximalgrösse für Uploads auf diesem Server." + +#: templates/index.php:112 +msgid "Files are being scanned, please wait." +msgstr "Dateien werden gescannt, bitte warten." + +#: templates/index.php:115 +msgid "Current scanning" +msgstr "Scanne" + +#: templates/part.list.php:74 +msgid "directory" +msgstr "Verzeichnis" + +#: templates/part.list.php:76 +msgid "directories" +msgstr "Verzeichnisse" + +#: templates/part.list.php:85 +msgid "file" +msgstr "Datei" + +#: templates/part.list.php:87 +msgid "files" +msgstr "Dateien" + +#: templates/upgrade.php:2 +msgid "Upgrading filesystem cache..." +msgstr "Dateisystem-Cache wird aktualisiert ..." diff --git a/l10n/de_CH/files_encryption.po b/l10n/de_CH/files_encryption.po new file mode 100644 index 0000000000000000000000000000000000000000..3f0472c11a8a4ee9c065d2c13c3b6bec5b3e463b --- /dev/null +++ b/l10n/de_CH/files_encryption.po @@ -0,0 +1,181 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# ako84 , 2013 +# FlorianScholz , 2013 +# JamFX , 2013 +# Mario Siegmann , 2013 +# traductor , 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" +"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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/adminrecovery.php:29 +msgid "Recovery key successfully enabled" +msgstr "Der Wiederherstellungsschlüssel wurde erfolgreich aktiviert." + +#: ajax/adminrecovery.php:34 +msgid "" +"Could not enable recovery key. Please check your recovery key password!" +msgstr "Der Wiederherstellungsschlüssel konnte nicht aktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!" + +#: ajax/adminrecovery.php:48 +msgid "Recovery key successfully disabled" +msgstr "Der Wiederherstellungsschlüssel wurde erfolgreich deaktiviert." + +#: ajax/adminrecovery.php:53 +msgid "" +"Could not disable recovery key. Please check your recovery key password!" +msgstr "Der Wiederherstellungsschlüssel konnte nicht deaktiviert werden. Bitte überprüfen Sie das Passwort für den Wiederherstellungsschlüssel!" + +#: ajax/changeRecoveryPassword.php:49 +msgid "Password successfully changed." +msgstr "Das Passwort wurde erfolgreich geändert." + +#: ajax/changeRecoveryPassword.php:51 +msgid "Could not change the password. Maybe the old password was not correct." +msgstr "Das Passwort konnte nicht geändert werden. Vielleicht war das alte Passwort nicht richtig." + +#: ajax/updatePrivateKeyPassword.php:51 +msgid "Private key password successfully updated." +msgstr "Das Passwort des privaten Schlüssels wurde erfolgreich aktualisiert." + +#: ajax/updatePrivateKeyPassword.php:53 +msgid "" +"Could not update the private key password. Maybe the old password was not " +"correct." +msgstr "Das Passwort des privaten Schlüssels konnte nicht aktualisiert werden. Vielleicht war das alte Passwort nicht richtig." + +#: files/error.php:7 +msgid "" +"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." +msgstr "Ihr privater Schlüssel ist ungültig. Möglicher Weise wurde von ausserhalb 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." + +#: hooks/hooks.php:44 +msgid "Missing requirements." +msgstr "Fehlende Voraussetzungen" + +#: 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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" + +#: js/settings-admin.js:11 +msgid "Saving..." +msgstr "Speichern..." + +#: templates/invalid_private_key.php:5 +msgid "" +"Your private key is not valid! Maybe the your password was changed from " +"outside." +msgstr "Ihr privater Schlüssel ist ungültig! Vielleicht wurde Ihr Passwort von ausserhalb geändert." + +#: templates/invalid_private_key.php:7 +msgid "You can unlock your private key in your " +msgstr "Sie können den privaten Schlüssel ändern und zwar in Ihrem" + +#: templates/invalid_private_key.php:7 +msgid "personal settings" +msgstr "Persönliche Einstellungen" + +#: templates/settings-admin.php:5 templates/settings-personal.php:4 +msgid "Encryption" +msgstr "Verschlüsselung" + +#: templates/settings-admin.php:10 +msgid "" +"Enable recovery key (allow to recover users files in case of password loss):" +msgstr "Aktivieren Sie den Wiederherstellungsschlüssel (erlaubt die Wiederherstellung des Zugangs zu den Benutzerdateien, wenn das Passwort verloren geht)." + +#: templates/settings-admin.php:14 +msgid "Recovery key password" +msgstr "Wiederherstellungschlüsselpasswort" + +#: templates/settings-admin.php:21 templates/settings-personal.php:54 +msgid "Enabled" +msgstr "Aktiviert" + +#: templates/settings-admin.php:29 templates/settings-personal.php:62 +msgid "Disabled" +msgstr "Deaktiviert" + +#: templates/settings-admin.php:34 +msgid "Change recovery key password:" +msgstr "Wiederherstellungsschlüsselpasswort ändern" + +#: templates/settings-admin.php:41 +msgid "Old Recovery key password" +msgstr "Altes Wiederherstellungsschlüsselpasswort" + +#: templates/settings-admin.php:48 +msgid "New Recovery key password" +msgstr "Neues Wiederherstellungsschlüsselpasswort " + +#: templates/settings-admin.php:53 +msgid "Change Password" +msgstr "Passwort ändern" + +#: templates/settings-personal.php:11 +msgid "Your private key password no longer match your log-in password:" +msgstr "Das Privatschlüsselpasswort darf nicht länger mit den Login-Passwort übereinstimmen." + +#: templates/settings-personal.php:14 +msgid "Set your old private key password to your current log-in password." +msgstr "Setzen Sie Ihr altes Privatschlüsselpasswort auf Ihr aktuelles LogIn-Passwort." + +#: templates/settings-personal.php:16 +msgid "" +" If you don't remember your old password you can ask your administrator to " +"recover your files." +msgstr "Falls Sie sich nicht an Ihr altes Passwort erinnern können, fragen Sie bitte Ihren Administrator, um Ihre Dateien wiederherzustellen." + +#: templates/settings-personal.php:24 +msgid "Old log-in password" +msgstr "Altes Login-Passwort" + +#: templates/settings-personal.php:30 +msgid "Current log-in password" +msgstr "Momentanes Login-Passwort" + +#: templates/settings-personal.php:35 +msgid "Update Private Key Password" +msgstr "Das Passwort des privaten Schlüssels aktualisieren" + +#: templates/settings-personal.php:45 +msgid "Enable password recovery:" +msgstr "Die Passwort-Wiederherstellung aktivieren:" + +#: templates/settings-personal.php:47 +msgid "" +"Enabling this option will allow you to reobtain access to your encrypted " +"files in case of password loss" +msgstr "Durch die Aktivierung dieser Option haben Sie die Möglichkeit, wieder auf Ihre verschlüsselten Dateien zugreifen zu können, wenn Sie Ihr Passwort verloren haben." + +#: templates/settings-personal.php:63 +msgid "File recovery settings updated" +msgstr "Die Einstellungen für die Dateiwiederherstellung wurden aktualisiert." + +#: templates/settings-personal.php:64 +msgid "Could not update file recovery" +msgstr "Die Dateiwiederherstellung konnte nicht aktualisiert werden." diff --git a/l10n/de_CH/files_external.po b/l10n/de_CH/files_external.po new file mode 100644 index 0000000000000000000000000000000000000000..8d124a52de5003a9a08a62d89391cd6895f2bcc6 --- /dev/null +++ b/l10n/de_CH/files_external.po @@ -0,0 +1,124 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# FlorianScholz , 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-07 14:02+0000\n" +"Last-Translator: FlorianScholz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 +msgid "Access granted" +msgstr "Zugriff gestattet" + +#: js/dropbox.js:30 js/dropbox.js:96 js/dropbox.js:102 +msgid "Error configuring Dropbox storage" +msgstr "Fehler beim Einrichten von Dropbox" + +#: js/dropbox.js:65 js/google.js:86 +msgid "Grant access" +msgstr "Zugriff gestatten" + +#: js/dropbox.js:101 +msgid "Please provide a valid Dropbox app key and secret." +msgstr "Bitte tragen Sie einen gültigen Dropbox-App-Key mit Secret ein." + +#: js/google.js:42 js/google.js:121 +msgid "Error configuring Google Drive storage" +msgstr "Fehler beim Einrichten von Google Drive" + +#: lib/config.php:448 +msgid "" +"Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " +"is not possible. Please ask your system administrator to install it." +msgstr "Warnung: «smbclient» ist nicht installiert. Das Einhängen von CIFS/SMB-Freigaben ist nicht möglich. Bitten Sie Ihren Systemadministrator, dies zu installieren." + +#: lib/config.php:451 +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 "Warnung:: Die FTP Unterstützung von PHP ist nicht aktiviert oder installiert. Bitte wenden Sie sich an Ihren Systemadministrator." + +#: lib/config.php:454 +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 "Achtung: Die Curl-Unterstützung von PHP ist nicht aktiviert oder installiert. Das Laden von ownCloud / WebDAV oder GoogleDrive Freigaben ist nicht möglich. Bitte Sie Ihren Systemadministrator, das Modul zu installieren." + +#: templates/settings.php:3 +msgid "External Storage" +msgstr "Externer Speicher" + +#: templates/settings.php:9 templates/settings.php:28 +msgid "Folder name" +msgstr "Ordnername" + +#: templates/settings.php:10 +msgid "External storage" +msgstr "Externer Speicher" + +#: templates/settings.php:11 +msgid "Configuration" +msgstr "Konfiguration" + +#: templates/settings.php:12 +msgid "Options" +msgstr "Optionen" + +#: templates/settings.php:13 +msgid "Applicable" +msgstr "Zutreffend" + +#: templates/settings.php:33 +msgid "Add storage" +msgstr "Speicher hinzufügen" + +#: templates/settings.php:90 +msgid "None set" +msgstr "Nicht definiert" + +#: templates/settings.php:91 +msgid "All Users" +msgstr "Alle Benutzer" + +#: templates/settings.php:92 +msgid "Groups" +msgstr "Gruppen" + +#: templates/settings.php:100 +msgid "Users" +msgstr "Benutzer" + +#: templates/settings.php:113 templates/settings.php:114 +#: templates/settings.php:149 templates/settings.php:150 +msgid "Delete" +msgstr "Löschen" + +#: templates/settings.php:129 +msgid "Enable User External Storage" +msgstr "Externen Speicher für Benutzer aktivieren" + +#: templates/settings.php:130 +msgid "Allow users to mount their own external storage" +msgstr "Erlaubt Benutzern, ihre eigenen externen Speicher einzubinden" + +#: templates/settings.php:141 +msgid "SSL root certificates" +msgstr "SSL-Root-Zertifikate" + +#: templates/settings.php:159 +msgid "Import Root Certificate" +msgstr "Root-Zertifikate importieren" diff --git a/l10n/de_CH/files_sharing.po b/l10n/de_CH/files_sharing.po new file mode 100644 index 0000000000000000000000000000000000000000..c17931aa32bbc9a596356d46fe8b8d1fcf469160 --- /dev/null +++ b/l10n/de_CH/files_sharing.po @@ -0,0 +1,83 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# FlorianScholz , 2013 +# JamFX , 2013 +# Mario Siegmann , 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-07 14:30+0000\n" +"Last-Translator: FlorianScholz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/authenticate.php:4 +msgid "The password is wrong. Try again." +msgstr "Das Passwort ist falsch. Bitte versuchen Sie es erneut." + +#: templates/authenticate.php:7 +msgid "Password" +msgstr "Passwort" + +#: templates/authenticate.php:9 +msgid "Submit" +msgstr "Bestätigen" + +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Gründe könnten sein:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "Das Element wurde entfernt" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "Der Link ist abgelaufen" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "Teilen ist deaktiviert" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." + +#: templates/public.php:15 +#, php-format +msgid "%s shared the folder %s with you" +msgstr "%s hat den Ordner %s mit Ihnen geteilt" + +#: templates/public.php:18 +#, php-format +msgid "%s shared the file %s with you" +msgstr "%s hat die Datei %s mit Ihnen geteilt" + +#: templates/public.php:26 templates/public.php:88 +msgid "Download" +msgstr "Herunterladen" + +#: templates/public.php:43 templates/public.php:46 +msgid "Upload" +msgstr "Hochladen" + +#: templates/public.php:56 +msgid "Cancel upload" +msgstr "Upload abbrechen" + +#: templates/public.php:85 +msgid "No preview available for" +msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_CH/files_trashbin.po b/l10n/de_CH/files_trashbin.po new file mode 100644 index 0000000000000000000000000000000000000000..1d80e2f4371bad1f5e42d4a26b49bb193d22e347 --- /dev/null +++ b/l10n/de_CH/files_trashbin.po @@ -0,0 +1,86 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# FlorianScholz , 2013 +# Mario Siegmann , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/delete.php:42 +#, php-format +msgid "Couldn't delete %s permanently" +msgstr "Konnte %s nicht dauerhaft löschen" + +#: ajax/undelete.php:42 +#, php-format +msgid "Couldn't restore %s" +msgstr "Konnte %s nicht wiederherstellen" + +#: js/trash.js:7 js/trash.js:100 +msgid "perform restore operation" +msgstr "Wiederherstellung ausführen" + +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 +msgid "Error" +msgstr "Fehler" + +#: js/trash.js:36 +msgid "delete file permanently" +msgstr "Datei dauerhaft löschen" + +#: js/trash.js:127 +msgid "Delete permanently" +msgstr "Endgültig löschen" + +#: js/trash.js:182 templates/index.php:17 +msgid "Name" +msgstr "Name" + +#: js/trash.js:183 templates/index.php:27 +msgid "Deleted" +msgstr "Gelöscht" + +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "Wiederhergestellt" + +#: templates/index.php:9 +msgid "Nothing in here. Your trash bin is empty!" +msgstr "Nichts zu löschen, Ihr Papierkorb ist leer!" + +#: templates/index.php:20 templates/index.php:22 +msgid "Restore" +msgstr "Wiederherstellen" + +#: templates/index.php:30 templates/index.php:31 +msgid "Delete" +msgstr "Löschen" + +#: templates/part.breadcrumb.php:9 +msgid "Deleted Files" +msgstr "Gelöschte Dateien" diff --git a/l10n/de_CH/files_versions.po b/l10n/de_CH/files_versions.po new file mode 100644 index 0000000000000000000000000000000000000000..d055e276f7ae4336455ee49f66df62fa268564b2 --- /dev/null +++ b/l10n/de_CH/files_versions.po @@ -0,0 +1,45 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# FlorianScholz , 2013 +# Mario Siegmann , 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-07 14:02+0000\n" +"Last-Translator: FlorianScholz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/rollbackVersion.php:13 +#, php-format +msgid "Could not revert: %s" +msgstr "Konnte %s nicht zurücksetzen" + +#: js/versions.js:7 +msgid "Versions" +msgstr "Versionen" + +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Konnte {file} der Revision {timestamp} nicht rückgänging machen." + +#: js/versions.js:79 +msgid "More versions..." +msgstr "Mehrere Versionen..." + +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Keine anderen Versionen verfügbar" + +#: js/versions.js:149 +msgid "Restore" +msgstr "Wiederherstellen" diff --git a/l10n/de_CH/lib.po b/l10n/de_CH/lib.po new file mode 100644 index 0000000000000000000000000000000000000000..b694523ffe88671348b7a16d92142916cb6fa501 --- /dev/null +++ b/l10n/de_CH/lib.po @@ -0,0 +1,262 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# FlorianScholz , 2013 +# Mario Siegmann , 2013 +# traductor , 2013 +msgid "" +msgstr "" +"Project-Id-Version: ownCloud\n" +"Report-Msgid-Bugs-To: http://bugs.owncloud.org/\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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: app.php:360 +msgid "Help" +msgstr "Hilfe" + +#: app.php:373 +msgid "Personal" +msgstr "Persönlich" + +#: app.php:384 +msgid "Settings" +msgstr "Einstellungen" + +#: app.php:396 +msgid "Users" +msgstr "Benutzer" + +#: app.php:409 +msgid "Admin" +msgstr "Administrator" + +#: app.php:836 +#, php-format +msgid "Failed to upgrade \"%s\"." +msgstr "Konnte \"%s\" nicht aktualisieren." + +#: defaults.php:35 +msgid "web services under your control" +msgstr "Web-Services unter Ihrer Kontrolle" + +#: files.php:66 files.php:98 +#, php-format +msgid "cannot open \"%s\"" +msgstr "Öffnen von \"%s\" fehlgeschlagen" + +#: files.php:226 +msgid "ZIP download is turned off." +msgstr "Der ZIP-Download ist deaktiviert." + +#: files.php:227 +msgid "Files need to be downloaded one by one." +msgstr "Die Dateien müssen einzeln heruntergeladen werden." + +#: files.php:228 files.php:256 +msgid "Back to Files" +msgstr "Zurück zu \"Dateien\"" + +#: files.php:253 +msgid "Selected files too large to generate zip file." +msgstr "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen." + +#: files.php:254 +msgid "" +"Download the files in smaller chunks, seperately or kindly ask your " +"administrator." +msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." + +#: helper.php:235 +msgid "couldn't be determined" +msgstr "konnte nicht ermittelt werden" + +#: json.php:28 +msgid "Application is not enabled" +msgstr "Die Anwendung ist nicht aktiviert" + +#: json.php:39 json.php:62 json.php:73 +msgid "Authentication error" +msgstr "Authentifizierungs-Fehler" + +#: json.php:51 +msgid "Token expired. Please reload page." +msgstr "Token abgelaufen. Bitte laden Sie die Seite neu." + +#: search/provider/file.php:17 search/provider/file.php:35 +msgid "Files" +msgstr "Dateien" + +#: search/provider/file.php:26 search/provider/file.php:33 +msgid "Text" +msgstr "Text" + +#: search/provider/file.php:29 +msgid "Images" +msgstr "Bilder" + +#: setup/abstractdatabase.php:22 +#, php-format +msgid "%s enter the database username." +msgstr "%s geben Sie den Datenbank-Benutzernamen an." + +#: setup/abstractdatabase.php:25 +#, php-format +msgid "%s enter the database name." +msgstr "%s geben Sie den Datenbank-Namen an." + +#: setup/abstractdatabase.php:28 +#, php-format +msgid "%s you may not use dots in the database name" +msgstr "%s Der Datenbank-Name darf keine Punkte enthalten" + +#: setup/mssql.php:20 +#, php-format +msgid "MS SQL username and/or password not valid: %s" +msgstr "MS SQL Benutzername und/oder Passwort ungültig: %s" + +#: setup/mssql.php:21 setup/mysql.php:13 setup/oci.php:114 +#: setup/postgresql.php:24 setup/postgresql.php:70 +msgid "You need to enter either an existing account or the administrator." +msgstr "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben." + +#: setup/mysql.php:12 +msgid "MySQL username and/or password not valid" +msgstr "MySQL Benutzername und/oder Passwort ungültig" + +#: setup/mysql.php:67 setup/oci.php:54 setup/oci.php:121 setup/oci.php:147 +#: setup/oci.php:154 setup/oci.php:165 setup/oci.php:172 setup/oci.php:181 +#: setup/oci.php:189 setup/oci.php:198 setup/oci.php:204 +#: setup/postgresql.php:89 setup/postgresql.php:98 setup/postgresql.php:115 +#: setup/postgresql.php:125 setup/postgresql.php:134 +#, php-format +msgid "DB Error: \"%s\"" +msgstr "DB Fehler: \"%s\"" + +#: setup/mysql.php:68 setup/oci.php:55 setup/oci.php:122 setup/oci.php:148 +#: setup/oci.php:155 setup/oci.php:166 setup/oci.php:182 setup/oci.php:190 +#: setup/oci.php:199 setup/postgresql.php:90 setup/postgresql.php:99 +#: setup/postgresql.php:116 setup/postgresql.php:126 setup/postgresql.php:135 +#, php-format +msgid "Offending command was: \"%s\"" +msgstr "Fehlerhafter Befehl war: \"%s\"" + +#: setup/mysql.php:85 +#, php-format +msgid "MySQL user '%s'@'localhost' exists already." +msgstr "MySQL Benutzer '%s'@'localhost' existiert bereits." + +#: setup/mysql.php:86 +msgid "Drop this user from MySQL" +msgstr "Lösche diesen Benutzer aus MySQL" + +#: setup/mysql.php:91 +#, php-format +msgid "MySQL user '%s'@'%%' already exists" +msgstr "MySQL Benutzer '%s'@'%%' existiert bereits" + +#: setup/mysql.php:92 +msgid "Drop this user from MySQL." +msgstr "Lösche diesen Benutzer aus MySQL." + +#: setup/oci.php:34 +msgid "Oracle connection could not be established" +msgstr "Die Oracle-Verbindung konnte nicht aufgebaut werden." + +#: setup/oci.php:41 setup/oci.php:113 +msgid "Oracle username and/or password not valid" +msgstr "Oracle Benutzername und/oder Passwort ungültig" + +#: setup/oci.php:173 setup/oci.php:205 +#, php-format +msgid "Offending command was: \"%s\", name: %s, password: %s" +msgstr "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s" + +#: setup/postgresql.php:23 setup/postgresql.php:69 +msgid "PostgreSQL username and/or password not valid" +msgstr "PostgreSQL Benutzername und/oder Passwort ungültig" + +#: setup.php:28 +msgid "Set an admin username." +msgstr "Setze Administrator Benutzername." + +#: setup.php:31 +msgid "Set an admin password." +msgstr "Setze Administrator Passwort" + +#: setup.php:184 +msgid "" +"Your web server is not yet properly setup to allow files synchronization " +"because the WebDAV interface seems to be broken." +msgstr "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." + +#: setup.php:185 +#, php-format +msgid "Please double check the installation guides." +msgstr "Bitte prüfen Sie die Installationsanleitungen." + +#: template/functions.php:80 +msgid "seconds ago" +msgstr "Gerade eben" + +#: template/functions.php:81 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:82 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:83 +msgid "today" +msgstr "Heute" + +#: template/functions.php:84 +msgid "yesterday" +msgstr "Gestern" + +#: template/functions.php:85 +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:86 +msgid "last month" +msgstr "Letzten Monat" + +#: template/functions.php:87 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" + +#: template/functions.php:88 +msgid "last year" +msgstr "Letztes Jahr" + +#: template/functions.php:89 +msgid "years ago" +msgstr "Vor Jahren" + +#: template.php:297 +msgid "Caused by:" +msgstr "Verursacht durch:" + +#: vcategories.php:188 vcategories.php:249 +#, php-format +msgid "Could not find category \"%s\"" +msgstr "Die Kategorie «%s» konnte nicht gefunden werden." diff --git a/l10n/de_CH/settings.po b/l10n/de_CH/settings.po new file mode 100644 index 0000000000000000000000000000000000000000..776bfefdefddf32d59b42a486f4d09046503a213 --- /dev/null +++ b/l10n/de_CH/settings.po @@ -0,0 +1,523 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# arkascha , 2013 +# a.tangemann , 2013 +# FlorianScholz , 2013 +# kabum , 2013 +# Mario Siegmann , 2013 +# Mirodin , 2013 +# traductor , 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: FlorianScholz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/apps/ocs.php:20 +msgid "Unable to load list from App Store" +msgstr "Die Liste der Anwendungen im Store konnte nicht geladen werden." + +#: ajax/changedisplayname.php:25 ajax/removeuser.php:15 ajax/setquota.php:17 +#: ajax/togglegroups.php:20 +msgid "Authentication error" +msgstr "Authentifizierungs-Fehler" + +#: ajax/changedisplayname.php:31 +msgid "Your display name has been changed." +msgstr "Dein Anzeigename ist geändert worden." + +#: ajax/changedisplayname.php:34 +msgid "Unable to change display name" +msgstr "Das Ändern des Anzeigenamens ist nicht möglich" + +#: ajax/creategroup.php:10 +msgid "Group already exists" +msgstr "Die Gruppe existiert bereits" + +#: ajax/creategroup.php:19 +msgid "Unable to add group" +msgstr "Die Gruppe konnte nicht angelegt werden" + +#: ajax/enableapp.php:11 +msgid "Could not enable app. " +msgstr "Die Anwendung konnte nicht aktiviert werden." + +#: ajax/lostpassword.php:12 +msgid "Email saved" +msgstr "E-Mail-Adresse gespeichert" + +#: ajax/lostpassword.php:14 +msgid "Invalid email" +msgstr "Ungültige E-Mail-Adresse" + +#: ajax/removegroup.php:13 +msgid "Unable to delete group" +msgstr "Die Gruppe konnte nicht gelöscht werden" + +#: ajax/removeuser.php:25 +msgid "Unable to delete user" +msgstr "Der Benutzer konnte nicht gelöscht werden" + +#: ajax/setlanguage.php:15 +msgid "Language changed" +msgstr "Sprache geändert" + +#: ajax/setlanguage.php:17 ajax/setlanguage.php:20 +msgid "Invalid request" +msgstr "Ungültige Anforderung" + +#: ajax/togglegroups.php:12 +msgid "Admins can't remove themself from the admin group" +msgstr "Administratoren können sich nicht selbst aus der admin-Gruppe löschen" + +#: ajax/togglegroups.php:30 +#, php-format +msgid "Unable to add user to group %s" +msgstr "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden" + +#: ajax/togglegroups.php:36 +#, php-format +msgid "Unable to remove user from group %s" +msgstr "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden" + +#: ajax/updateapp.php:14 +msgid "Couldn't update app." +msgstr "Die App konnte nicht aktualisiert werden." + +#: js/apps.js:35 +msgid "Update to {appversion}" +msgstr "Update zu {appversion}" + +#: js/apps.js:41 js/apps.js:81 +msgid "Disable" +msgstr "Deaktivieren" + +#: js/apps.js:41 js/apps.js:69 js/apps.js:88 +msgid "Enable" +msgstr "Aktivieren" + +#: js/apps.js:60 +msgid "Please wait...." +msgstr "Bitte warten...." + +#: js/apps.js:64 js/apps.js:76 js/apps.js:85 js/apps.js:98 +msgid "Error" +msgstr "Fehler" + +#: js/apps.js:95 +msgid "Updating...." +msgstr "Update..." + +#: js/apps.js:98 +msgid "Error while updating app" +msgstr "Es ist ein Fehler während des Updates aufgetreten" + +#: js/apps.js:101 +msgid "Updated" +msgstr "Aktualisiert" + +#: js/personal.js:118 +msgid "Saving..." +msgstr "Speichern..." + +#: js/users.js:47 +msgid "deleted" +msgstr "gelöscht" + +#: js/users.js:47 +msgid "undo" +msgstr "rückgängig machen" + +#: js/users.js:79 +msgid "Unable to remove user" +msgstr "Der Benutzer konnte nicht entfernt werden." + +#: js/users.js:92 templates/users.php:26 templates/users.php:87 +#: templates/users.php:112 +msgid "Groups" +msgstr "Gruppen" + +#: js/users.js:95 templates/users.php:89 templates/users.php:124 +msgid "Group Admin" +msgstr "Gruppenadministrator" + +#: js/users.js:115 templates/users.php:164 +msgid "Delete" +msgstr "Löschen" + +#: js/users.js:269 +msgid "add group" +msgstr "Gruppe hinzufügen" + +#: js/users.js:428 +msgid "A valid username must be provided" +msgstr "Es muss ein gültiger Benutzername angegeben werden" + +#: js/users.js:429 js/users.js:435 js/users.js:450 +msgid "Error creating user" +msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten" + +#: js/users.js:434 +msgid "A valid password must be provided" +msgstr "Es muss ein gültiges Passwort angegeben werden" + +#: personal.php:37 personal.php:38 +msgid "__language_name__" +msgstr "Deutsch (Förmlich: Sie)" + +#: templates/admin.php:15 +msgid "Security Warning" +msgstr "Sicherheitshinweis" + +#: templates/admin.php:18 +msgid "" +"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." +msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers." + +#: templates/admin.php:29 +msgid "Setup Warning" +msgstr "Einrichtungswarnung" + +#: 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 "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." + +#: templates/admin.php:33 +#, php-format +msgid "Please double check the installation guides." +msgstr "Bitte überprüfen Sie die Instalationsanleitungen." + +#: templates/admin.php:44 +msgid "Module 'fileinfo' missing" +msgstr "Das Modul 'fileinfo' fehlt" + +#: 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 "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." + +#: templates/admin.php:58 +msgid "Locale not working" +msgstr "Die Lokalisierung funktioniert nicht" + +#: templates/admin.php:63 +#, php-format +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 "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." + +#: templates/admin.php:75 +msgid "Internet connection not working" +msgstr "Keine Internetverbindung" + +#: templates/admin.php:78 +msgid "" +"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." +msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." + +#: templates/admin.php:92 +msgid "Cron" +msgstr "Cron" + +#: templates/admin.php:101 +msgid "Execute one task with each page loaded" +msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" + +#: templates/admin.php:111 +msgid "" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft." + +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen." + +#: templates/admin.php:128 +msgid "Sharing" +msgstr "Teilen" + +#: templates/admin.php:134 +msgid "Enable Share API" +msgstr "Share-API aktivieren" + +#: templates/admin.php:135 +msgid "Allow apps to use the Share API" +msgstr "Anwendungen erlauben, die Share-API zu benutzen" + +#: templates/admin.php:142 +msgid "Allow links" +msgstr "Links erlauben" + +#: templates/admin.php:143 +msgid "Allow users to share items to the public with links" +msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" + +#: templates/admin.php:151 +msgid "Allow public uploads" +msgstr "Erlaube öffentliches hochladen" + +#: templates/admin.php:152 +msgid "" +"Allow users to enable others to upload into their publicly shared folders" +msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" + +#: templates/admin.php:160 +msgid "Allow resharing" +msgstr "Erlaube Weiterverteilen" + +#: templates/admin.php:161 +msgid "Allow users to share items shared with them again" +msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" + +#: templates/admin.php:168 +msgid "Allow users to share with anyone" +msgstr "Erlaubt Benutzern, mit jedem zu teilen" + +#: templates/admin.php:171 +msgid "Allow users to only share with users in their groups" +msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" + +#: templates/admin.php:178 +msgid "Security" +msgstr "Sicherheit" + +#: templates/admin.php:191 +msgid "Enforce HTTPS" +msgstr "HTTPS erzwingen" + +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." + +#: templates/admin.php:199 +#, php-format +msgid "" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." + +#: templates/admin.php:211 +msgid "Log" +msgstr "Log" + +#: templates/admin.php:212 +msgid "Log level" +msgstr "Log-Level" + +#: templates/admin.php:243 +msgid "More" +msgstr "Mehr" + +#: templates/admin.php:244 +msgid "Less" +msgstr "Weniger" + +#: templates/admin.php:250 templates/personal.php:114 +msgid "Version" +msgstr "Version" + +#: templates/admin.php:254 templates/personal.php:117 +msgid "" +"Developed by the ownCloud community, the source code is " +"licensed under the AGPL." +msgstr "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert." + +#: templates/apps.php:13 +msgid "Add your App" +msgstr "Fügen Sie Ihre Anwendung hinzu" + +#: templates/apps.php:28 +msgid "More Apps" +msgstr "Weitere Anwendungen" + +#: templates/apps.php:33 +msgid "Select an App" +msgstr "Wählen Sie eine Anwendung aus" + +#: templates/apps.php:39 +msgid "See application page at apps.owncloud.com" +msgstr "Weitere Anwendungen finden Sie auf apps.owncloud.com" + +#: templates/apps.php:41 +msgid "-licensed by " +msgstr "-lizenziert von " + +#: templates/apps.php:43 +msgid "Update" +msgstr "Update durchführen" + +#: templates/help.php:4 +msgid "User Documentation" +msgstr "Dokumentation für Benutzer" + +#: templates/help.php:6 +msgid "Administrator Documentation" +msgstr "Dokumentation für Administratoren" + +#: templates/help.php:9 +msgid "Online Documentation" +msgstr "Online-Dokumentation" + +#: templates/help.php:11 +msgid "Forum" +msgstr "Forum" + +#: templates/help.php:14 +msgid "Bugtracker" +msgstr "Bugtracker" + +#: templates/help.php:17 +msgid "Commercial Support" +msgstr "Kommerzieller Support" + +#: templates/personal.php:8 +msgid "Get the apps to sync your files" +msgstr "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren" + +#: templates/personal.php:19 +msgid "Show First Run Wizard again" +msgstr "Den Einrichtungsassistenten erneut anzeigen" + +#: templates/personal.php:27 +#, php-format +msgid "You have used %s of the available %s" +msgstr "Sie verwenden %s der verfügbaren %s" + +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 +msgid "Password" +msgstr "Passwort" + +#: templates/personal.php:40 +msgid "Your password was changed" +msgstr "Ihr Passwort wurde geändert." + +#: templates/personal.php:41 +msgid "Unable to change your password" +msgstr "Das Passwort konnte nicht geändert werden" + +#: templates/personal.php:42 +msgid "Current password" +msgstr "Aktuelles Passwort" + +#: templates/personal.php:44 +msgid "New password" +msgstr "Neues Passwort" + +#: templates/personal.php:46 +msgid "Change password" +msgstr "Passwort ändern" + +#: templates/personal.php:58 templates/users.php:85 +msgid "Display Name" +msgstr "Anzeigename" + +#: templates/personal.php:73 +msgid "Email" +msgstr "E-Mail" + +#: templates/personal.php:75 +msgid "Your email address" +msgstr "Ihre E-Mail-Adresse" + +#: templates/personal.php:76 +msgid "Fill in an email address to enable password recovery" +msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." + +#: templates/personal.php:85 templates/personal.php:86 +msgid "Language" +msgstr "Sprache" + +#: templates/personal.php:98 +msgid "Help translate" +msgstr "Helfen Sie bei der Übersetzung" + +#: templates/personal.php:104 +msgid "WebDAV" +msgstr "WebDAV" + +#: templates/personal.php:106 +#, php-format +msgid "" +"Use this address to access your Files via WebDAV" +msgstr "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen." + +#: templates/users.php:21 +msgid "Login Name" +msgstr "Loginname" + +#: templates/users.php:30 +msgid "Create" +msgstr "Erstellen" + +#: templates/users.php:36 +msgid "Admin Recovery Password" +msgstr "Admin-Passwort-Wiederherstellung" + +#: templates/users.php:37 templates/users.php:38 +msgid "" +"Enter the recovery password in order to recover the users files during " +"password change" +msgstr "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen" + +#: templates/users.php:42 +msgid "Default Storage" +msgstr "Standard-Speicher" + +#: templates/users.php:48 templates/users.php:142 +msgid "Unlimited" +msgstr "Unbegrenzt" + +#: templates/users.php:66 templates/users.php:157 +msgid "Other" +msgstr "Andere" + +#: templates/users.php:84 +msgid "Username" +msgstr "Benutzername" + +#: templates/users.php:91 +msgid "Storage" +msgstr "Speicher" + +#: templates/users.php:102 +msgid "change display name" +msgstr "Anzeigenamen ändern" + +#: templates/users.php:106 +msgid "set new password" +msgstr "Neues Passwort setzen" + +#: templates/users.php:137 +msgid "Default" +msgstr "Standard" diff --git a/l10n/de_CH/user_ldap.po b/l10n/de_CH/user_ldap.po new file mode 100644 index 0000000000000000000000000000000000000000..20049b695c2eb9274d732561744cc2d71f46082f --- /dev/null +++ b/l10n/de_CH/user_ldap.po @@ -0,0 +1,426 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# a.tangemann , 2013 +# FlorianScholz , 2013 +# JamFX , 2013 +# Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 +# multimill , 2012 +# traductor , 2012-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: FlorianScholz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ajax/clearMappings.php:34 +msgid "Failed to clear the mappings." +msgstr "Löschen der Zuordnung fehlgeschlagen." + +#: ajax/deleteConfiguration.php:34 +msgid "Failed to delete the server configuration" +msgstr "Löschen der Serverkonfiguration fehlgeschlagen" + +#: ajax/testConfiguration.php:36 +msgid "The configuration is valid and the connection could be established!" +msgstr "Die Konfiguration ist gültig und die Verbindung konnte hergestellt werden!" + +#: ajax/testConfiguration.php:39 +msgid "" +"The configuration is valid, but the Bind failed. Please check the server " +"settings and credentials." +msgstr "Die Konfiguration ist gültig aber die Verbindung ist fehlgeschlagen. Bitte überprüfen Sie die Servereinstellungen und die Anmeldeinformationen." + +#: ajax/testConfiguration.php:43 +msgid "" +"The configuration is invalid. Please look in the ownCloud log for further " +"details." +msgstr "Die Konfiguration ist ungültig, sehen Sie für weitere Details bitte im ownCloud Log nach" + +#: js/settings.js:66 +msgid "Deletion failed" +msgstr "Löschen fehlgeschlagen" + +#: js/settings.js:82 +msgid "Take over settings from recent server configuration?" +msgstr "Einstellungen von letzter Konfiguration übernehmen?" + +#: js/settings.js:83 +msgid "Keep settings?" +msgstr "Einstellungen beibehalten?" + +#: js/settings.js:97 +msgid "Cannot add server configuration" +msgstr "Das Hinzufügen der Serverkonfiguration schlug fehl" + +#: js/settings.js:111 +msgid "mappings cleared" +msgstr "Zuordnungen gelöscht" + +#: js/settings.js:112 +msgid "Success" +msgstr "Erfolg" + +#: js/settings.js:117 +msgid "Error" +msgstr "Fehler" + +#: js/settings.js:141 +msgid "Connection test succeeded" +msgstr "Verbindungstest erfolgreich" + +#: js/settings.js:146 +msgid "Connection test failed" +msgstr "Verbindungstest fehlgeschlagen" + +#: js/settings.js:156 +msgid "Do you really want to delete the current Server Configuration?" +msgstr "Möchten Sie die aktuelle Serverkonfiguration wirklich löschen?" + +#: js/settings.js:157 +msgid "Confirm Deletion" +msgstr "Löschung bestätigen" + +#: templates/settings.php:9 +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 "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." + +#: 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 "Warnung: Da das PHP-Modul für LDAP nicht installiert ist, wird das Backend nicht funktionieren. Bitten Sie Ihren Systemadministrator das Modul zu installieren." + +#: templates/settings.php:16 +msgid "Server configuration" +msgstr "Serverkonfiguration" + +#: templates/settings.php:32 +msgid "Add Server Configuration" +msgstr "Serverkonfiguration hinzufügen" + +#: templates/settings.php:37 +msgid "Host" +msgstr "Host" + +#: templates/settings.php:39 +msgid "" +"You can omit the protocol, except you require SSL. Then start with ldaps://" +msgstr "Sie können das Protokoll auslassen, ausser wenn Sie SSL benötigen. Beginnen Sie dann mit ldaps://" + +#: templates/settings.php:40 +msgid "Base DN" +msgstr "Basis-DN" + +#: templates/settings.php:41 +msgid "One Base DN per line" +msgstr "Ein Basis-DN pro Zeile" + +#: templates/settings.php:42 +msgid "You can specify Base DN for users and groups in the Advanced tab" +msgstr "Sie können Basis-DN für Benutzer und Gruppen in dem «Erweitert»-Reiter konfigurieren" + +#: templates/settings.php:44 +msgid "User DN" +msgstr "Benutzer-DN" + +#: 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 "Der DN des Benutzers für LDAP-Bind, z.B.: uid=agent,dc=example,dc=com. Für einen anonymen Zugriff lassen Sie DN und Passwort leer." + +#: templates/settings.php:47 +msgid "Password" +msgstr "Passwort" + +#: templates/settings.php:50 +msgid "For anonymous access, leave DN and Password empty." +msgstr "Lassen Sie die Felder DN und Passwort für einen anonymen Zugang leer." + +#: templates/settings.php:51 +msgid "User Login Filter" +msgstr "Benutzer-Login-Filter" + +#: 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 "Bestimmt den angewendeten Filter, wenn eine Anmeldung durchgeführt wird. %%uid ersetzt den Benutzernamen beim Anmeldeversuch." + +#: templates/settings.php:55 +#, php-format +msgid "use %%uid placeholder, e.g. \"uid=%%uid\"" +msgstr "verwenden Sie %%uid Platzhalter, z. B. «uid=%%uid»" + +#: templates/settings.php:56 +msgid "User List Filter" +msgstr "Benutzer-Filter-Liste" + +#: templates/settings.php:59 +msgid "Defines the filter to apply, when retrieving users." +msgstr "Definiert den Filter für die Anfrage der Benutzer." + +#: templates/settings.php:60 +msgid "without any placeholder, e.g. \"objectClass=person\"." +msgstr "ohne Platzhalter, z.B.: «objectClass=person»" + +#: templates/settings.php:61 +msgid "Group Filter" +msgstr "Gruppen-Filter" + +#: templates/settings.php:64 +msgid "Defines the filter to apply, when retrieving groups." +msgstr "Definiert den Filter für die Anfrage der Gruppen." + +#: templates/settings.php:65 +msgid "without any placeholder, e.g. \"objectClass=posixGroup\"." +msgstr "ohne Platzhalter, z.B.: «objectClass=posixGroup»" + +#: templates/settings.php:69 +msgid "Connection Settings" +msgstr "Verbindungseinstellungen" + +#: templates/settings.php:71 +msgid "Configuration Active" +msgstr "Konfiguration aktiv" + +#: templates/settings.php:71 +msgid "When unchecked, this configuration will be skipped." +msgstr "Wenn nicht angehakt, wird diese Konfiguration übersprungen." + +#: templates/settings.php:72 +msgid "Port" +msgstr "Port" + +#: templates/settings.php:73 +msgid "Backup (Replica) Host" +msgstr "Backup Host (Kopie)" + +#: templates/settings.php:73 +msgid "" +"Give an optional backup host. It must be a replica of the main LDAP/AD " +"server." +msgstr "Geben Sie einen optionalen Backup Host an. Es muss sich um eine Kopie des Haupt LDAP/AD Servers handeln." + +#: templates/settings.php:74 +msgid "Backup (Replica) Port" +msgstr "Backup Port" + +#: templates/settings.php:75 +msgid "Disable Main Server" +msgstr "Hauptserver deaktivieren" + +#: templates/settings.php:75 +msgid "Only connect to the replica server." +msgstr "Nur zum Replikat-Server verbinden." + +#: templates/settings.php:76 +msgid "Use TLS" +msgstr "Nutze TLS" + +#: templates/settings.php:76 +msgid "Do not use it additionally for LDAPS connections, it will fail." +msgstr "Benutzen Sie es nicht in Verbindung mit LDAPS Verbindungen, es wird fehlschlagen." + +#: templates/settings.php:77 +msgid "Case insensitve LDAP server (Windows)" +msgstr "LDAP-Server (Windows: Gross- und Kleinschreibung bleibt unbeachtet)" + +#: templates/settings.php:78 +msgid "Turn off SSL certificate validation." +msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." + +#: templates/settings.php:78 +#, php-format +msgid "" +"If connection only works with this option, import the LDAP server's SSL " +"certificate in your %s server." +msgstr "Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server." + +#: templates/settings.php:78 +msgid "Not recommended, use for testing only." +msgstr "Nicht empfohlen, nur zu Testzwecken." + +#: templates/settings.php:79 +msgid "Cache Time-To-Live" +msgstr "Speichere Time-To-Live zwischen" + +#: templates/settings.php:79 +msgid "in seconds. A change empties the cache." +msgstr "in Sekunden. Eine Änderung leert den Cache." + +#: templates/settings.php:81 +msgid "Directory Settings" +msgstr "Ordnereinstellungen" + +#: templates/settings.php:83 +msgid "User Display Name Field" +msgstr "Feld für den Anzeigenamen des Benutzers" + +#: templates/settings.php:83 +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens des Benutzers." + +#: templates/settings.php:84 +msgid "Base User Tree" +msgstr "Basis-Benutzerbaum" + +#: templates/settings.php:84 +msgid "One User Base DN per line" +msgstr "Ein Benutzer Basis-DN pro Zeile" + +#: templates/settings.php:85 +msgid "User Search Attributes" +msgstr "Benutzersucheigenschaften" + +#: templates/settings.php:85 templates/settings.php:88 +msgid "Optional; one attribute per line" +msgstr "Optional; ein Attribut pro Zeile" + +#: templates/settings.php:86 +msgid "Group Display Name Field" +msgstr "Feld für den Anzeigenamen der Gruppe" + +#: templates/settings.php:86 +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens der Gruppen." + +#: templates/settings.php:87 +msgid "Base Group Tree" +msgstr "Basis-Gruppenbaum" + +#: templates/settings.php:87 +msgid "One Group Base DN per line" +msgstr "Ein Gruppen Basis-DN pro Zeile" + +#: templates/settings.php:88 +msgid "Group Search Attributes" +msgstr "Gruppensucheigenschaften" + +#: templates/settings.php:89 +msgid "Group-Member association" +msgstr "Assoziation zwischen Gruppe und Benutzer" + +#: templates/settings.php:91 +msgid "Special Attributes" +msgstr "Spezielle Eigenschaften" + +#: templates/settings.php:93 +msgid "Quota Field" +msgstr "Kontingent-Feld" + +#: templates/settings.php:94 +msgid "Quota Default" +msgstr "Standard-Kontingent" + +#: templates/settings.php:94 +msgid "in bytes" +msgstr "in Bytes" + +#: templates/settings.php:95 +msgid "Email Field" +msgstr "E-Mail-Feld" + +#: templates/settings.php:96 +msgid "User Home Folder Naming Rule" +msgstr "Benennungsregel für das Home-Verzeichnis des Benutzers" + +#: templates/settings.php:96 +msgid "" +"Leave empty for user name (default). Otherwise, specify an LDAP/AD " +"attribute." +msgstr "Ohne Eingabe wird der Benutzername (Standard) verwendet. Anderenfalls tragen Sie bitte ein LDAP/AD-Attribut ein." + +#: templates/settings.php:101 +msgid "Internal Username" +msgstr "Interner Benutzername" + +#: 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. 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." +msgstr "Standardmässig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmässig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." + +#: templates/settings.php:103 +msgid "Internal Username Attribute:" +msgstr "Interne Eigenschaften des Benutzers:" + +#: templates/settings.php:104 +msgid "Override UUID detection" +msgstr "UUID-Erkennung überschreiben" + +#: templates/settings.php:105 +msgid "" +"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." +msgstr "Standardmässig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Ausserdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." + +#: templates/settings.php:106 +msgid "UUID Attribute:" +msgstr "UUID-Attribut:" + +#: templates/settings.php:107 +msgid "Username-LDAP User Mapping" +msgstr "LDAP-Benutzernamenzuordnung" + +#: templates/settings.php:108 +msgid "" +"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." +msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." + +#: templates/settings.php:109 +msgid "Clear Username-LDAP User Mapping" +msgstr "Lösche LDAP-Benutzernamenzuordnung" + +#: templates/settings.php:109 +msgid "Clear Groupname-LDAP Group Mapping" +msgstr "Lösche LDAP-Gruppennamenzuordnung" + +#: templates/settings.php:111 +msgid "Test Configuration" +msgstr "Testkonfiguration" + +#: templates/settings.php:111 +msgid "Help" +msgstr "Hilfe" diff --git a/l10n/de_CH/user_webdavauth.po b/l10n/de_CH/user_webdavauth.po new file mode 100644 index 0000000000000000000000000000000000000000..ef0fb2e26cadf9f0d92a6593a5b0ef7fc20eb601 --- /dev/null +++ b/l10n/de_CH/user_webdavauth.po @@ -0,0 +1,39 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# a.tangemann , 2013 +# FlorianScholz , 2013 +# Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 +# multimill , 2012 +# traductor , 2012-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-07 13:40+0000\n" +"Last-Translator: FlorianScholz \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: de_CH\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: templates/settings.php:3 +msgid "WebDAV Authentication" +msgstr "WebDAV-Authentifizierung" + +#: templates/settings.php:4 +msgid "Address: " +msgstr "Adresse:" + +#: 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 "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." diff --git a/l10n/de_DE/core.po b/l10n/de_DE/core.po index b7b2edcabba366d9f525669e04f53988faad3e40..beccc7cb9aaa5ad8dbb117a464ff1f42f3b3a70e 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: traductor \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:293 +#: js/js.js:355 msgid "Settings" msgstr "Einstellungen" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "Gerade eben" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "Vor 1 Minute" +#: 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:717 -msgid "{minutes} minutes ago" -msgstr "Vor {minutes} 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:718 -msgid "1 hour ago" -msgstr "Vor einer Stunde" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "Vor {hours} Stunden" - -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "Heute" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "Gestern" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "Letzten Monat" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "Vor Monaten" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "Letztes Jahr" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "Vor Jahren" @@ -231,8 +233,8 @@ msgstr "Der Objekttyp ist nicht angegeben." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fehler" @@ -252,123 +254,123 @@ msgstr "Geteilt" msgid "Share" msgstr "Teilen" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fehler beim Teilen" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Fehler beim Aufheben der Freigabe" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Fehler bei der Änderung der Rechte" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Von {owner} mit Ihnen und der Gruppe {group} geteilt." -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Von {owner} mit Ihnen geteilt." -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Teilen mit" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Über einen Link teilen" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Passwortschutz" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Passwort" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Öffentliches Hochladen erlauben" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Link per E-Mail verschicken" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Senden" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Ein Ablaufdatum setzen" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Ablaufdatum" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Mittels einer E-Mail teilen:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Niemand gefunden" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Das Weiterverteilen ist nicht erlaubt" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Freigegeben in {item} von {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Freigabe aufheben" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "kann bearbeiten" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "Zugriffskontrolle" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "erstellen" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "aktualisieren" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "löschen" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "teilen" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passwortgeschützt" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fehler beim Entfernen des Ablaufdatums" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fehler beim Setzen des Ablaufdatums" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Sende ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email gesendet" @@ -383,9 +385,10 @@ msgstr "Das Update ist fehlgeschlagen. Bitte melden Sie dieses Problem an die Haben Sie darauf geachtet, dass E-Mail-Adress msgid "You will receive a link to reset your password via Email." msgstr "Sie erhalten einen Link per E-Mail, um Ihr Passwort zurückzusetzen." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Benutzername" @@ -467,11 +470,11 @@ msgstr "Hilfe" msgid "Access forbidden" msgstr "Zugriff verboten" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud wurde nicht gefunden" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -500,8 +503,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Ihre PHP Version ist durch die NULL Byte Attacke (CVE-2006-7243) angreifbar" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Bitte bringen Sie Ihre PHP Version auf den neuesten Stand um ownCloud sicher nutzen zu können." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Bitte aktualisieren Sie Ihre PHP-Installation um %s sicher nutzen zu können." #: templates/installation.php:32 msgid "" @@ -521,68 +525,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich vom Internet aus erreichbar, weil die .htaccess-Datei nicht funktioniert." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Bitte lesen Sie die Dokumentation für Informationen, wie Sie Ihren Server konfigurieren." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Für Informationen, wie Sie Ihren Server richtig konfigurieren lesen Sie bitte die Dokumentation." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Administrator-Konto anlegen" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Fortgeschritten" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datenverzeichnis" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Datenbank einrichten" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "wird verwendet" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Datenbank-Benutzer" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Datenbank-Passwort" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Datenbank-Name" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Datenbank-Tablespace" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Datenbank-Host" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Installation abschließen" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ist verfügbar. Holen Sie weitere Informationen zu Aktualisierungen ein." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Abmelden" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Mehr Apps" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatische Anmeldung verweigert!" @@ -613,7 +621,7 @@ msgstr "Einloggen" msgid "Alternative Logins" msgstr "Alternative Logins" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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,11 +128,7 @@ msgstr "Teilen" msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Löschen" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Umbenennen" @@ -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:457 -msgid "1 file uploading" -msgstr "1 Datei wird hochgeladen" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "Dateien werden hoch geladen" @@ -207,33 +202,29 @@ msgstr "Ihr Download wird vorbereitet. Dies kann bei größeren Dateien etwas da msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ungültiger Verzeichnisname. Die Nutzung von \"Shared\" ist ownCloud vorbehalten" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Name" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Größe" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Geändert" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 Datei" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n Ordner" +msgstr[1] "%n Ordner" -#: 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 @@ -292,45 +283,49 @@ msgstr "Ordner" msgid "From link" msgstr "Von einem Link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Gelöschte Dateien" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Sie haben hier keine Schreib-Berechtigungen." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Alles leer. Laden Sie etwas hoch!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Herunterladen" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Freigabe aufheben" -#: templates/index.php:107 +#: 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ß" -#: 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 "Die Datei überschreitet die Maximalgröße für Uploads auf diesem Server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dateien werden gescannt, bitte warten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanne" diff --git a/l10n/de_DE/files_encryption.po b/l10n/de_DE/files_encryption.po index ca88a9a239809a995da9c1fcf6300a0dbc65da38..7e0878a9eb18c2524ddb06e207f303489dd17f90 100644 --- a/l10n/de_DE/files_encryption.po +++ b/l10n/de_DE/files_encryption.po @@ -4,15 +4,16 @@ # # Translators: # ako84 , 2013 +# Mario Siegmann , 2013 # JamFX , 2013 # traductor , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-18 01:54-0400\n" -"PO-Revision-Date: 2013-07-17 09:20+0000\n" -"Last-Translator: traductor \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" @@ -70,10 +71,14 @@ msgstr "Fehlende Voraussetzungen" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Bitte stellen Sie sicher, dass PHP 5.3.3 oder neuer installiert und die PHP-Erweiterung OpenSSL aktiviert und richtig konfiguriert ist. Zur Zeit ist die Verschlüsselungs-App deaktiviert." +"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 "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:" +msgstr "Für folgende Nutzer ist keine Verschlüsselung eingerichtet:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/de_DE/files_sharing.po b/l10n/de_DE/files_sharing.po index 7b10322cb55265b5d1bb1385342329343a188824..22a6aa0d50deb22d6a8b1f7edf4fb6f5e7d24f8e 100644 --- a/l10n/de_DE/files_sharing.po +++ b/l10n/de_DE/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 # JamFX , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: JamFX \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+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" @@ -30,28 +31,52 @@ msgstr "Passwort" msgid "Submit" msgstr "Bestätigen" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Entschuldigung, dieser Link scheint nicht mehr zu funktionieren." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Gründe könnten sein:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "Das Element wurde entfernt" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "Der Link ist abgelaufen" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "Teilen ist deaktiviert" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Für mehr Informationen, fragen Sie bitte die Person, die Ihnen diesen Link geschickt hat." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s hat den Ordner %s mit Ihnen geteilt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s hat die Datei %s mit Ihnen geteilt" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Herunterladen" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Hochladen" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload abbrechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Es ist keine Vorschau verfügbar für" diff --git a/l10n/de_DE/files_trashbin.po b/l10n/de_DE/files_trashbin.po index ade6bd6b730fc9dd32056908f8847677ef4d0acd..1875dbf8bfc1b42df7d5a03f165342397fb60ea9 100644 --- a/l10n/de_DE/files_trashbin.po +++ b/l10n/de_DE/files_trashbin.po @@ -3,13 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Mirodin \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" @@ -27,45 +29,45 @@ msgstr "Konnte %s nicht dauerhaft löschen" msgid "Couldn't restore %s" msgstr "Konnte %s nicht wiederherstellen" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "Wiederherstellung ausführen" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Fehler" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "Datei dauerhaft löschen" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Endgültig löschen" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Name" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Gelöscht" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 Ordner" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} Ordner" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 Datei" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} Dateien" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n Ordner" +msgstr[1] "%n Ordner" + +#: 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" +msgstr "Wiederhergestellt" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/de_DE/files_versions.po b/l10n/de_DE/files_versions.po index 7d3c1a83c4472ed7dff76099fc21ffdeb139cebf..56dd696d6d91b253e990c5a197a48eb6790d20f3 100644 --- a/l10n/de_DE/files_versions.po +++ b/l10n/de_DE/files_versions.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Mario Siegmann , 2013 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-05-24 13:28+0000\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 21:33+0000\n" "Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -17,41 +18,27 @@ msgstr "" "Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Konnte %s nicht zurücksetzen" -#: history.php:40 -msgid "success" -msgstr "Erfolgreich" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Die Datei %s wurde auf die Version %s zurückgesetzt" - -#: history.php:49 -msgid "failure" -msgstr "Fehlgeschlagen" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Die Datei %s konnte nicht auf die Version %s zurückgesetzt werden" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versionen" -#: history.php:69 -msgid "No old versions available" -msgstr "Keine älteren Versionen verfügbar" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Konnte {file} der Revision {timestamp} nicht rückgänging machen." -#: history.php:74 -msgid "No path specified" -msgstr "Kein Pfad angegeben" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Mehrere Versionen..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versionen" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Keine anderen Versionen verfügbar" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Setze eine Datei durch Klicken auf den Zurücksetzen-Button auf eine frühere Version zurück" +#: js/versions.js:149 +msgid "Restore" +msgstr "Wiederherstellen" diff --git a/l10n/de_DE/lib.po b/l10n/de_DE/lib.po index 2908fcd3ca3562ac95980756a3445610a61e00f5..c702b00041010417e3663c594e749baaf0afb66d 100644 --- a/l10n/de_DE/lib.po +++ b/l10n/de_DE/lib.po @@ -3,14 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+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: noxin \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -35,26 +37,22 @@ 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 "" +msgstr "Konnte \"%s\" nicht aktualisieren." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Web-Services unter Ihrer Kontrolle" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Öffnen von \"%s\" fehlgeschlagen" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +74,7 @@ msgstr "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +209,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Verursacht durch:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/de_DE/settings.po b/l10n/de_DE/settings.po index c7c5d9647d776ba3800dc3bcaa273fb344ded6b7..6a320fe6518f8d6e12ac26f2fd3be201a3a487cf 100644 --- a/l10n/de_DE/settings.po +++ b/l10n/de_DE/settings.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 21:56+0000\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" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -175,175 +175,173 @@ msgstr "Es muss ein gültiges Passwort angegeben werden" msgid "__language_name__" msgstr "Deutsch (Förmlich: Sie)" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Sicherheitshinweis" -#: templates/admin.php:20 +#: 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 "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben." +"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." +msgstr "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Einrichtungswarnung" -#: templates/admin.php:34 +#: 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 "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Bitte prüfen Sie die Installationsanleitungen." +msgid "Please double check the installation guides." +msgstr "Bitte überprüfen Sie die Instalationsanleitungen." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Das Modul 'fileinfo' fehlt" -#: templates/admin.php:49 +#: 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 "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Die Lokalisierung funktioniert nicht" -#: templates/admin.php:65 +#: 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 "Dieser ownCloud-Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." +"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 "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Keine Internetverbindung" -#: templates/admin.php:80 +#: 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 "Dieser ownCloud-Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungs-E-Mails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen von ownCloud nutzen wollen." - -#: templates/admin.php:94 +"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." +msgstr "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Eine Aufgabe bei jedem Laden der Seite ausführen" -#: templates/admin.php:113 +#: 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 "cron.php ist bei einem Webcron-Service registriert. Die cron.php Seite im ownCloud-Wurzelverzeichniss wird einmal pro Minute über http abgerufen." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Nutzen Sie den Cron-Systemdienst. Rufen Sie die Datei cron.php im ownCloud-Ordner einmal pro Minute über einen Cronjob auf." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Teilen" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Share-API aktivieren" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Anwendungen erlauben, die Share-API zu benutzen" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Links erlauben" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "Erlaube öffentliches hochladen" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Erlaube Weiterverteilen" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Erlaubt Benutzern, mit jedem zu teilen" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Sicherheit" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS erzwingen" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung mit ownCloud zu verbinden." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Bitte verbinden Sie sich mit dieser ownCloud-Instanz per HTTPS, um SSL-Erzwingung zu aktivieren oder deaktivieren." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Log-Level" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mehr" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Weniger" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Version" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "Sie verwenden %s der verfügbaren %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwort" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Ihr Passwort wurde geändert." -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Das Passwort konnte nicht geändert werden" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Aktuelles Passwort" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Neues Passwort" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Passwort ändern" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Anzeigename" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-Mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Ihre E-Mail-Adresse" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren." -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Sprache" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Helfen Sie bei der Übersetzung" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" @@ -93,9 +93,9 @@ msgstr "Löschung bestätigen" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwartetem Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." +msgstr "Warnung: Die Anwendungen user_ldap und user_webdavauth sind inkompatibel. Es kann demzufolge zu unerwarteten Verhalten kommen. Bitten Sie Ihren Systemadministator eine der beiden Anwendungen zu deaktivieren." #: templates/settings.php:12 msgid "" @@ -226,8 +226,8 @@ msgid "Disable Main Server" msgstr "Hauptserver deaktivieren" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Wenn aktiviert, wird ownCloud ausschließlich den Backupserver verwenden." +msgid "Only connect to the replica server." +msgstr "Nur zum Replikat-Server verbinden." #: templates/settings.php:76 msgid "Use TLS" @@ -246,10 +246,11 @@ msgid "Turn off SSL certificate validation." msgstr "Schalten Sie die SSL-Zertifikatsprüfung aus." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Falls die Verbindung es erfordert, muss das SSL-Zertifikat des LDAP-Server importiert werden." +"certificate in your %s server." +msgstr "Falls die Verbindung nur mit dieser Option funktioniert, importieren Sie das SSL-Zertifikat des LDAP-Servers in Ihren %s Server." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -272,8 +273,8 @@ msgid "User Display Name Field" msgstr "Feld für den Anzeigenamen des Benutzers" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Benutzernamens in ownCloud. " +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens des Benutzers." #: templates/settings.php:84 msgid "Base User Tree" @@ -296,8 +297,8 @@ msgid "Group Display Name Field" msgstr "Feld für den Anzeigenamen der Gruppe" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Das LDAP-Attribut für die Generierung des Gruppennamens in ownCloud. " +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "Das LDAP-Attribut zur Generierung des Anzeigenamens der Gruppen." #: templates/settings.php:87 msgid "Base Group Tree" @@ -357,13 +358,13 @@ msgid "" "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 "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichenwerden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Übereinstimmungen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses in ownCloud. Es dient weiterhin als Port für Remote-URLs - zum Beispiel für alle *DAV-Dienste Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich einzig und allein nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." +"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." +msgstr "Standardmäßig wird der interne Benutzername mittels des UUID-Attributes erzeugt. Dies stellt sicher, dass der Benutzername einzigartig ist und keinerlei Zeichen konvertiert werden müssen. Der interne Benutzername unterliegt Beschränkungen, die nur die nachfolgenden Zeichen erlauben: [ a-zA-Z0-9_.@- ]. Andere Zeichen werden mittels ihrer korrespondierenden Zeichen ersetzt oder einfach ausgelassen. Bei Kollisionen wird ein Zähler hinzugefügt bzw. der Zähler um einen Wert erhöht. Der interne Benutzername wird benutzt, um einen Benutzer intern zu identifizieren. Es ist ebenso der standardmäßig vorausgewählte Namen des Heimatverzeichnisses. Es ist auch ein Teil der Remote-URLs - zum Beispiel für alle *DAV-Dienste. Mit dieser Einstellung kann das Standardverhalten überschrieben werden. Um ein ähnliches Verhalten wie vor ownCloud 5 zu erzielen, fügen Sie das anzuzeigende Attribut des Benutzernamens in das nachfolgende Feld ein. Lassen Sie dies hingegen für das Standardverhalten leer. Die Änderungen werden sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer auswirken." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -375,14 +376,14 @@ msgstr "UUID-Erkennung überschreiben" #: 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 " +"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 behaviour. " +" 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 "Standardmäßig erkennt OwnCloud die UUID-Eigenschaften des Benutzers selbstständig. Die UUID-Eigenschaften werden genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird ein interner Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie können diese Eigenschaften überschreiben und selbst Eigenschaften nach Wahl vorgeben. Sie müssen allerdings sicherstellen, dass die Eigenschaften zur Identifikation für Benutzer und Gruppen eindeutig sind. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu zugeordnete (neu erstellte) LDAP-Benutzer und -Gruppen aus." +msgstr "Standardmäßig wird die UUID-Eigenschaft automatisch erkannt. Die UUID-Eigenschaft wird genutzt, um einen LDAP-Benutzer und Gruppen einwandfrei zu identifizieren. Außerdem wird der interne Benutzername erzeugt, der auf Eigenschaften der UUID basiert, wenn es oben nicht anders angegeben wurde. Sie müssen allerdings sicherstellen, dass Ihre gewählten Eigenschaften zur Identifikation der Benutzer und Gruppen eindeutig sind und zugeordnet werden können. Lassen Sie es frei, um es beim Standardverhalten zu belassen. Änderungen wirken sich nur auf neu gemappte (hinzugefügte) LDAP-Benutzer und -Gruppen aus." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -394,18 +395,17 @@ msgstr "LDAP-Benutzernamenzuordnung" #: 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 "OwnCloud nutzt die Benutzernamen, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung vom OwnCloud-Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch OwnCloud gefunden. Der interne OwnCloud-Name, wird in der gesamten OwnCloud verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste in der OwnCloud. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." +"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." +msgstr "Die Benutzernamen werden genutzt, um (Meta)Daten zuzuordnen und zu speichern. Um Benutzer eindeutig und präzise zu identifizieren, hat jeder LDAP-Benutzer einen internen Benutzernamen. Dies erfordert eine Zuordnung (mappen) von Benutzernamen zum LDAP-Benutzer. Der erstellte Benutzername wird der UUID des LDAP-Benutzernamens zugeordnet. Zusätzlich wird der DN zwischengespeichert, um die Interaktion mit dem LDAP zu minimieren, was aber nicht der Identifikation dient. Ändert sich der DN, werden die Änderungen durch gefunden. Der interne Benutzername, wird in überall verwendet. Werden die Zuordnungen gelöscht, bleiben überall Reste zurück. Die Löschung der Zuordnungen kann nicht in der Konfiguration vorgenommen werden, beeinflusst aber die LDAP-Konfiguration! Löschen Sie niemals die Zuordnungen in einer produktiven Umgebung. Löschen Sie die Zuordnungen nur in einer Test- oder Experimentierumgebung." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/de_DE/user_webdavauth.po b/l10n/de_DE/user_webdavauth.po index c47c7321512f3e4b8ff3c78f13085993982692fd..e282ff5473e6148b62e3a668fa7cb163027bb903 100644 --- a/l10n/de_DE/user_webdavauth.po +++ b/l10n/de_DE/user_webdavauth.po @@ -3,8 +3,10 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# a.tangemann , 2013 # a.tangemann , 2012-2013 # Marcel Kühlhorn , 2013 +# Mario Siegmann , 2013 # multimill , 2012 # traductor , 2013 # traductor , 2012 @@ -12,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-04 10:31+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 21:30+0000\n" +"Last-Translator: a.tangemann \n" "Language-Team: German (Germany) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,12 +29,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV-Authentifizierung" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Adresse:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud sendet die Benutzerdaten an diese URL. Dieses Plugin prüft die Antwort und wird die Statuscodes 401 und 403 als ungültige Daten und alle anderen Antworten als gültige Daten interpretieren." +msgstr "Die Benutzerdaten werden an diese Adresse gesendet. Dieses Plugin prüft die Antwort und wird die HTTP-Statuscodes 401 und 403 als ungültige Daten interpretieren und alle anderen Antworten als gültige Daten." diff --git a/l10n/el/core.po b/l10n/el/core.po index 1cc43998f19e63004ff62fc0d2f5e58ad513244a..9ce695662a3de33de48d311bb41e2218d89c8559 100644 --- a/l10n/el/core.po +++ b/l10n/el/core.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -144,59 +144,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 "1 λεπτό πριν" +#: 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 "{minutes} λεπτά πριν" +#: 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 "1 ώρα πριν" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} ώρες πριν" - -#: 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 "{days} ημέρες πριν" +#: 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 "{months} μήνες πριν" +#: 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 "χρόνια πριν" @@ -210,7 +210,7 @@ msgstr "Άκυρο" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Σφάλμα φόρτωσης αρχείου επιλογέα προτύπου" #: js/oc-dialogs.js:164 msgid "Yes" @@ -232,8 +232,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Σφάλμα" @@ -253,123 +253,123 @@ msgstr "Κοινόχρηστα" msgid "Share" msgstr "Διαμοιρασμός" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Σφάλμα κατά τον διαμοιρασμό" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Σφάλμα κατά το σταμάτημα του διαμοιρασμού" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Σφάλμα κατά την αλλαγή των δικαιωμάτων" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Διαμοιράστηκε με σας και με την ομάδα {group} του {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Διαμοιράστηκε με σας από τον {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Διαμοιρασμός με" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Διαμοιρασμός με σύνδεσμο" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Προστασία συνθηματικού" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Συνθηματικό" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Να επιτρέπεται η Δημόσια Αποστολή" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Αποστολή συνδέσμου με email " -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Αποστολή" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Ορισμός ημ. λήξης" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Ημερομηνία λήξης" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Διαμοιρασμός μέσω email:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Δεν βρέθηκε άνθρωπος" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Ξαναμοιρασμός δεν επιτρέπεται" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Διαμοιρασμός του {item} με τον {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Σταμάτημα διαμοιρασμού" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "δυνατότητα αλλαγής" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "έλεγχος πρόσβασης" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "δημιουργία" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "ενημέρωση" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "διαγραφή" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "διαμοιρασμός" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Προστασία με συνθηματικό" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Σφάλμα κατά την διαγραφή της ημ. λήξης" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Σφάλμα κατά τον ορισμό ημ. λήξης" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Αποστολή..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Το Email απεστάλη " @@ -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}" @@ -407,7 +408,7 @@ msgstr "Η αίτηση απέτυχε! Βεβαιωθηκατε ότι το ema msgid "You will receive a link to reset your password via Email." msgstr "Θα λάβετε ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας μέσω ηλεκτρονικού ταχυδρομείου." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Όνομα χρήστη" @@ -468,11 +469,11 @@ msgstr "Βοήθεια" msgid "Access forbidden" msgstr "Δεν επιτρέπεται η πρόσβαση" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Δεν βρέθηκε νέφος" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -501,8 +502,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Η PHP ειναι ευαλωτη στην NULL Byte επιθεση (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Παρακαλώ ενημερώστε την εγκατάσταση PHP σας ώστε να χρησιμοποιήσετε ασφαλέστερα το ownCloud." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Παρακαλώ ενημερώστε την εγκατάσταση της PHP ώστε να χρησιμοποιήσετε το %s με ασφάλεια." #: templates/installation.php:32 msgid "" @@ -522,68 +524,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Ο κατάλογος δεδομένων και τα αρχεία σας είναι πιθανό προσβάσιμα από το internet γιατί δεν δουλεύει το αρχείο .htaccess." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Για πληροφορίες σχετικά με την σωστή ρύθμιση του διακομιστή σας, δείτε στην τεκμηρίωση." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Για πληροφορίες πως να ρυθμίσετε ορθά τον διακομιστή σας, παρακαλώ δείτε την τεκμηρίωση." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Δημιουργήστε έναν λογαριασμό διαχειριστή" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Για προχωρημένους" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Φάκελος δεδομένων" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "θα χρησιμοποιηθούν" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Χρήστης της βάσης δεδομένων" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Συνθηματικό βάσης δεδομένων" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Όνομα βάσης δεδομένων" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Κενά Πινάκων Βάσης Δεδομένων" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Διακομιστής βάσης δεδομένων" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Ολοκλήρωση εγκατάστασης" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s είναι διαθέσιμη. Δείτε περισσότερες πληροφορίες στο πώς να αναβαθμίσετε." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Αποσύνδεση" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Απορρίφθηκε η αυτόματη σύνδεση!" @@ -614,7 +620,7 @@ msgstr "Είσοδος" msgid "Alternative Logins" msgstr "Εναλλακτικές Συνδέσεις" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 2013 +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -30,11 +31,11 @@ msgstr "Αδυναμία μετακίνησης του %s" #: ajax/upload.php:16 ajax/upload.php:45 msgid "Unable to set upload directory." -msgstr "" +msgstr "Αδυναμία ορισμού καταλόγου αποστολής." #: ajax/upload.php:22 msgid "Invalid Token" -msgstr "" +msgstr "Μη έγκυρο Token" #: ajax/upload.php:59 msgid "No file was uploaded. Unknown error" @@ -121,11 +122,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 "Μετονομασία" @@ -157,15 +154,13 @@ msgstr "αντικαταστάθηκε το {new_name} με {old_name}" msgid "undo" msgstr "αναίρεση" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "εκτέλεση της διαδικασίας διαγραφής" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "1 αρχείο ανεβαίνει" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "αρχεία ανεβαίνουν" @@ -201,38 +196,34 @@ msgstr "Η λήψη προετοιμάζεται. Αυτό μπορεί να π msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Μη έγκυρο όνομα φακέλου. Η χρήση του 'Κοινόχρηστος' χρησιμοποιείται από ο Owncloud" -#: 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 "1 φάκελος" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} φάκελοι" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 msgid "%s could not be renamed" -msgstr "" +msgstr "Αδυναμία μετονομασίας του %s" #: lib/helper.php:11 templates/index.php:18 msgid "Upload" @@ -286,45 +277,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/el/files_encryption.po b/l10n/el/files_encryption.po index 684d9d810ea5b58ac3f9ccf68bb6b253854836cf..1cdfbf50fec95a698a736a7681bbdebf089eafe8 100644 --- a/l10n/el/files_encryption.po +++ b/l10n/el/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -70,9 +70,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/el/files_sharing.po b/l10n/el/files_sharing.po index a307bdbb8ba528fdee5d99da58e25271b44a12f4..5fe608cdb4b219022d8fd3fc00170c8f5b7702b2 100644 --- a/l10n/el/files_sharing.po +++ b/l10n/el/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Εσφαλμένο συνθηματικό. Προσπαθήστε ξανά." #: templates/authenticate.php:7 msgid "Password" @@ -29,28 +30,52 @@ msgstr "Συνθηματικό" msgid "Submit" msgstr "Καταχώρηση" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Συγγνώμη, αυτός ο σύνδεσμος μοιάζει να μην ισχύει πια." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Οι λόγοι μπορεί να είναι:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "το αντικείμενο απομακρύνθηκε" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "ο σύνδεσμος έληξε" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "ο διαμοιρασμός απενεργοποιήθηκε" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Για περισσότερες πληροφορίες, παρακαλώ ρωτήστε το άτομο που σας έστειλε αυτόν τον σύνδεσμο." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s μοιράστηκε τον φάκελο %s μαζί σας" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s μοιράστηκε το αρχείο %s μαζί σας" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Λήψη" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Μεταφόρτωση" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Ακύρωση αποστολής" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Δεν υπάρχει διαθέσιμη προεπισκόπηση για" diff --git a/l10n/el/files_trashbin.po b/l10n/el/files_trashbin.po index 9d927c77cd9f7f6f9992c6a830863ddd12548baf..9419e249a1fb5b6145bf3667cdbd4d3a3300965b 100644 --- a/l10n/el/files_trashbin.po +++ b/l10n/el/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,45 @@ msgstr "Αδύνατη η μόνιμη διαγραφή του %s" msgid "Couldn't restore %s" msgstr "Αδυναμία επαναφοράς %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "εκτέλεση λειτουργία επαναφοράς" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Σφάλμα" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "μόνιμη διαγραφή αρχείου" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Μόνιμη διαγραφή" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Όνομα" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Διαγράφηκε" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 φάκελος" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} φάκελοι" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 αρχείο" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} αρχεία" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "έγινε επαναφορά" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/el/files_versions.po b/l10n/el/files_versions.po index c0a78762a845887bf4584d3ae2993b9cca6fd2b3..69a93edf4e88af7293c1571ba8c1964367e636eb 100644 --- a/l10n/el/files_versions.po +++ b/l10n/el/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Efstathios Iosifidis , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 07:40+0000\n" +"Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +18,27 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Αδυναμία επαναφοράς του: %s" -#: history.php:40 -msgid "success" -msgstr "επιτυχία" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Το αρχείο %s επαναφέρθηκε στην έκδοση %s" - -#: history.php:49 -msgid "failure" -msgstr "αποτυχία" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Το αρχείο %s δεν είναι δυνατό να επαναφερθεί στην έκδοση %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Εκδόσεις" -#: history.php:69 -msgid "No old versions available" -msgstr "Μη διαθέσιμες παλιές εκδόσεις" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Αποτυχία επαναφοράς του {file} στην αναθεώρηση {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Δεν καθορίστηκε διαδρομή" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Περισσότερες εκδόσεις..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Εκδόσεις" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Δεν υπάρχουν άλλες εκδόσεις διαθέσιμες" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Επαναφορά ενός αρχείου σε προηγούμενη έκδοση πατώντας στο κουμπί επαναφοράς" +#: js/versions.js:149 +msgid "Restore" +msgstr "Επαναφορά" diff --git a/l10n/el/lib.po b/l10n/el/lib.po index 47a64c55113408d7f4c3d61b9c21348e6c7156cb..c98f621f36eac427b3420a6bf0ff7e2fd392964a 100644 --- a/l10n/el/lib.po +++ b/l10n/el/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-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: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "Αποτυχία αναβάθμισης του \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "υπηρεσίες δικτύου υπό τον έλεγχό σας" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "αδυναμία ανοίγματος \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,52 @@ 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 "χρόνια πριν" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Προκλήθηκε από:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/el/settings.po b/l10n/el/settings.po index 5d394d36ded2a6ccafe7a027ced6306c8341fe6b..80d72b31abdeaf9fd8359b53f4b464212a4e1c51 100644 --- a/l10n/el/settings.po +++ b/l10n/el/settings.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 11:50+0000\n" -"Last-Translator: Efstathios Iosifidis \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" "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" @@ -175,175 +175,173 @@ msgstr "Πρέπει να δοθεί έγκυρο συνθηματικό" msgid "__language_name__" msgstr "__όνομα_γλώσσας__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Προειδοποίηση Ασφαλείας" -#: templates/admin.php:20 +#: 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 "Ο κατάλογος data και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος data να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο data έξω από τον κατάλογο του διακομιστή." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Ρύθμιση Προειδοποίησης" -#: templates/admin.php:34 +#: 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 "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Ελέγξτε ξανά τις οδηγίες εγκατάστασης." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Η ενοτητα 'fileinfo' λειπει" -#: templates/admin.php:49 +#: 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 "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. " -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Η μετάφραση δεν δουλεύει" -#: templates/admin.php:65 +#: 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 "Αυτός ο ownCloud διακομιστης δεν μπορείτε να εφαρμοσει το σύνολο τοπικής προσαρμογής συστημάτων στο %s. Αυτό σημαίνει ότι μπορεί να υπάρξουν προβλήματα με ορισμένους χαρακτήρες σε ονόματα αρχείων. Σας συνιστούμε να εγκαταστήσετε τις απαραίτητες συσκευασίες στο σύστημά σας για να υποστηρίχθει το %s. " +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Η σύνδεση στο διαδίκτυο δεν δουλεύει" -#: templates/admin.php:80 +#: 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 "Αυτός ο διακομιστής ownCloud δεν έχει σύνδεση στο Διαδίκτυο. Αυτό σημαίνει ότι ορισμένα από τα χαρακτηριστικά γνωρίσματα όπως η τοποθέτηση εξωτερικής αποθήκευσης, οι κοινοποιήσεις σχετικά με ανανεωσεις, ή εγκατάσταση 3ων εφαρμογές δεν λειτουργούν. Η πρόσβαση σε αρχεία και η αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην λειτουργεί. Σας προτείνουμε να σύνδεθειτε στο διαδικτυο αυτό τον διακομιστή, εάν θέλετε να έχετε όλα τα χαρακτηριστικά του ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται" -#: templates/admin.php:113 +#: 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 "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Διαμοιρασμός" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Ενεργοποίηση API Διαμοιρασμού" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Να επιτρέπονται σύνδεσμοι" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν δημόσια με συνδέσμους" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Να επιτρέπεται ο επαναδιαμοιρασμός" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Να επιτρέπεται στους χρήστες να διαμοιράζουν ότι τους έχει διαμοιραστεί" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Να επιτρέπεται ο διαμοιρασμός με οποιονδήποτε" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Ασφάλεια" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Επιβολή χρήσης HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Επιβολή στους πελάτες να συνδεθούν στο ownCloud μέσω μιας κρυπτογραφημένης σύνδεσης." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Παρακαλώ συνδεθείτε με το ownCloud μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή SSL. " +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Καταγραφές" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Επίπεδο καταγραφής" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Περισσότερα" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Λιγότερα" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Έκδοση" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "Χρησιμοποιήσατε %s από διαθέσιμα %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Συνθηματικό" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Το συνθηματικό σας έχει αλλάξει" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Δεν ήταν δυνατή η αλλαγή του κωδικού πρόσβασης" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Τρέχων συνθηματικό" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Νέο συνθηματικό" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Αλλαγή συνθηματικού" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Όνομα εμφάνισης" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Ηλ. ταχυδρομείο" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Η διεύθυνση ηλεκτρονικού ταχυδρομείου σας" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Συμπληρώστε μια διεύθυνση ηλεκτρονικού ταχυδρομείου για να ενεργοποιηθεί η ανάκτηση συνθηματικού" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Γλώσσα" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Βοηθήστε στη μετάφραση" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Προσοχή: Οι εφαρμογές user_ldap και user_webdavauth είναι ασύμβατες. Μπορεί να αντιμετωπίσετε απρόβλεπτη συμπεριφορά. Παρακαλώ ζητήστε από τον διαχειριστή συστήματος να απενεργοποιήσει μία από αυτές." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,8 +221,8 @@ msgid "Disable Main Server" msgstr "Απενεργοποιηση του κεντρικου διακομιστη" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Όταν ενεργοποιηθεί, με το ownCloud θα συνδεθείτε με το διακομιστή ρεπλίκα." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Απενεργοποίηση επικύρωσης πιστοποιητικού SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Εάν η σύνδεση δουλεύει μόνο με αυτή την επιλογή, εισάγετε το LDAP SSL πιστοποιητικό του διακομιστή στον ownCloud server σας." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Πεδίο Ονόματος Χρήστη" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος χρήστη του ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Group Display Name Field" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Η ιδιότητα LDAP που θα χρησιμοποιείται για τη δημιουργία του ονόματος ομάδας του ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/el/user_webdavauth.po b/l10n/el/user_webdavauth.po index cd7f6d89f48834216d75d57f631c49770db2f1a3..85544e07257fafa0f3effbde00a98a6b24a50fe9 100644 --- a/l10n/el/user_webdavauth.po +++ b/l10n/el/user_webdavauth.po @@ -6,14 +6,15 @@ # Dimitris M. , 2012 # Efstathios Iosifidis , 2012 # Efstathios Iosifidis , 2013 +# Efstathios Iosifidis , 2012-2013 # Konstantinos Tzanidis , 2012 # Marios Bekatoros <>, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 20:30+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-06 08:10+0000\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Greek (http://www.transifex.com/projects/p/owncloud/language/el/)\n" "MIME-Version: 1.0\n" @@ -27,12 +28,12 @@ msgid "WebDAV Authentication" msgstr "Αυθεντικοποίηση μέσω WebDAV " #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Διεύθυνση:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "Το ownCloud θα στείλει τα διαπιστευτήρια χρήστη σε αυτό το URL. Αυτό το plugin ελέγχει την απάντηση και την μετατρέπει σε HTTP κωδικό κατάστασης 401 και 403 για μη έγκυρα, όλες οι υπόλοιπες απαντήσεις είναι έγκυρες." +msgstr "Τα διαπιστευτήρια του χρήστη θα σταλούν σε αυτή την διεύθυνση. Αυτό το πρόσθετο ελέγχει την απόκριση και θα ερμηνεύσει τους κωδικούς κατάστασης HTTP 401 και 402 ως μη έγκυρα διαπιστευτήρια και όλες τις άλλες αποκρίσεις ως έγκυρα διαπιστευτήρια." diff --git a/l10n/en@pirate/core.po b/l10n/en@pirate/core.po index 80b5bdf950a2b8a5330c1b7ce44c2c797decf4c3..f644607fac94a696068a62846f7afe14bfadc53b 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-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -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:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -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:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -226,8 +226,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -247,139 +247,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Passcode" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -401,7 +402,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -462,11 +463,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,7 +496,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -608,7 +614,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\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 "Download" -#: 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/en@pirate/files_encryption.po b/l10n/en@pirate/files_encryption.po index c0cec032f05b5f8bf1ba649fccd4aad4d049b39e..00358fec52b00d36c045d10fc348420482f1e6d0 100644 --- a/l10n/en@pirate/files_encryption.po +++ b/l10n/en@pirate/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/en@pirate/files_sharing.po b/l10n/en@pirate/files_sharing.po index 8fae1af4ef4edc57bfe60312d57da427ab55454c..94c722fa9a3481a9dfd1f913c373c4353d00f696 100644 --- a/l10n/en@pirate/files_sharing.po +++ b/l10n/en@pirate/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "Secret Code" msgid "Submit" msgstr "Submit" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s shared the folder %s with you" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s shared the file %s with you" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No preview available for" diff --git a/l10n/en@pirate/files_trashbin.po b/l10n/en@pirate/files_trashbin.po index 3ae46bccb49090d385f5bd9b8ccde433ad6dcf1f..c64e4f7a6a29c9033f674ed514bdbdf9be53542f 100644 --- a/l10n/en@pirate/files_trashbin.po +++ b/l10n/en@pirate/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/en@pirate/files_versions.po b/l10n/en@pirate/files_versions.po index 2df316a89241f58dd0b18adfc52dece6ca7d7b06..e4461689d990e8b40d49b39b0ff66bcc91aa1296 100644 --- a/l10n/en@pirate/files_versions.po +++ b/l10n/en@pirate/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \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" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +17,27 @@ msgstr "" "Language: en@pirate\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/en@pirate/lib.po b/l10n/en@pirate/lib.po index fb244e8b564bdd20405031ea17d4a7b7309738f4..69cf917ce77afc2a87fafcd94f50ebe1441360d7 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/en@pirate/settings.po b/l10n/en@pirate/settings.po index 7be12d1c916cf9eb82298ec4cb228615629fea91..79163dfbd84b2ee79683ff7fae9a04f71596f269 100644 --- a/l10n/en@pirate/settings.po +++ b/l10n/en@pirate/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passcode" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/en@pirate/user_webdavauth.po b/l10n/en@pirate/user_webdavauth.po index 22b86eac1980e0b5d36f867a9939249a8cbb0cfc..0af776aec9b1df5c8fe8cc902210e9978b157b37 100644 --- a/l10n/en@pirate/user_webdavauth.po +++ b/l10n/en@pirate/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Pirate English (http://www.transifex.com/projects/p/owncloud/language/en@pirate/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/eo/core.po b/l10n/eo/core.po index 29a61242bf2e39eb70eb1fa454d5924bcbc86c07..59d39a60fd0410035df996afd79a9ae9079a2309 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Agordo" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundoj antaŭe" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "antaŭ 1 minuto" +#: 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 "antaŭ {minutes} minutoj" +#: 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 "antaŭ 1 horo" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "antaŭ {hours} horoj" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "hodiaŭ" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "hieraŭ" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "lastamonate" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "monatoj antaŭe" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "lastajare" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "jaroj antaŭe" @@ -227,8 +227,8 @@ msgstr "Ne indikiĝis tipo de la objekto." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Eraro" @@ -248,123 +248,123 @@ msgstr "Dividita" msgid "Share" msgstr "Kunhavigi" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Eraro dum kunhavigo" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Eraro dum malkunhavigo" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Eraro dum ŝanĝo de permesoj" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Kunhavigita kun vi kaj la grupo {group} de {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Kunhavigita kun vi de {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Kunhavigi kun" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Kunhavigi per ligilo" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Protekti per pasvorto" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Pasvorto" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Retpoŝti la ligilon al ulo" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Sendi" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Agordi limdaton" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Limdato" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Kunhavigi per retpoŝto:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Ne troviĝis gento" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Rekunhavigo ne permesatas" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Kunhavigita en {item} kun {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Malkunhavigi" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "povas redakti" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "alirkontrolo" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "krei" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "ĝisdatigi" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "forigi" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "kunhavigi" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protektita per pasvorto" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Eraro dum malagordado de limdato" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Eraro dum agordado de limdato" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Sendante..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "La retpoŝtaĵo sendiĝis" @@ -379,9 +379,10 @@ msgstr "La ĝisdatigo estis malsukcese. Bonvolu raporti tiun problemon al la Ĉu vi certiĝis, ke via retpoŝto/uzantonomo msgid "You will receive a link to reset your password via Email." msgstr "Vi ricevos ligilon retpoŝte por rekomencigi vian pasvorton." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Uzantonomo" @@ -463,11 +464,11 @@ msgstr "Helpo" msgid "Access forbidden" msgstr "Aliro estas malpermesata" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "La nubo ne estas trovita" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Via PHP versio estas sendefenda je la NULL bajto atako (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Bonvolu ĝisdatigi vian instalon de PHP por uzi ownCloud-on sekure." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -517,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Krei administran konton" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Progresinta" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datuma dosierujo" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Agordi la datumbazon" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "estos uzata" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Datumbaza uzanto" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Datumbaza pasvorto" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Datumbaza nomo" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Datumbaza tabelospaco" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Datumbaza gastigo" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Fini la instalon" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s haveblas. Ekhavi pli da informo pri kiel ĝisdatigi." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Elsaluti" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "La aŭtomata ensaluto malakceptiĝis!" @@ -609,7 +615,7 @@ msgstr "Ensaluti" msgid "Alternative Logins" msgstr "Alternativaj ensalutoj" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Kunhavigi" msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Forigi" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Alinomigi" @@ -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:457 -msgid "1 file uploading" -msgstr "1 dosiero estas alŝutata" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "dosieroj estas alŝutataj" @@ -201,33 +195,29 @@ msgstr "Via elŝuto pretiĝatas. Ĉi tio povas daŭri iom da tempo se la dosiero msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nevalida dosierujnomo. Uzo de “Shared” rezervatas de Owncloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nomo" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Grando" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifita" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dosierujo" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dosierujoj" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 dosiero" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -286,45 +276,49 @@ msgstr "Dosierujo" msgid "From link" msgstr "El ligilo" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Forigitaj dosieroj" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Vi ne havas permeson skribi ĉi tie." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nenio estas ĉi tie. Alŝutu ion!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Elŝuti" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Malkunhavigi" -#: templates/index.php:107 +#: 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" -#: 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 "La dosieroj, kiujn vi provas alŝuti, transpasas la maksimuman grandon por dosieralŝutoj en ĉi tiu servilo." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dosieroj estas skanataj, bonvolu atendi." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Nuna skano" diff --git a/l10n/eo/files_encryption.po b/l10n/eo/files_encryption.po index c5864c36b149be2a84db74bc7ea4721a727b66c2..cce04b5e023fb5aae5270d42cc0d9e6b178d9778 100644 --- a/l10n/eo/files_encryption.po +++ b/l10n/eo/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/eo/files_sharing.po b/l10n/eo/files_sharing.po index 84941f56304ab062368a2c00e7df844b970d9507..3a0a3dd55256bafd41f10d39c966eeb6353aaa51 100644 --- a/l10n/eo/files_sharing.po +++ b/l10n/eo/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Pasvorto" msgid "Submit" msgstr "Sendi" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s kunhavigis la dosierujon %s kun vi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s kunhavigis la dosieron %s kun vi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Elŝuti" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Alŝuti" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Nuligi alŝuton" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ne haveblas antaŭvido por" diff --git a/l10n/eo/files_trashbin.po b/l10n/eo/files_trashbin.po index 9ace2aeafeb3b0996f979c00436c4956c0ac1dcf..def217fe084d861997ff1b75f22e3a6d92e24fff 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Eraro" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Forigi por ĉiam" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nomo" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 dosierujo" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} dosierujoj" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 dosiero" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} dosierujoj" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/eo/files_versions.po b/l10n/eo/files_versions.po index afca16226f037b0adb951968fca38198b982ab66..1225699dbba72d9cb58a4bfd3eb95057870303ed 100644 --- a/l10n/eo/files_versions.po +++ b/l10n/eo/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Ne eblas malfari: %s" -#: history.php:40 -msgid "success" -msgstr "sukceso" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Dosiero %s estis malfarita al versio %s" - -#: history.php:49 -msgid "failure" -msgstr "malsukceso" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Ne eblis malfari dosieron %s al versio %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versioj" -#: history.php:69 -msgid "No old versions available" -msgstr "Neniu malnova versio disponeblas" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Neniu vojo estas specifita" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versioj" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Malfari dosieron al antaŭa versio per klako sur sia malfarad-butono" +#: js/versions.js:149 +msgid "Restore" +msgstr "Restaŭri" diff --git a/l10n/eo/lib.po b/l10n/eo/lib.po index 60028aadc88377ba313953950e56c3bc371fc5c0..8c48d709483f5cbb0f8a18f33a3b537240f38284 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-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: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "TTT-servoj regataj de vi" @@ -211,54 +207,50 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/eo/settings.po b/l10n/eo/settings.po index 56e549fa61c1fbdddd5b2bd6ca97338b6d9fe682..be9963b2dd9c80d949d28b9fcf6b0d09591e7a0b 100644 --- a/l10n/eo/settings.po +++ b/l10n/eo/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "Esperanto" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Sekureca averto" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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 "Via TTT-servilo ankoraŭ ne ĝuste agordiĝis por permesi sinkronigi dosierojn ĉar la WebDAV-interfaco ŝajnas rompita." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Bonvolu duoble kontroli la gvidilon por instalo." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Kunhavigo" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Kapabligi API-on por Kunhavigo" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Kapabligi aplikaĵojn uzi la API-on pri Kunhavigo" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Kapabligi ligilojn" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Kapabligi uzantojn kunhavigi erojn kun la publiko perligile" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Kapabligi rekunhavigon" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Kapabligi uzantojn rekunhavigi erojn kunhavigitajn kun ili" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Kapabligi uzantojn kunhavigi kun ĉiu ajn" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Kapabligi uzantojn nur kunhavigi kun uzantoj el siaj grupoj" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Protokolo" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Registronivelo" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Pli" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Malpli" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Eldono" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vi uzas %s el la haveblaj %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasvorto" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Via pasvorto ŝanĝiĝis" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Ne eblis ŝanĝi vian pasvorton" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Nuna pasvorto" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nova pasvorto" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Ŝanĝi la pasvorton" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Retpoŝto" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Via retpoŝta adreso" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Enigu retpoŝtadreson por kapabligi pasvortan restaŭron" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Lingvo" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Helpu traduki" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Malkapabligi validkontrolon de SSL-atestiloj." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Se la konekto nur funkcias kun ĉi tiu malnepro, enportu la SSL-atestilo de la LDAP-servilo en via ownCloud-servilo." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Kampo de vidignomo de uzanto" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "La atributo de LDAP uzota por generi la ownCloud-an nomon de la uzanto." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Kampo de vidignomo de grupo" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "La atributo de LDAP uzota por generi la ownCloud-an nomon de la grupo." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/eo/user_webdavauth.po b/l10n/eo/user_webdavauth.po index c7675bf38739fdc6d03e8571689b95edf00c4d1e..1da9b2ef919d969a78eff4c94d5d617877f9bb41 100644 --- a/l10n/eo/user_webdavauth.po +++ b/l10n/eo/user_webdavauth.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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Esperanto (http://www.transifex.com/projects/p/owncloud/language/eo/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV-aŭtentigo" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/es/core.po b/l10n/es/core.po index 760f90a1b9c5f0a08c862d69684e0488e4abbb2f..195bdf7047b1e47d2f0133ec6164928c7dc67054 100644 --- a/l10n/es/core.po +++ b/l10n/es/core.po @@ -5,7 +5,9 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 +# I Robot , 2013 # msoko , 2013 +# pablomillaquen , 2013 # saskarip , 2013 # saskarip , 2013 # iGerli , 2013 @@ -14,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -144,59 +146,59 @@ msgstr "Noviembre" msgid "December" msgstr "Diciembre" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Ajustes" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "hace segundos" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "hace 1 minuto" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "hace {minutes} minutos" +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "Hace 1 hora" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "Hace {hours} horas" - -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "hoy" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "ayer" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "el mes pasado" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "hace meses" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "el año pasado" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "hace años" @@ -232,8 +234,8 @@ msgstr "El tipo de objeto no está especificado." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -253,123 +255,123 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error mientras comparte" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Error mientras se deja de compartir" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Error mientras se cambia permisos" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido contigo y el grupo {group} por {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Compartido contigo por {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Compartir con" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Compartir con enlace" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Protección con contraseña" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Contraseña" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Enviar enlace por correo electrónico a una persona" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Enviar" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Establecer fecha de caducidad" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Fecha de caducidad" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Compartir por correo electrónico:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "No se encontró gente" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "No se permite compartir de nuevo" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "puede editar" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "control de acceso" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "crear" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "actualizar" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "eliminar" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "compartir" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido con contraseña" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error eliminando fecha de caducidad" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error estableciendo fecha de caducidad" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Correo electrónico enviado" @@ -378,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}" @@ -407,7 +410,7 @@ msgstr "La petición ha fallado!
¿Está seguro de que su dirección de cor msgid "You will receive a link to reset your password via Email." msgstr "Recibirá un enlace por correo electrónico para restablecer su contraseña" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nombre de usuario" @@ -468,11 +471,11 @@ msgstr "Ayuda" msgid "Access forbidden" msgstr "Acceso prohibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No se encuentra la nube" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -501,8 +504,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Su versión de PHP es vulnerable al ataque de Byte NULL (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Por favor, actualice su instalación de PHP para utilizar ownCloud de manera segura." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Por favor, actualice su instalación PHP para usar %s con seguridad." #: templates/installation.php:32 msgid "" @@ -522,68 +526,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Su directorio de datos y sus archivos probablemente sean accesibles a través de internet ya que el archivo .htaccess no funciona." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para información sobre cómo configurar adecuadamente su servidor, por favor vea la documentación." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Para información de cómo configurar apropiadamente su servidor, por favor vea la documentación." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Directorio de datos" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "se utilizarán" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Host de la base de datos" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s esta disponible. Obtener mas información de como actualizar." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -614,7 +622,7 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Inicios de sesión alternativos" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -125,11 +125,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Eliminar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renombrar" @@ -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:457 -msgid "1 file uploading" -msgstr "subiendo 1 archivo" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "subiendo archivos" @@ -205,33 +199,29 @@ msgstr "Su descarga está siendo preparada. Esto puede tardar algún tiempo si l msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta no es válido. El uso de \"Shared\" está reservado por Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} carpetas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 archivo" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -290,45 +280,49 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No tiene permisos de escritura aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "No hay nada aquí. ¡Suba algo!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Eliminar" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Subida demasido grande" -#: 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 "Los archivos que estás intentando subir sobrepasan el tamaño máximo permitido en este servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Los archivos están siendo escaneados, por favor espere." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es/files_encryption.po b/l10n/es/files_encryption.po index fbcbc4e2fe14e1fdd3331de0a4b13389c02375e4..1382a2304b683629a06f7d5f1c0398bee564766c 100644 --- a/l10n/es/files_encryption.po +++ b/l10n/es/files_encryption.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-07-08 02:02+0200\n" -"PO-Revision-Date: 2013-07-07 07:50+0000\n" -"Last-Translator: Korrosivo \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" "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" @@ -74,10 +74,14 @@ msgstr "Requisitos incompletos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Por favor, asegúrese de que PHP 5.3.3 o posterior está instalado y que la extensión OpenSSL de PHP está habilitada y configurada correctamente. Por el momento, la aplicación de cifrado ha sido deshabilitada." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/es/files_sharing.po b/l10n/es/files_sharing.po index 6aaaffdefa01072d2000d3b1b3e51032d01170c0..302b80c747a25a494a878375d49a4be152605495 100644 --- a/l10n/es/files_sharing.po +++ b/l10n/es/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Korrosivo \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Art O. Pal \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,28 +31,52 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Este enlace parece no funcionar más." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Las causas podrían ser:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "el elemento fue eliminado" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "el enlace expiró" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "compartir está desactivado" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Para mayor información, contacte a la persona que le envió el enlace." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s contigo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el fichero %s contigo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "No hay vista previa disponible para" diff --git a/l10n/es/files_trashbin.po b/l10n/es/files_trashbin.po index 8e4f51795b40a1943c58751d4b299360ec0fe470..beb34a8115ec05a6a26c126fb9b2abb01638064d 100644 --- a/l10n/es/files_trashbin.po +++ b/l10n/es/files_trashbin.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Art O. Pal , 2013 # Korrosivo , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Korrosivo \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" @@ -28,45 +29,45 @@ msgstr "No se puede eliminar %s permanentemente" msgid "Couldn't restore %s" msgstr "No se puede restaurar %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "restaurar" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Error" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "eliminar archivo permanentemente" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 carpeta" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} carpetas" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 archivo" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} archivos" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "recuperado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/es/files_versions.po b/l10n/es/files_versions.po index 1277356dd138de1ba45ed92e6f65a831f09e61fd..2c3194d68707062921fe825544b4522549527d8f 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-08 02:02+0200\n" -"PO-Revision-Date: 2013-07-07 07:42+0000\n" -"Last-Translator: Korrosivo \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" @@ -17,41 +18,27 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "No se puede revertir: %s" -#: history.php:40 -msgid "success" -msgstr "exitoso" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "El archivo %s fue revertido a la version %s" - -#: history.php:49 -msgid "failure" -msgstr "fallo" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "El archivo %s no puede ser revertido a la version %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Revisiones" -#: history.php:69 -msgid "No old versions available" -msgstr "No hay versiones antiguas disponibles" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "No se ha podido revertir {archivo} a revisión {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Ruta no especificada" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Más..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Revisiones" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "No hay otras versiones disponibles" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Revertir un archivo a una versión anterior haciendo clic en el boton de revertir" +#: js/versions.js:149 +msgid "Restore" +msgstr "Recuperar" diff --git a/l10n/es/lib.po b/l10n/es/lib.po index 4d7f653565d96fcfe9d9113a9fff26e5f813cb4c..209038f14eba2689576001ac1444c9bc122005c9 100644 --- a/l10n/es/lib.po +++ b/l10n/es/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pablomillaquen , 2013 # xhiena , 2013 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: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" @@ -35,26 +36,22 @@ 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 "" +msgstr "Falló la actualización \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Servicios web bajo su control" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "No se puede abrir \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Causado por:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/es/settings.po b/l10n/es/settings.po index fb5c32f286f82ed4aefb6cb82855570abacd32f7..582d3720c7a9bedd65d35c185b5e33b1ca213e5c 100644 --- a/l10n/es/settings.po +++ b/l10n/es/settings.po @@ -5,6 +5,7 @@ # Translators: # Art O. Pal , 2013 # ggam , 2013 +# pablomillaquen , 2013 # qdneren , 2013 # saskarip , 2013 # scambra , 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "Language-Team: Spanish (http://www.transifex.com/projects/p/owncloud/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -174,175 +175,173 @@ msgstr "Se debe usar una contraseña valida" msgid "__language_name__" msgstr "Castellano" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:20 +#: 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 "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Le recomendamos encarecidamente que configure su servidor web de manera que el directorio de datos no esté accesible, o mueva el directorio de datos fuera del documento raíz de su servidor web." +"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." +msgstr "Su directorio de datos y sus archivos probablemente están accesibles desde Internet. El archivo .htaccess no está funcionando. Nosotros le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Advertencia de configuración" -#: templates/admin.php:34 +#: 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 "Su servidor web aún no está configurado adecuadamente para permitir sincronización de archivos ya que la interfaz WebDAV parece no estar funcionando." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "Por favor, vuelva a comprobar las guías de instalación." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' perdido" -#: templates/admin.php:49 +#: 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 "El modulo PHP 'fileinfo' no se encuentra. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type" -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "La configuración regional no está funcionando" -#: templates/admin.php:65 +#: 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 "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar el %s." +"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 "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar % s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "La conexion a internet no esta funcionando" -#: templates/admin.php:80 +#: 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 "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionarán. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a Internet para este servidor si quiere disfrutar de todas las características de ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "Este servidor no tiene una conexión a Internet. Esto significa que algunas de las características como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o instalación de aplicaciones de terceros no funcionan. Podría no funcionar el acceso a los archivos de forma remota y el envío de correos electrónicos de notificación. Sugerimos habilitar la conexión a Internet de este servidor, si quiere tener todas las funciones." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Ejecutar una tarea con cada página cargada" -#: templates/admin.php:113 +#: 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 "cron.php es un sistema webcron registrado. Llama a la página cron.php en la raíz de owncloud una vez por minuto sobre http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php está registrado en un servicio WebCron para llamar cron.php una vez por minuto a través de HTTP." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Utilizar el servicio cron del sistema. Llama al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Usar el servicio cron del sistema para llamar al archivo cron.php una vez por minuto." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Activar API de Compartición" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones utilizar la API de Compartición" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir elementos al público con enlaces" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Permitir subidas públicas" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Permitir re-compartición" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Permitir a los usuarios compartir elementos ya compartidos con ellos mismos" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con todo el mundo" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los usuarios en sus grupos" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Fuerza la conexión de los clientes a ownCloud con una conexión cifrada." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Forzar a los clientes a conectarse a %s por medio de una conexión encriptada." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Por favor, conecte esta instancia de ownCloud vía HTTPS para activar o desactivar la aplicación de SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación SSL." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Registro" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel de registro" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Más" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versión" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ha usado %s de los %s disponibles" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Su contraseña ha sido cambiada" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "No se ha podido cambiar su contraseña" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nueva contraseña" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Su dirección de correo" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Escriba una dirección de correo electrónico para restablecer la contraseña" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Idioma" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Ayúdnos a traducir" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: xhiena \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" @@ -91,9 +92,9 @@ msgstr "Confirmar eliminación" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Advertencia: Las aplicaciones user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos." +msgstr "" #: templates/settings.php:12 msgid "" @@ -224,8 +225,8 @@ msgid "Disable Main Server" msgstr "Deshabilitar servidor principal" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Cuando se inicie, ownCloud unicamente conectará al servidor replica" +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -244,10 +245,11 @@ msgid "Turn off SSL certificate validation." msgstr "Apagar la validación por certificado SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Si la conexión sólo funciona con esta opción, importe el certificado SSL del servidor LDAP en su servidor ownCloud." +"certificate in your %s server." +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." @@ -270,8 +272,8 @@ msgid "User Display Name Field" msgstr "Campo de nombre de usuario a mostrar" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -294,8 +296,8 @@ msgid "Group Display Name Field" msgstr "Campo de nombre de grupo a mostrar" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -355,13 +357,13 @@ msgid "" "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 "Por defecto el nombre de usuario interno será creado desde el atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. En el nombre de usuario interno sólo se pueden usar estos caracteres: [a-zA-Z0-9_.@-]. Otros caracteres son sustituidos por su correspondiente en ASCII o simplemente quitados. En coincidencias un número será añadido o incrementado. El nombre de usuario interno es usado para identificar un usuario internamente. Es también el nombre por defecto para la carpeta personal del usuario in ownCloud. También es un puerto de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento por defecto puede ser cambiado. Para conseguir un comportamiento similar a como era antes de ownCloud 5, introduce el atributo del nombre en pantalla del usuario en el siguiente campo. Déjalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto en los nuevos usuarios LDAP." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -373,14 +375,14 @@ msgstr "Sobrescribir la detección UUID" #: 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 " +"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 behaviour. " +" 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 "Por defecto, ownCloud autodetecta el atributo UUID. El atributo UUID es usado para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno será creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Puedes sobrescribir la configuración y pasar un atributo de tu elección. Debes asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Déjalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto solo en los nuevos usuarios y grupos de LDAP." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -392,18 +394,17 @@ msgstr "Asignación del Nombre de usuario de un usuario LDAP" #: 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 "ownCloud utiliza nombres de usuario para almacenar y asignar (meta) datos. Con el fin de identificar con precisión y reconocer usuarios, cada usuario LDAP tendrá un nombre de usuario interno. Esto requiere una asignación de nombre de usuario de ownCloud a usuario LDAP. El nombre de usuario creado se asigna al UUID del usuario LDAP. Además el DN se almacena en caché más bien para reducir la interacción de LDAP, pero no se utiliza para la identificación. Si la DN cambia, los cambios serán encontrados por ownCloud. El nombre interno de ownCloud se utiliza para todo en ownCloud. Eliminando las asignaciones tendrá restos por todas partes. Eliminando las asignaciones no es sensible a la configuración, que afecta a todas las configuraciones de LDAP! No limpiar nunca las asignaciones en un entorno de producción. Sólo borrar asignaciones en una situación de prueba o experimental." +"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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/es/user_webdavauth.po b/l10n/es/user_webdavauth.po index 38bc6e5bb761497d9769d8b6a8fb20add4b719db..b880f91c7a99d4de78296d5ccb11eddadcfeb56b 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-08 02:02+0200\n" -"PO-Revision-Date: 2013-07-07 08:08+0000\n" -"Last-Translator: Korrosivo \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" @@ -26,12 +27,12 @@ msgid "WebDAV Authentication" msgstr "Autenticación de WevDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Dirección:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "onwCloud enviará las credenciales de usuario a esta URL. 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." +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 8221adba9d54ead15a7e19c16c88d9e07ed73b37..a64c557f8e75d627d55f210668ecf54f01fe2c40 100644 --- a/l10n/es_AR/core.po +++ b/l10n/es_AR/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -138,59 +138,59 @@ msgstr "noviembre" msgid "December" msgstr "diciembre" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Configuración" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "hace 1 minuto" +#: 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 "hace {minutes} minutos" +#: 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 "1 hora atrás" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "hace {hours} horas" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "hoy" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "ayer" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "el mes pasado" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "el año pasado" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "años atrás" @@ -226,8 +226,8 @@ msgstr "El tipo de objeto no está especificado. " #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -247,123 +247,123 @@ msgstr "Compartido" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error al compartir" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Error en al dejar de compartir" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Error al cambiar permisos" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vos y el grupo {group} por {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Compartido con vos por {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Compartir con" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Compartir con enlace" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Proteger con contraseña " -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Contraseña" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Permitir Subida Pública" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Enviar el enlace por e-mail." -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Mandar" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Asignar fecha de vencimiento" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Fecha de vencimiento" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Compartir a través de e-mail:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "No se encontraron usuarios" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "No se permite volver a compartir" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Dejar de compartir" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "podés editar" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "control de acceso" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "crear" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "actualizar" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "borrar" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "compartir" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido por contraseña" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error al remover la fecha de vencimiento" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error al asignar fecha de vencimiento" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Mandando..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "e-mail mandado" @@ -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}" @@ -401,7 +402,7 @@ msgstr "¡Error en el pedido!
¿Estás seguro de que tu dirección de corre msgid "You will receive a link to reset your password via Email." msgstr "Vas a recibir un enlace por e-mail para restablecer tu contraseña." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nombre de usuario" @@ -462,11 +463,11 @@ msgstr "Ayuda" msgid "Access forbidden" msgstr "Acceso prohibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "No se encontró ownCloud" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +496,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "La versión de PHP que tenés, es vulnerable al ataque de byte NULL (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Actualizá tu instalación de PHP para usar ownCloud de manera segura." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Tu directorio de datos y tus archivos probablemente son accesibles a través de internet, ya que el archivo .htaccess no está funcionando." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "Para información sobre cómo configurar adecuadamente tu servidor, por favor mirá la documentación." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crear una cuenta de administrador" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Directorio de almacenamiento" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configurar la base de datos" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "se usarán" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Usuario de la base de datos" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Contraseña de la base de datos" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nombre de la base de datos" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Espacio de tablas de la base de datos" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Huésped de la base de datos" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Completar la instalación" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponible. Obtené más información sobre cómo actualizar." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -608,7 +614,7 @@ msgstr "Iniciar sesión" msgid "Alternative Logins" msgstr "Nombre alternativos de usuarios" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Borrar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Borrar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Cambiar nombre" @@ -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:457 -msgid "1 file uploading" -msgstr "Subiendo 1 archivo" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "Subiendo archivos" @@ -202,33 +196,29 @@ msgstr "Tu descarga se está preparando. Esto puede demorar si los archivos son msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nombre de carpeta inválido. El uso de 'Shared' está reservado por ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nombre" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 directorio" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} directorios" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 archivo" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -287,45 +277,49 @@ msgstr "Carpeta" msgid "From link" msgstr "Desde enlace" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Archivos borrados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "No tenés permisos de escritura acá." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "No hay nada. ¡Subí contenido!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Dejar de compartir" -#: templates/index.php:107 +#: 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" -#: 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 "Los archivos que intentás subir sobrepasan el tamaño máximo " -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Se están escaneando los archivos, por favor esperá." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Escaneo actual" diff --git a/l10n/es_AR/files_encryption.po b/l10n/es_AR/files_encryption.po index 68fee9017fde1e1c48d0642ac6eeecdfba343f78..0640a5045514ecdbccd77b2ef56b836578ac37cc 100644 --- a/l10n/es_AR/files_encryption.po +++ b/l10n/es_AR/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-07-19 01:55-0400\n" -"PO-Revision-Date: 2013-07-18 12:20+0000\n" -"Last-Translator: cjtess \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" "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" @@ -68,10 +68,14 @@ msgstr "Requisitos incompletos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Por favor, asegurate que PHP 5.3.3 o posterior esté instalado y que la extensión OpenSSL de PHP esté habilitada y configurada correctamente. Por el momento, la aplicación de encriptación está deshabilitada." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/es_AR/files_sharing.po b/l10n/es_AR/files_sharing.po index c5f5deb302c47282a743863d7451796eed4d712b..1af48d91541e5705d22351052a2fc0c5c45d633d 100644 --- a/l10n/es_AR/files_sharing.po +++ b/l10n/es_AR/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: cjtess \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" "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" @@ -30,28 +30,52 @@ msgstr "Contraseña" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartió la carpeta %s con vos" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartió el archivo %s con vos" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Subir" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar subida" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "La vista preliminar no está disponible para" diff --git a/l10n/es_AR/files_trashbin.po b/l10n/es_AR/files_trashbin.po index b1b2ddc47daf03bd0924202c8326640f8ca9c75d..bdec790f40d33688902c48111d45168bec0d14b6 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "No fue posible borrar %s de manera permanente" msgid "Couldn't restore %s" msgstr "No se pudo restaurar %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "Restaurar" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Error" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "Borrar archivo de manera permanente" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Borrar de manera permanente" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nombre" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Borrado" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 directorio" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} directorios" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 archivo" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} archivos" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/es_AR/files_versions.po b/l10n/es_AR/files_versions.po index 956dd59f216fabc314499840f2720389fcf049f9..47441f17a35d4c18c6b2d9e82edc363333ee955b 100644 --- a/l10n/es_AR/files_versions.po +++ b/l10n/es_AR/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: es_AR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "No se pudo revertir: %s " -#: history.php:40 -msgid "success" -msgstr "Éxito" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "El archivo %s fue revertido a la versión %s" - -#: history.php:49 -msgid "failure" -msgstr "error" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "El archivo %s no pudo ser revertido a la versión %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versiones" -#: history.php:69 -msgid "No old versions available" -msgstr "No hay versiones antiguas disponibles" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Ruta de acceso no especificada" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versiones" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Revertí un archivo a una versión anterior haciendo click en su botón de \"revertir\"" +#: js/versions.js:149 +msgid "Restore" +msgstr "Recuperar" diff --git a/l10n/es_AR/lib.po b/l10n/es_AR/lib.po index 0797fe2fa94b51c16aba7e61215730f1308877da..722cf0c4c60e70dcc226cdcdaf0d826922b3293a 100644 --- a/l10n/es_AR/lib.po +++ b/l10n/es_AR/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-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: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "No se pudo actualizar \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "servicios web sobre los que tenés control" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "no se puede abrir \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Los archivos seleccionados son demasiado grandes para generar el archivo msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador" #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Provocado por:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/es_AR/settings.po b/l10n/es_AR/settings.po index 2828c7650ad26b2307c378aa5752a6972b1abda0..38ed5cca2a42872699bed5c22644b074d137c4d0 100644 --- a/l10n/es_AR/settings.po +++ b/l10n/es_AR/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Spanish (Argentina) (http://www.transifex.com/projects/p/owncloud/language/es_AR/)\n" "MIME-Version: 1.0\n" @@ -171,175 +171,173 @@ msgstr "Debe ingresar una contraseña válida" msgid "__language_name__" msgstr "Castellano (Argentina)" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Advertencia de seguridad" -#: templates/admin.php:20 +#: 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 "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raíz de tu servidor web." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Alerta de Configuración" -#: templates/admin.php:34 +#: 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 "Tu servidor web no está configurado todavía para permitir sincronización de archivos porque la interfaz WebDAV parece no funcionar." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Por favor, comprobá nuevamente la guía de instalación." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "El módulo 'fileinfo' no existe" -#: templates/admin.php:49 +#: 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 "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type" -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "\"Locale\" no está funcionando" -#: templates/admin.php:65 +#: 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 "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "La conexión a Internet no esta funcionando. " -#: templates/admin.php:80 +#: 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 "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Ejecutá una tarea con cada pagina cargada." -#: templates/admin.php:113 +#: 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 "cron.php está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Compartiendo" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Habilitar Share API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Permitir a las aplicaciones usar la Share API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Permitir enlaces" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Permitir a los usuarios compartir enlaces públicos" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Permitir subidas públicas" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permitir que los usuarios autoricen a otros a subir archivos en sus directorios públicos compartidos" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Permitir Re-Compartir" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Permite a los usuarios volver a compartir items que les fueron compartidos" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Permitir a los usuarios compartir con cualquiera." -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Permitir a los usuarios compartir sólo con los de sus mismos grupos" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Seguridad" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forzar a los clientes conectar a ownCloud vía conexión encriptada." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel de Log" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Más" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versión" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usás %s de los %s disponibles" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contraseña" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Tu contraseña fue cambiada" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "No fue posible cambiar tu contraseña" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Contraseña actual" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nueva contraseña:" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Cambiar contraseña" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nombre a mostrar" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "e-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Tu dirección de e-mail" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Escribí una dirección de e-mail para restablecer la contraseña" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Idioma" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Ayudanos a traducir" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "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" @@ -89,9 +89,9 @@ msgstr "Confirmar borrado" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Advertencia: Los Apps user_ldap y user_webdavauth son incompatibles. Puede que experimente un comportamiento inesperado. Pregunte al administrador del sistema para desactivar uno de ellos." +msgstr "" #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "Deshabilitar el Servidor Principal" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Al comenzar, ownCloud se conectará únicamente al servidor réplica" +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Desactivar la validación por certificado SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Si la conexión sólo funciona con esta opción, importá el certificado SSL del servidor LDAP en tu servidor ownCloud." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "Campo de nombre de usuario a mostrar" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de usuario de ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Campo de nombre de grupo a mostrar" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "El atributo LDAP a usar para generar el nombre de los grupos de ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "Por defecto, el nombre interno de usuario va a ser creado a partir del atributo UUID. Esto asegura que el nombre de usuario es único y los caracteres no necesitan ser convertidos. Para el nombre de usuario interno sólo se pueden usar estos caracteres: [a-zA-Z0-9_.@-]. Otros caracteres son sustituidos por su correspondiente en ASCII o simplemente omitidos. Si ocurrieran colisiones, un número será añadido o incrementado. El nombre interno de usuario se usa para identificar un usuario internamente. Es también el nombre por defecto para el directorio personal del usuario in ownCloud. También es un puerto de URLs remotas, por ejemplo, para todos los servicios *DAV. Con esta configuración el comportamiento por defecto puede ser cambiado. Para conseguir un comportamiento similar al anterior a ownCloud 5, ingresá el atributo del nombre en pantalla del usuario en el siguiente campo. Dejalo vacío para el comportamiento por defecto. Los cambios solo tendrán efecto para los nuevos usuarios LDAP." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "Sobrescribir la detección UUID" #: 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 " +"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 behaviour. " +" 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 "Por defecto, ownCloud detecta automáticamente el atributo UUID. El atributo UUID se usa para identificar indudablemente usuarios y grupos LDAP. Además, el nombre de usuario interno va a ser creado en base al UUID, si no ha sido especificado otro comportamiento arriba. Podés sobrescribir la configuración y pasar un atributo de tu elección. Tenés que asegurarte de que el atributo de tu elección sea accesible por los usuarios y grupos y ser único. Dejalo en blanco para usar el comportamiento por defecto. Los cambios tendrán efecto sólo en los nuevos usuarios y grupos de LDAP." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "Asignación del Nombre de usuario de un usuario LDAP" #: 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 "ownCloud usa nombres de usuario para almacenar y asignar (meta) datos. Con el fin de identificar con precisión y reconocer usuarios, cada usuario LDAP tendrá un nombre de usuario interno. Esto requiere una asignación de nombre de usuario de ownCloud a usuario LDAP. El nombre de usuario creado se asigna al UUID del usuario LDAP. Además el DN se almacena en caché principalmente para reducir la interacción de LDAP, pero no se utiliza para la identificación. Si la DN cambia, los cambios serán encontrados por ownCloud. El nombre interno de ownCloud se utiliza para todo en ownCloud. Borrar las asignaciones dejará restos en distintos lugares. Borrar las asignaciones no depende de la configuración, ¡afecta a todas las configuraciones de LDAP! No borrar nunca las asignaciones en un entorno de producción. Sólo borrar asignaciones en una situación de prueba o experimental." +"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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/es_AR/user_webdavauth.po b/l10n/es_AR/user_webdavauth.po index aaa1cdcdb30f263af5b4339c3af9759d06ab271c..e40f809b1bfd1cf3cca2ea888ab743f73bca0bdc 100644 --- a/l10n/es_AR/user_webdavauth.po +++ b/l10n/es_AR/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-25 02:04+0200\n" -"PO-Revision-Date: 2013-06-24 13:50+0000\n" -"Last-Translator: cjtess \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" "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" @@ -25,12 +25,12 @@ msgid "WebDAV Authentication" msgstr "Autenticación de WevDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "onwCloud enviará las credenciales de usuario a esta URL. 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." +msgstr "" diff --git a/l10n/et_EE/core.po b/l10n/et_EE/core.po index 6fb41eac228350ebe123ef3b0d91408c1b3aaad6..089c7847e96ec97fdffb8f636ae8cb312b47d7dc 100644 --- a/l10n/et_EE/core.po +++ b/l10n/et_EE/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -139,59 +139,59 @@ msgstr "November" msgid "December" msgstr "Detsember" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Seaded" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundit tagasi" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minut tagasi" +#: 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 "{minutes} minutit tagasi" +#: 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 "1 tund tagasi" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} tundi tagasi" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "täna" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "eile" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "viimasel kuul" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "kuu tagasi" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "viimasel aastal" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "aastat tagasi" @@ -227,8 +227,8 @@ msgstr "Objekti tüüp pole määratletud." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Viga" @@ -248,123 +248,123 @@ msgstr "Jagatud" msgid "Share" msgstr "Jaga" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Viga jagamisel" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Viga jagamise lõpetamisel" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Viga õiguste muutmisel" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Jagatud sinu ja {group} grupiga {owner} poolt" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Sinuga jagas {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Jaga" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Jaga lingiga" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Parooliga kaitstud" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Parool" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Luba avalik üleslaadimine" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Saada link isikule e-postiga" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Saada" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Määra aegumise kuupäev" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Aegumise kuupäev" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Jaga e-postiga:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Ühtegi inimest ei leitud" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Edasijagamine pole lubatud" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Jagatud {item} kasutajaga {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Lõpeta jagamine" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "saab muuta" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "ligipääsukontroll" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "loo" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "uuenda" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "kustuta" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "jaga" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Parooliga kaitstud" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Viga aegumise kuupäeva eemaldamisel" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Viga aegumise kuupäeva määramisel" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Saatmine ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-kiri on saadetud" @@ -379,9 +379,10 @@ msgstr "Uuendus ebaõnnestus. Palun teavita probleemidest Oled sa veendunud, et e-post/kasutajanimi on õ msgid "You will receive a link to reset your password via Email." msgstr "Sinu parooli taastamise link saadetakse sulle e-postile." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Kasutajanimi" @@ -463,11 +464,11 @@ msgstr "Abiinfo" msgid "Access forbidden" msgstr "Ligipääs on keelatud" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Pilve ei leitud" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Sinu PHP versioon on haavatav NULL Baidi (CVE-2006-7243) rünnakuga." #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Palun uuenda oma paigaldatud PHP-d tagamaks ownCloudi turvalisus." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Palun uuenda oma paigaldatud PHP-d tagamaks %s turvalisus." #: templates/installation.php:32 msgid "" @@ -517,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Su andmete kataloog ja failid on tõenäoliselt internetist vabalt saadaval kuna .htaccess fail ei toimi." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Serveri korrektseks seadistuseks tutvu palun dokumentatsiooniga." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Serveri korrektseks seadistuseks palun tutvu dokumentatsiooniga." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Loo admini konto" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Täpsem" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Andmete kaust" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Seadista andmebaasi" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "kasutatakse" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Andmebaasi kasutaja" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Andmebaasi parool" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Andmebasi nimi" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Andmebaasi tabeliruum" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Andmebaasi host" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Lõpeta seadistamine" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saadaval. Vaata lähemalt kuidas uuendada." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Logi välja" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Rohkem rakendusi" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automaatne sisselogimine lükati tagasi!" @@ -609,7 +615,7 @@ msgstr "Logi sisse" msgid "Alternative Logins" msgstr "Alternatiivsed sisselogimisviisid" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Jaga" msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Kustuta" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Nimeta ümber" @@ -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:457 -msgid "1 file uploading" -msgstr "1 fail üleslaadimisel" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "faili üleslaadimisel" @@ -202,33 +196,29 @@ msgstr "Valmistatakse allalaadimist. See võib võtta veidi aega, kui on tegu su msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Vigane kataloogi nimi. 'Shared' kasutamine on reserveeritud ownCloud poolt." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Suurus" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Muudetud" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 kaust" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} kausta" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fail" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -287,45 +277,49 @@ msgstr "Kaust" msgid "From link" msgstr "Allikast" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Kustutatud failid" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Siin puudvad sul kirjutamisõigused." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Siin pole midagi. Lae midagi üles!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lae alla" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Lõpeta jagamine" -#: templates/index.php:107 +#: 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" -#: 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 "Failid, mida sa proovid üles laadida, ületab serveri poolt üleslaetavatele failidele määratud maksimaalse suuruse." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Faile skannitakse, palun oota." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Praegune skannimine" diff --git a/l10n/et_EE/files_encryption.po b/l10n/et_EE/files_encryption.po index b5851a1bb9d40cccf03de172dc2cc054dfd66f1c..f39cbd36408ca78c1d8c82c2e20cdffdebfca0f6 100644 --- a/l10n/et_EE/files_encryption.po +++ b/l10n/et_EE/files_encryption.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 09:30+0000\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" @@ -69,10 +69,14 @@ msgstr "Nõutavad on puudu." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Veendu, et kasutusel oleks PHP 5.3.3 või uuem versioon ning kasutusel oleks OpenSSL PHP laiendus ja see on korrektselt seadistatud. Hetkel on krüpteerimise rakenduse kasutamine peatatud." +"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 "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 "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 42361100f7dad052657c9500cbdb86b169b6268e..f45b12c52bbbf2bfed0acf3c8ba42006bfd7b8b5 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Rivo Zängov \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" @@ -30,28 +31,52 @@ msgstr "Parool" msgid "Submit" msgstr "Saada" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Vabandust, see link ei tundu enam toimivat." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Põhjused võivad olla:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "üksus on eemaldatud" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "link on aegunud" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "jagamine on peatatud" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Täpsema info saamiseks palun pöördu lingi saatnud isiku poole." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jagas sinuga kausta %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s jagas sinuga faili %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lae alla" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Lae üles" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Tühista üleslaadimine" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Eelvaadet pole saadaval" diff --git a/l10n/et_EE/files_trashbin.po b/l10n/et_EE/files_trashbin.po index 9c1270403a3fc1b523b9d5ad11de3e131608ef7e..9e88ec56abd822c4c6ee9a8131b6929f29f4946c 100644 --- a/l10n/et_EE/files_trashbin.po +++ b/l10n/et_EE/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# pisike.sipelgas , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Rivo Zängov \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" @@ -27,45 +28,45 @@ msgstr "%s jäädavalt kustutamine ebaõnnestus" msgid "Couldn't restore %s" msgstr "%s ei saa taastada" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "soorita taastamine" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Viga" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "kustuta fail jäädavalt" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Kustuta jäädavalt" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Kustutatud" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 kaust" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} kausta" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fail" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} faili" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "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 6be6fc45ff4528470a63258c450caefcfae208d4..cfb0bfca4a332d1a1cc6a8e6a8ae1b2d88437939 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: Rivo Zängov \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" @@ -18,41 +19,27 @@ msgstr "" "Language: et_EE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Ei suuda taastada faili: %s" -#: history.php:40 -msgid "success" -msgstr "korras" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Fail %s taastati versioonile %s" - -#: history.php:49 -msgid "failure" -msgstr "ebaõnnestus" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Faili %s ei saa taastada versioonile %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versioonid" -#: history.php:69 -msgid "No old versions available" -msgstr "Vanu versioone pole saadaval" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Ebaõnnestus faili {file} taastamine revisjonile {timestamp}" -#: history.php:74 -msgid "No path specified" -msgstr "Asukohta pole määratud" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Rohkem versioone..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versioonid" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Muid versioone pole saadaval" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Taasta fail varasemale versioonile klikkides nupule \"Taasta\"" +#: js/versions.js:149 +msgid "Restore" +msgstr "Taasta" diff --git a/l10n/et_EE/lib.po b/l10n/et_EE/lib.po index 4286a1d97e1e0d73ecdb0715821fd2be084daae5..a0fadcd8feab9850b0ef9f654bad8d31bf453adf 100644 --- a/l10n/et_EE/lib.po +++ b/l10n/et_EE/lib.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-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: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -36,26 +36,22 @@ 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 "" +msgstr "Ebaõnnestunud uuendus \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "veebitenused sinu kontrolli all" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "ei suuda avada \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -77,7 +73,7 @@ msgstr "Valitud failid on ZIP-faili loomiseks liiga suured." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt." #: helper.php:235 msgid "couldn't be determined" @@ -212,56 +208,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Põhjustaja:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/et_EE/settings.po b/l10n/et_EE/settings.po index d6eb8e8264689d75d8db0f9ff6cbd2aeb38c475b..4dc6df1749c33f403ae9d935dff962352dc420c7 100644 --- a/l10n/et_EE/settings.po +++ b/l10n/et_EE/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 09:30+0000\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" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -171,175 +171,173 @@ msgstr "Sisesta nõuetele vastav parool" msgid "__language_name__" msgstr "Eesti" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Turvahoiatus" -#: templates/admin.php:20 +#: 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 "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, mida pakub ownCloud, ei toimi. Soovitame tungivalt veebiserveri seadistust selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi-juurkataloogist mujale." +"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." +msgstr "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Paigalduse hoiatus" -#: templates/admin.php:34 +#: 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 "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Palun tutvu veelkord paigalduse juhenditega." +msgid "Please double check the installation guides." +msgstr "Palun kontrolli uuesti paigaldusjuhendeid." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Moodul 'fileinfo' puudub" -#: templates/admin.php:49 +#: 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 "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Lokalisatsioon ei toimi" -#: templates/admin.php:65 +#: 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 "ownCloud server ei suuda seadistada süsteemi lokalisatsiooni %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." +"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 "Süsteemi lokaliseeringut ei saa panna %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Internetiühendus ei toimi" -#: templates/admin.php:80 +#: 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 "ownCloud serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." - -#: templates/admin.php:94 +"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." +msgstr "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Käivita toiming lehe laadimisel" -#: templates/admin.php:113 +#: 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 "cron.php on registreeritud webcron teenusena. Lae cron.php lehte owncloud veebikataloogist iga minut üle http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php on registreeritud webcron teenusena laadimaks cron.php iga minut üle http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Kasuta süsteemi cron teenust. Käivita cron.php fail owncloud veebikataloogist kasutades süsteemi crontab toimingut iga minut." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Kasuta süsteemi cron teenust käivitamaks faili cron.php kord minutis." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Jagamine" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Luba Share API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Luba rakendustel kasutada Share API-t" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Luba lingid" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Luba kasutajatel jagada kirjeid avalike linkidega" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "Luba avalikud üleslaadimised" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Luba kasutajatel üleslaadimine teiste poolt oma avalikult jagatud kataloogidesse " -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Luba edasijagamine" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Luba kasutajatel jagada edasi kirjeid, mida on neile jagatud" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Luba kasutajatel kõigiga jagada" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Turvalisus" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Sunni peale HTTPS-i kasutamine" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Sunnib kliente ownCloudiga ühenduma krüpteeritult." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Sunnib kliente %s ühenduma krüpteeritult." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Palun ühendu selle ownCloud instantsiga üle HTTPS või keela SSL kasutamine." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Logi" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Logi tase" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Rohkem" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Vähem" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versioon" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kasutad %s saadavalolevast %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parool" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Sinu parooli on muudetud" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Sa ei saa oma parooli muuta" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Praegune parool" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Uus parool" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Muuda parooli" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Näidatav nimi" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-post" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Sinu e-posti aadress" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Parooli taastamise sisse lülitamiseks sisesta e-posti aadress" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Keel" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Aita tõlkida" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/projects/p/owncloud/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -90,7 +90,7 @@ msgstr "Kinnita kustutamine" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." 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." @@ -223,8 +223,8 @@ msgid "Disable Main Server" msgstr "Ära kasuta peaserverit" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Märgituna ownCloud ühendub ainult varuserverisse." +msgid "Only connect to the replica server." +msgstr "Ühendu ainult replitseeriva serveriga." #: templates/settings.php:76 msgid "Use TLS" @@ -243,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "Lülita SSL sertifikaadi kontrollimine välja." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Kui ühendus toimib ainult selle valikuga, siis impordi LDAP serveri SSL sertifikaat oma ownCloud serverisse." +"certificate in your %s server." +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." @@ -269,8 +270,8 @@ msgid "User Display Name Field" msgstr "Kasutaja näidatava nime väli" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP omadus, mida kasutatakse kasutaja ownCloudi nime loomiseks." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "LDAP atribuut, mida kasutatakse kasutaja kuvatava nime loomiseks." #: templates/settings.php:84 msgid "Base User Tree" @@ -293,8 +294,8 @@ msgid "Group Display Name Field" msgstr "Grupi näidatava nime väli" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP omadus, mida kasutatakse ownCloudi grupi nime loomiseks." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "LDAP atribuut, mida kasutatakse ownCloudi grupi kuvatava nime loomiseks." #: templates/settings.php:87 msgid "Base Group Tree" @@ -354,13 +355,13 @@ msgid "" "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 "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 URL pordiks, 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 LDAP kasutajate vastendusi (lisatud)." +"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." +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:" @@ -372,14 +373,14 @@ msgstr "Tühista UUID tuvastus" #: 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 " +"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 behaviour. " +" 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 "Vaikimis ownCloud tuvastab automaatlselt 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 LDAP kasutajate vastendusi (lisatud)." +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:" @@ -391,18 +392,17 @@ msgstr "LDAP-Kasutajatunnus Kasutaja Vastendus" #: 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 "ownCloud kasutab kasutajanime talletamaks ja omistamaks (pseudo) andmeid. Et täpselt tuvastada ja määratleda kasutajaid, iga LDAP kasutaja peab omama sisemist kasutajatunnust. See vajab ownCloud kasutajatunnuse vastendust LDAP kasutajaks. Tekitatud kasutanimi 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." +"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." +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 3c9471a2734cea9cf2e414118206019bf1faa628..575c051d6aa67cd14e87661a0ae745e09e8a4f9d 100644 --- a/l10n/et_EE/user_webdavauth.po +++ b/l10n/et_EE/user_webdavauth.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-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 09:20+0000\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" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV autentimine" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "Aadress:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "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 d835abba091ecde92bc2b4bc339c25e1068877ee..b732596c727d438d5e42389bd236e649d6924ec5 100644 --- a/l10n/eu/core.po +++ b/l10n/eu/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asieriko , 2013 # Piarres Beobide , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: Piarres Beobide \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" @@ -138,59 +139,59 @@ msgstr "Azaroa" msgid "December" msgstr "Abendua" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Ezarpenak" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "segundu" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "orain dela minutu 1" +#: 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 "orain dela {minutes} minutu" +#: 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 "orain dela ordu bat" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "orain dela {hours} ordu" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "gaur" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "atzo" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "joan den hilabetean" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "hilabete" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "joan den urtean" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "urte" @@ -226,8 +227,8 @@ msgstr "Objetu mota ez dago zehaztuta." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Errorea" @@ -247,123 +248,123 @@ msgstr "Elkarbanatuta" msgid "Share" msgstr "Elkarbanatu" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Errore bat egon da elkarbanatzean" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Errore bat egon da elkarbanaketa desegitean" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Errore bat egon da baimenak aldatzean" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}-k zu eta {group} taldearekin elkarbanatuta" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner}-k zurekin elkarbanatuta" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Elkarbanatu honekin" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Elkarbanatu lotura batekin" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Babestu pasahitzarekin" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Pasahitza" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Gaitu igotze publikoa" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Postaz bidali lotura " -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Bidali" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Ezarri muga data" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Muga data" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Elkarbanatu eposta bidez:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Ez da inor aurkitu" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Berriz elkarbanatzea ez dago baimendua" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "{user}ekin {item}-n elkarbanatuta" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Ez elkarbanatu" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "editatu dezake" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "sarrera kontrola" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "sortu" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "eguneratu" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "ezabatu" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "elkarbanatu" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Pasahitzarekin babestuta" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Errorea izan da muga data kentzean" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Errore bat egon da muga data ezartzean" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Bidaltzen ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Eposta bidalia" @@ -378,9 +379,10 @@ msgstr "Eguneraketa ez da ongi egin. Mesedez egin arazoaren txosten bat Ziur zaude posta/pasahitza zuzenak direla?" msgid "You will receive a link to reset your password via Email." msgstr "Zure pashitza berrezartzeko lotura bat jasoko duzu Epostaren bidez." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Erabiltzaile izena" @@ -462,11 +464,11 @@ msgstr "Laguntza" msgid "Access forbidden" msgstr "Sarrera debekatuta" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Ez da hodeia aurkitu" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Zure PHP bertsioa NULL Byte erasoak (CVE-2006-7243) mendera dezake." #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Mesedez eguneratu zure PHP instalazioa ownCloud modu seguru batean erabiltzeko." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Mesedez eguneratu zure PHP instalazioa %s seguru erabiltzeko" #: templates/installation.php:32 msgid "" @@ -516,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Zure data karpeta eta fitxategiak interneten bidez eskuragarri egon daitezke .htaccess fitxategia ez delako funtzionatzen ari." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Zure zerbitzaria ongi konfiguratzeko informazioa eskuratzeko, begiratu dokumentazioa." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Zure zerbitrzaria ongi konfiguratzeko, mezedez dokumentazioa ikusi." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Sortu kudeatzaile kontu bat" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Aurreratua" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datuen karpeta" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfiguratu datu basea" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "erabiliko da" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Datubasearen erabiltzailea" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Datubasearen pasahitza" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Datubasearen izena" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Datu basearen taula-lekua" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Datubasearen hostalaria" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Bukatu konfigurazioa" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s erabilgarri dago. Eguneratzeaz argibide gehiago eskuratu." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Saioa bukatu" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Saio hasiera automatikoa ez onartuta!" @@ -608,7 +615,7 @@ msgstr "Hasi saioa" msgid "Alternative Logins" msgstr "Beste erabiltzaile izenak" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Elkarbanatu" msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Ezabatu" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Berrizendatu" @@ -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:457 -msgid "1 file uploading" -msgstr "fitxategi 1 igotzen" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "fitxategiak igotzen" @@ -201,33 +195,29 @@ msgstr "Zure deskarga prestatu egin behar da. Denbora bat har lezake fitxategiak msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Baliogabeako karpeta izena. 'Shared' izena Owncloudek erreserbatzen du" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Izena" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Aldatuta" -#: js/files.js:763 -msgid "1 folder" -msgstr "karpeta bat" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} karpeta" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -286,45 +276,49 @@ msgstr "Karpeta" msgid "From link" msgstr "Estekatik" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ezabatutako fitxategiak" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Ez duzu hemen idazteko baimenik." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ez dago ezer. Igo zerbait!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Deskargatu" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Ez elkarbanatu" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Ezabatu" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Igoera handiegia da" -#: 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 "Igotzen saiatzen ari zaren fitxategiak zerbitzari honek igotzeko onartzen duena baino handiagoak dira." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fitxategiak eskaneatzen ari da, itxoin mezedez." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Orain eskaneatzen ari da" diff --git a/l10n/eu/files_encryption.po b/l10n/eu/files_encryption.po index cc5d993d62c10aebc4fd5505245a33876df4b086..a714d8fa8889369d1e2dcaa345af7d2d4500593c 100644 --- a/l10n/eu/files_encryption.po +++ b/l10n/eu/files_encryption.po @@ -4,13 +4,14 @@ # # Translators: # asaez , 2013 +# asieriko , 2013 # Piarres Beobide , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -61,17 +62,21 @@ 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 "Zure gako pribatua ez da egokia! Seguruaski zure pasahitza ownCloud sistematik kanpo aldatu da (adb. zure direktorio korporatiboa). Zure gako pribatuaren pasahitza eguneratu dezakezu zure ezarpen pertsonaletan zure enkriptatutako fitxategiak berreskuratzeko." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Eskakizun batzuk ez dira betetzen." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 @@ -82,11 +87,11 @@ msgstr "Gordetzen..." msgid "" "Your private key is not valid! Maybe the your password was changed from " "outside." -msgstr "" +msgstr "Zure gako pribatua ez da egokia! Agian zure pasahitza kanpotik aldatu da." #: templates/invalid_private_key.php:7 msgid "You can unlock your private key in your " -msgstr "" +msgstr "Zure gako pribatua desblokeatu dezakezu zure" #: templates/invalid_private_key.php:7 msgid "personal settings" @@ -99,7 +104,7 @@ msgstr "Enkriptazioa" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Gaitu berreskurapen gakoa (erabiltzaileen fitxategiak berreskuratzea ahalbidetzen du pasahitza galtzen badute ere):" #: templates/settings-admin.php:14 msgid "Recovery key password" @@ -131,25 +136,25 @@ msgstr "Aldatu Pasahitza" #: templates/settings-personal.php:11 msgid "Your private key password no longer match your log-in password:" -msgstr "" +msgstr "Zure gako pribatuaren pasahitza ez da dagoeneko zure sarrera pasahitza:" #: templates/settings-personal.php:14 msgid "Set your old private key password to your current log-in password." -msgstr "" +msgstr "Ezarri zure gako pribatu zaharraren pasahitza zure oraingo sarrerako psahitzara." #: templates/settings-personal.php:16 msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "Ez baduzu zure pasahitz zaharra gogoratzen eskatu zure administratzaileari zure fitxategiak berreskuratzeko." #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Sartzeko pasahitz zaharra" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Sartzeko oraingo pasahitza" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -163,7 +168,7 @@ msgstr "Gaitu pasahitz berreskuratzea:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Aukera hau gaituz zure enkriptatutako fitxategiak berreskuratu ahal izango dituzu pasahitza galtzekotan" #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/eu/files_sharing.po b/l10n/eu/files_sharing.po index 904eaefbecaaa5a4e28b4c597f17c9a296770f88..81b2f6c18a9c2ec695d2edf49f8daa4325116eb4 100644 --- a/l10n/eu/files_sharing.po +++ b/l10n/eu/files_sharing.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asieriko , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Pasahitza ez da egokia. Saiatu berriro." #: templates/authenticate.php:7 msgid "Password" @@ -29,28 +30,52 @@ msgstr "Pasahitza" msgid "Submit" msgstr "Bidali" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%sk zurekin %s karpeta elkarbanatu du" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%sk zurekin %s fitxategia elkarbanatu du" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Deskargatu" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Igo" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Ezeztatu igoera" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ez dago aurrebista eskuragarririk hauentzat " diff --git a/l10n/eu/files_trashbin.po b/l10n/eu/files_trashbin.po index 04880a73a43b6cf92042d9096cf4c9804e2e6f8d..ee2efd48c1bd5b151693f1471f48814be134dad7 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "Ezin izan da %s betirako ezabatu" msgid "Couldn't restore %s" msgstr "Ezin izan da %s berreskuratu" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "berreskuratu" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Errorea" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "ezabatu fitxategia betirako" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Ezabatu betirako" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Izena" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Ezabatuta" -#: js/trash.js:186 -msgid "1 folder" -msgstr "karpeta bat" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} karpeta" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "fitxategi bat" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} fitxategi" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/eu/files_versions.po b/l10n/eu/files_versions.po index 284ceaf733e1d97474d2650d119d6541189bd81b..6712907ef1368b1ca996450edd27c478820335f6 100644 --- a/l10n/eu/files_versions.po +++ b/l10n/eu/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asieriko , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 07:30+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +18,27 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Ezin izan da leheneratu: %s" -#: history.php:40 -msgid "success" -msgstr "arrakasta" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "%s fitxategia %s bertsiora leheneratu da" - -#: history.php:49 -msgid "failure" -msgstr "errorea" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "%s fitxategia ezin da %s bertsiora leheneratu" +#: js/versions.js:7 +msgid "Versions" +msgstr "Bertsioak" -#: history.php:69 -msgid "No old versions available" -msgstr "Ez dago bertsio zaharrik eskuragarri" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Errore bat izan da {fitxategia} {timestamp} bertsiora leheneratzean." -#: history.php:74 -msgid "No path specified" -msgstr "Ez da bidea zehaztu" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Bertsio gehiago..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Bertsioak" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Ez dago bertsio gehiago eskuragarri" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Itzuli fitxategi bat aurreko bertsio batera leheneratu bere leheneratu botoia sakatuz" +#: js/versions.js:149 +msgid "Restore" +msgstr "Berrezarri" diff --git a/l10n/eu/lib.po b/l10n/eu/lib.po index d34f67e8c9cd546450abbde80fde25b2d8a7c31d..99b8dd00c28176e3e154f1a26cef5eb91ecf97e3 100644 --- a/l10n/eu/lib.po +++ b/l10n/eu/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asieriko , 2013 # Piarres Beobide , 2013 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: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" @@ -35,26 +36,22 @@ 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 "" +msgstr "Ezin izan da \"%s\" eguneratu." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web zerbitzuak zure kontrolpean" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "ezin da \"%s\" ireki" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari" #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Honek eraginda:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/eu/settings.po b/l10n/eu/settings.po index 50867767f785f4da38a470d4be8d0073159d9940..561de1b7d88aa83ba4b230cbfb668c55f4fede63 100644 --- a/l10n/eu/settings.po +++ b/l10n/eu/settings.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# asieriko , 2013 # Piarres Beobide , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -170,175 +171,173 @@ msgstr "Baliozko pasahitza eman behar da" msgid "__language_name__" msgstr "Euskera" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Segurtasun abisua" -#: templates/admin.php:20 +#: 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 "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Konfiguratu Abisuak" -#: templates/admin.php:34 +#: 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 "Zure web zerbitzaria ez dago oraindik ongi konfiguratuta fitxategien sinkronizazioa egiteko, WebDAV interfazea ongi ez dagoela dirudi." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Mesedez begiratu instalazio gidak." +msgid "Please double check the installation guides." +msgstr "Mesedez birpasatu instalazio gidak." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "'fileinfo' Modulua falta da" -#: templates/admin.php:49 +#: 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 "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Lokala ez dabil" -#: templates/admin.php:65 +#: 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 "OwnClud zerbitzari honek ezin du sistemaren lokala %s-ra ezarri. Honek fitxategien izenetan karaktere batzuekin arazoak egon daitekeela esan nahi du. Aholkatzen dizugu zure sistema %s lokalea onartzeko beharrezkoak diren paketeak instalatzea." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Interneteko konexioak ez du funtzionatzen" -#: templates/admin.php:80 +#: 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 "ownCloud zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Exekutatu zeregin bat orri karga bakoitzean" -#: templates/admin.php:113 +#: 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 "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php webcron zerbitzu batean erregistratua dago cron.php minuturo http bidez deitzeko." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Erabili sistemaren cron zerbitzua cron.php fitxategia minuturo deitzeko." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Partekatzea" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Gaitu Elkarbanatze APIa" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Baimendu loturak" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Baimendu igoera publikoak" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Baimendu erabiltzaileak besteak bere partekatutako karpetetan fitxategiak igotzea" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Baimendu birpartekatzea" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Baimendu erabiltzaileak edonorekin elkarbanatzen" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Segurtasuna" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Behartu HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Bezeroak konexio enkriptatu baten bidez ownCloud-era konektatzera behartzen du." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Mesedez konektatu ownCloud honetara HTTPS bidez SSL-ren beharra gaitu edo ezgaitzeko" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Egunkaria" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Erregistro maila" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Gehiago" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Gutxiago" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Bertsioa" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "Dagoeneko %s erabili duzu eskuragarri duzun %setatik" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Pasahitza" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Zere pasahitza aldatu da" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Ezin izan da zure pasahitza aldatu" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Uneko pasahitza" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Pasahitz berria" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Aldatu pasahitza" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Bistaratze Izena" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-posta" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Zure e-posta" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Idatz ezazu e-posta bat pasahitza berreskuratu ahal izateko" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Hizkuntza" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Lagundu itzultzen" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,9 +89,9 @@ msgstr "Baieztatu Ezabatzea" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Abisua: user_ldap eta user_webdavauth aplikazioak bateraezinak dira. Portaera berezia izan dezakezu. Mesedez eskatu zure sistema kudeatzaileari bietako bat desgaitzeko." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,8 +222,8 @@ msgid "Disable Main Server" msgstr "Desgaitu Zerbitzari Nagusia" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Markatuta dagoenean, ownCloud bakarrik replica zerbitzarira konektatuko da." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -241,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Ezgaitu SSL ziurtagirien egiaztapena." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Konexioa aukera hau ezinbestekoa badu, inportatu LDAP zerbitzariaren SSL ziurtagiria zure ownCloud zerbitzarian." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +269,8 @@ msgid "User Display Name Field" msgstr "Erabiltzaileen bistaratzeko izena duen eremua" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "ownCloud erabiltzailearen izena sortzeko erabiliko den LDAP atributua" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Taldeen bistaratzeko izena duen eremua" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "ownCloud taldearen izena sortzeko erabiliko den LDAP atributua" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -342,7 +344,7 @@ msgstr "Utzi hutsik erabiltzaile izenarako (lehentsia). Bestela zehaztu LDAP/AD #: templates/settings.php:101 msgid "Internal Username" -msgstr "" +msgstr "Barneko erabiltzaile izena" #: templates/settings.php:102 msgid "" @@ -352,12 +354,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +372,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +391,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/eu/user_webdavauth.po b/l10n/eu/user_webdavauth.po index 03f85ec7ec0c32eeb8f50c72b9b8bc42775e4156..e0b496113421cf05870f587a5694ba72116fd9a7 100644 --- a/l10n/eu/user_webdavauth.po +++ b/l10n/eu/user_webdavauth.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 07:30+0000\n" +"Last-Translator: asieriko \n" "Language-Team: Basque (http://www.transifex.com/projects/p/owncloud/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV Autentikazioa" #: templates/settings.php:4 -msgid "URL: " -msgstr "" +msgid "Address: " +msgstr "Helbidea:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloudek erabiltzailearen kredentzialak URL honetara bidaliko ditu. Plugin honek erantzuna aztertzen du eta HTTP 401 eta 403 egoera kodeak baliogabezko kredentzialtzat hartuko ditu, beste erantzunak kredentzial egokitzat hartuko dituelarik." +msgstr "Erabiltzailearen kredentzialak helbide honetara bidaliko dira. Plugin honek erantzuna aztertu eta HTTP 401 eta 403 egoera-kodeak kredentzial ez-egokitzat hartuko ditu, eta beste edozein erantzun, aldiz, kredentzial egokitzat." diff --git a/l10n/fa/core.po b/l10n/fa/core.po index 1fb387cc7564cbcd774546370ad1ad9cd7e36552..132453355403c43c384b7d616d02012005384f65 100644 --- a/l10n/fa/core.po +++ b/l10n/fa/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: miki_mika1362 \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,59 +138,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 "1 دقیقه پیش" +#: 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 "1 ساعت پیش" - -#: 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,8 +222,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خطا" @@ -247,123 +243,123 @@ msgstr "اشتراک گذاشته شده" msgid "Share" msgstr "اشتراک‌گذاری" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "خطا درحال به اشتراک گذاشتن" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "خطا درحال لغو اشتراک" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "خطا در حال تغییر مجوز" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "به اشتراک گذاشته شده با شما و گروه {گروه} توسط {دارنده}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "به اشتراک گذاشته شده با شما توسط { دارنده}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "به اشتراک گذاشتن با" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "به اشتراک گذاشتن با پیوند" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "نگهداری کردن رمز عبور" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "گذرواژه" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "اجازه آپلود عمومی" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "پیوند ایمیل برای شخص." -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "ارسال" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "تنظیم تاریخ انقضا" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "تاریخ انقضا" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "از طریق ایمیل به اشتراک بگذارید :" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "کسی یافت نشد" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "اشتراک گذاری مجدد مجاز نمی باشد" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "به اشتراک گذاشته شده در {بخش} با {کاربر}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "لغو اشتراک" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "می توان ویرایش کرد" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "کنترل دسترسی" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "ایجاد" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "به روز" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "پاک کردن" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "به اشتراک گذاشتن" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "نگهداری از رمز عبور" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "خطا در تنظیم نکردن تاریخ انقضا " -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "خطا در تنظیم تاریخ انقضا" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "درحال ارسال ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -401,7 +398,7 @@ msgstr "درخواست رد شده است !
آیا مطمئن هستید ک msgid "You will receive a link to reset your password via Email." msgstr "شما یک نامه الکترونیکی حاوی یک لینک جهت بازسازی گذرواژه دریافت خواهید کرد." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "نام کاربری" @@ -462,11 +459,11 @@ msgstr "راه‌نما" msgid "Access forbidden" msgstr "اجازه دسترسی به مناطق ممنوعه را ندارید" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "پیدا نشد" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +492,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "نسخه ی PHP شما در برابر حملات NULL Byte آسیب پذیر است.(CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "لطفا برنامه ی PHP خودتان را بروز کنید تا بتوانید ایمن تر از ownCloud استفاده کنید." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -516,68 +514,72 @@ msgid "" "because the .htaccess file does not work." msgstr "فایلها و فهرست های داده های شما قابل از اینترنت قابل دسترسی هستند، چونکه فایل htacces. کار نمی کند." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "برای مطلع شدن از چگونگی تنظیم سرورتان،لطفا این را ببینید." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "لطفا یک شناسه برای مدیر بسازید" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "پیشرفته" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "پوشه اطلاعاتی" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "استفاده خواهد شد" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "شناسه پایگاه داده" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "پسورد پایگاه داده" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "نام پایگاه داده" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "جدول پایگاه داده" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "هاست پایگاه داده" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "اتمام نصب" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s در دسترس است. برای چگونگی به روز رسانی اطلاعات بیشتر را دریافت نمایید." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "خروج" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ورود به سیستم اتوماتیک ردشد!" @@ -608,7 +610,7 @@ msgstr "ورود" msgid "Alternative Logins" msgstr "ورود متناوب" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,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 "تغییرنام" @@ -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:457 -msgid "1 file uploading" -msgstr "1 پرونده آپلود شد." - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "بارگذاری فایل ها" @@ -201,33 +194,27 @@ msgstr "دانلود شما در حال آماده شدن است. در صورت msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "نام پوشه نامعتبر است. استفاده از \" به اشتراک گذاشته شده \" متعلق به سایت Owncloud است." -#: 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 "1 پوشه" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{ شمار} پوشه ها" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 پرونده" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -286,45 +273,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 "سایز فایل برای آپلود زیاد است(م.تنظیمات در php.ini)" -#: 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 "فایلها بیش از حد تعیین شده در این سرور هستند\nمترجم:با تغییر فایل php,ini میتوان این محدودیت را برطرف کرد" -#: 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/fa/files_encryption.po b/l10n/fa/files_encryption.po index 1693b267f7596d105f160e700df055404532a1b6..6dced246ec6203faff8502d75e1f042b7ed20561 100644 --- a/l10n/fa/files_encryption.po +++ b/l10n/fa/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-07-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-10 09:30+0000\n" -"Last-Translator: miki_mika1362 \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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,10 +68,14 @@ msgstr "نیازمندی های گمشده" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "لطفا مطمئن شوید که PHP 5.3.3 یا جدیدتر نصب شده و پسوند OpenSSL PHP فعال است و به درستی پیکربندی شده است. در حال حاضر، برنامه رمزگذاری غیر فعال شده است." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/fa/files_sharing.po b/l10n/fa/files_sharing.po index 76c7865d81618e59cb657ec7b14172441de1d0df..a39839bae3549f8a280a1da483d744ed2a4c7160 100644 --- a/l10n/fa/files_sharing.po +++ b/l10n/fa/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: miki_mika1362 \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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "گذرواژه" msgid "Submit" msgstr "ثبت" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%sپوشه %s را با شما به اشتراک گذاشت" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%sفایل %s را با شما به اشتراک گذاشت" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "دانلود" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "بارگزاری" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "متوقف کردن بار گذاری" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "هیچگونه پیش نمایشی موجود نیست" diff --git a/l10n/fa/files_trashbin.po b/l10n/fa/files_trashbin.po index b97ddf8e62154b8063541eca3556ecb88f9d6ab0..b7425ae04baa4d38799800679999bf5754f49bf7 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "%s را نمی توان برای همیشه حذف کرد" msgid "Couldn't restore %s" msgstr "%s را نمی توان بازگرداند" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "انجام عمل بازگرداندن" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "خطا" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "حذف فایل برای همیشه" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "حذف قطعی" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "نام" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "حذف شده" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 پوشه" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{ شمار} پوشه ها" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 پرونده" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{ شمار } فایل ها" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/fa/files_versions.po b/l10n/fa/files_versions.po index b97521439ce876c0ee24a5764861afbd8d28b2ba..a524de5a0e396328a23538a4c5926eed82d06a69 100644 --- a/l10n/fa/files_versions.po +++ b/l10n/fa/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-10 02:13+0200\n" -"PO-Revision-Date: 2013-07-09 09:50+0000\n" -"Last-Translator: miki_mika1362 \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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,41 +18,27 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "بازگردانی امکان ناپذیر است: %s" -#: history.php:40 -msgid "success" -msgstr "موفقیت" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "فایل %s به نسخه %s بازگردانده شده است." - -#: history.php:49 -msgid "failure" -msgstr "شکست" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "فایل %s نمی تواند به نسخه %s بازگردانده شود." +#: js/versions.js:7 +msgid "Versions" +msgstr "نسخه ها" -#: history.php:69 -msgid "No old versions available" -msgstr "هیچ نسخه قدیمی در دسترس نیست" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "هیچ مسیری مشخص نشده است" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "نسخه ها" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "بازگردانی یک پرورنده به نسخه قدیمی اش از طریق دکمه بازگردانی امکان پذیر است" +#: js/versions.js:149 +msgid "Restore" +msgstr "بازیابی" diff --git a/l10n/fa/lib.po b/l10n/fa/lib.po index ecfe7c69a3bf8456715a5389681130718b3264b3..86524be032e13962d674094c0ee5e1ada54d8b4d 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-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: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,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 "سرویس های تحت وب در کنترل شما" @@ -211,54 +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] "" #: 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 "سال‌های قبل" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fa/settings.po b/l10n/fa/settings.po index 69a222c9ea4ea92ce45f8ebdd0bc9553a0f6c796..c30c709618f28e18bc133a4a558504ebb6994870 100644 --- a/l10n/fa/settings.po +++ b/l10n/fa/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "رمز عبور صحیح باید وارد شود" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "اخطار امنیتی" -#: templates/admin.php:20 +#: 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 "احتمالاً فهرست و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل با فرمت .htaccess که ownCloud اراده کرده است دیگر کار نمی کند. ما قویاً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که فهرست اطلاعات شما غیر قابل دسترسی باشند یا فهرست اطلاعات را به خارج از ریشه ی اصلی وب سرور انتقال دهید." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "هشدار راه اندازی" -#: templates/admin.php:34 +#: 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 "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "لطفاً دوباره راهنمای نصبرا بررسی کنید." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "ماژول 'fileinfo' از کار افتاده" -#: templates/admin.php:49 +#: 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 "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "زبان محلی کار نمی کند." -#: templates/admin.php:65 +#: 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 "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "اتصال اینترنت کار نمی کند" -#: templates/admin.php:80 +#: 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 "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "زمانبند" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "اجرای یک وظیفه با هر بار بارگذاری صفحه" -#: templates/admin.php:113 +#: 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 "cron.php در یک سرویس webcron ثبت شده است. تماس یک بار در دقیقه بر روی http با صفحه cron.php در ریشه owncloud ." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "استفاده از سیستم های سرویس cron . تماس یک بار در دقیقه با فایل cron.php در پوشه owncloud از طریق یک سیستم cronjob ." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "اشتراک گذاری" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "فعال کردن API اشتراک گذاری" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "اجازه ی لینک ها" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "اجازه دادن به کاربران برای اشتراک گذاری آیتم ها با عموم از طریق پیوند ها" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "مجوز اشتراک گذاری مجدد" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "اجازه به کاربران برای اشتراک گذاری دوباره با آنها" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "اجازه به کابران برای اشتراک گذاری با همه" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "امنیت" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "وادار کردن HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "از طریق HTTPS به این نسخه از ownCloud متصل شوید تا بتوانید SSL را فعال یا غیر فعال نمایید." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "کارنامه" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "سطح ورود" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "بیش‌تر" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "کم‌تر" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "نسخه" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "شما استفاده کردید از %s از میزان در دسترس %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "گذرواژه" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "رمز عبور شما تغییر یافت" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "ناتوان در تغییر گذرواژه" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "گذرواژه کنونی" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "گذرواژه جدید" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "تغییر گذر واژه" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "نام نمایشی" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "ایمیل" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "پست الکترونیکی شما" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "پست الکترونیکی را پرکنید تا بازیابی گذرواژه فعال شود" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "زبان" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "به ترجمه آن کمک کنید" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,7 +89,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "غیر فعال کردن سرور اصلی" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "وقتی روشن می شود، ownCloud تنها با سرور ماکت ارتباط برقرار می کند." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -242,9 +242,10 @@ msgid "Turn off SSL certificate validation." msgstr "غیرفعال کردن اعتبار گواهی نامه SSL ." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -268,7 +269,7 @@ msgid "User Display Name Field" msgstr "فیلد نام کاربر" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -292,7 +293,7 @@ msgid "Group Display Name Field" msgstr "فیلد نام گروه" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -353,13 +354,13 @@ msgid "" "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 "به طور پیش فرض نام کاربری داخلی از ویژگی UUID ایجاد خواهد شد. این اطمینان حاصل می کند که نام کاربری منحصر به فرد است و کاراکترها نیاز به تبدیل ندارند. نام کاربری داخلی دارای محدودیت است که فقط این کاراکتر ها مجاز می باشند: [ a-zA-Z0-9_.@- ]. بقیه کاراکترها با مکاتبات ASCII آنها جایگزین میشود یا به سادگی حذف شوند. در برخورد یک عدد اضافه خواهد شد / افزایش یافته است. نام کاربری داخلی برای شناسایی یک کاربر داخلی استفاده می شود.همچنین این نام به طور پیش فرض برای پوشه خانه کاربر در ownCloud. همچنین یک پورت برای آدرس های دور از راه است، به عنوان مثال برای تمام خدمات *DAV. با این تنظیمات، رفتار پیش فرض می تواند لغو گردد. برای رسیدن به یک رفتار مشابه به عنوان قبل، ownCloud 5 وارد نمایش ویژگی نام کاربر در زمینه های زیر است. آن را برای رفتار پیش فرض خالی بگذارید. تغییرات اثربخش خواهد بود فقط در نگاشت جدید(اضافه شده) کاربران LDAP ." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "نادیده گرفتن تشخیص UUID " #: 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 " +"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 behaviour. " +" 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 "به طور پیش فرض، ownCloud ویژگی UUID را به صورت اتوماتیک تشخیص می دهد. ویژگی UUID برای شناسایی کاربران و گروه های LDAP استفاده می شود. همچنین، نام کاربری داخلی بر پایه UUID ایجاد خواهد شد، در غیر اینصورت در بالا مشخص نشده باشد. شما می توانید تنظیمات را لغو کنید و یک ویژگی از انتخابتان را تصویب کنید. شما باید مطمئن شوید که ویژگی انتخاب شده شما می تواند آورده شود برای کاربران و گروه ها و آن منحصر به فرد است. آن را برای رفتار پیش فرض ترک کن. تغییرات فقط بر روی نگاشت جدید (اضافه شده) کاربران و گروه های LDAP ." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "نام کاربری - نگاشت کاربر LDAP " #: 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 "ownCloud از نام های کاربری برای ذخیره و تعیین داده (متا) استفاده می کند. به منظور دقت شناسایی و به رسمیت شناختن کاربران، هر کاربرLDAP باید یک نام کاربری داخلی داشته باشد. این نیازمند یک نگاشت از نام کاربری ownCloud به کاربرLDAP است. نام کاربری ساخته شده به UUID از کاربرLDAP نگاشته شده است. علاوه بر این DN پنهانی نیز بخوبی برای کاهش تعامل LDAP است، اما برای شناسایی مورد استفاده قرار نمی گیرد. اگر DN تغییر کند، تغییرات توسط ownCloud یافت خواهند شد. نام داخلی ownCloud در تمام ownCloud استفاده می شود. پاک سازی نگاشت ها در همه جا باقی مانده باشد. پیکربندی پاک سازی نگاشت ها حساس نیست، آن تحت تاثیر تمام پیکربندی های 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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/fa/user_webdavauth.po b/l10n/fa/user_webdavauth.po index fb3e2b908a94f83307c4517f0165901591dba858..f73b8487597cbb43790538a3649550602d245770 100644 --- a/l10n/fa/user_webdavauth.po +++ b/l10n/fa/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-17 02:19-0400\n" -"PO-Revision-Date: 2013-07-17 04:30+0000\n" -"Last-Translator: miki_mika1362 \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" "Language-Team: Persian (http://www.transifex.com/projects/p/owncloud/language/fa/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "اعتبار سنجی WebDAV " #: templates/settings.php:4 -msgid "URL: " -msgstr "آدرس:" +msgid "Address: " +msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud اعتبار کاربر را به این آدرس ارسال می کند. این افزونه پاسخ ها را بررسی می کند و کد وضعیت 401 و 403 HTTP را به عنوان اعتبار نامعتبر، و تمام پاسخ های دیگر را به عنوان اعتبار معتبر تفسیر می کند." +msgstr "" diff --git a/l10n/fi_FI/core.po b/l10n/fi_FI/core.po index 7a74ab0c6afb88f95dc44f02ecb52a3e00fe49f8..8a0396f34e6095826234329b93d92bc139e755be 100644 --- a/l10n/fi_FI/core.po +++ b/l10n/fi_FI/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -138,59 +138,59 @@ msgstr "marraskuu" msgid "December" msgstr "joulukuu" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Asetukset" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "sekuntia sitten" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minuutti 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:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} 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:718 -msgid "1 hour ago" -msgstr "1 tunti sitten" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} tuntia sitten" - -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "tänään" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "eilen" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "viime kuussa" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "kuukautta sitten" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "viime vuonna" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "vuotta sitten" @@ -226,8 +226,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Virhe" @@ -247,123 +247,123 @@ msgstr "Jaettu" msgid "Share" msgstr "Jaa" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Virhe jaettaessa" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Virhe jakoa peruttaessa" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Virhe oikeuksia muuttaessa" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Jaettu sinun ja ryhmän {group} kanssa käyttäjän {owner} toimesta" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Jaettu kanssasi käyttäjän {owner} toimesta" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Jaa" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Jaa linkillä" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Suojaa salasanalla" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Salasana" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Salli julkinen lähetys" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Lähetä linkki sähköpostitse" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Lähetä" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Aseta päättymispäivä" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Päättymispäivä" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Jaa sähköpostilla:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Henkilöitä ei löytynyt" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Jakaminen uudelleen ei ole salittu" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Peru jakaminen" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "voi muokata" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "Pääsyn hallinta" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "luo" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "päivitä" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "poista" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "jaa" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Salasanasuojattu" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Virhe purettaessa eräpäivää" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Virhe päättymispäivää asettaessa" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Lähetetään..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Sähköposti lähetetty" @@ -378,9 +378,10 @@ msgstr "Päivitys epäonnistui. Ilmoita ongelmasta 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 "" +msgstr "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." #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" @@ -401,7 +402,7 @@ msgstr "Pyyntö epäonnistui!
Olihan sähköpostiosoitteesi/käyttäjätunnuk msgid "You will receive a link to reset your password via Email." msgstr "Saat sähköpostitse linkin nollataksesi salasanan." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Käyttäjätunnus" @@ -462,11 +463,11 @@ msgstr "Ohje" msgid "Access forbidden" msgstr "Pääsy estetty" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Pilveä ei löydy" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +496,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "PHP-asennuksesi on haavoittuvainen NULL Byte -hyökkäykselle (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Päivitä PHP-asennuksesi käyttääksesi ownCloudia turvallisesti." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Päivitä PHP-asennus varmistaaksesi, että %s on turvallinen käyttää." #: templates/installation.php:32 msgid "" @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Datakansiosi ja tiedostosi ovat mitä luultavimmin muiden saavutettavissa internetistä, koska .htaccess-tiedosto ei toimi." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "Katso palvelimen asetuksien määrittämiseen liittyvät ohjeet dokumentaatiosta." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Lisätietoja palvelimen asetuksien määrittämisestä on saatavilla dokumentaatiosta." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Luo ylläpitäjän tunnus" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Lisäasetukset" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datakansio" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Muokkaa tietokantaa" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "käytetään" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Tietokannan käyttäjä" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Tietokannan salasana" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Tietokannan nimi" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tietokannan taulukkotila" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Tietokantapalvelin" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Viimeistele asennus" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s on saatavilla. Lue lisätietoja, miten päivitys asennetaan." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Kirjaudu ulos" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Lisää sovelluksia" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automaattinen sisäänkirjautuminen hylättiin!" @@ -608,7 +614,7 @@ msgstr "Kirjaudu sisään" msgid "Alternative Logins" msgstr "Vaihtoehtoiset kirjautumiset" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Jaa" msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Poista" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Nimeä uudelleen" @@ -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:457 -msgid "1 file uploading" -msgstr "" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -201,33 +195,29 @@ msgstr "Lataustasi valmistellaan. Tämä saattaa kestää hetken, jos tiedostot 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 "Nimi" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Koko" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Muokattu" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 kansio" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} kansiota" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n kansio" +msgstr[1] "%n 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 @@ -286,45 +276,49 @@ msgstr "Kansio" msgid "From link" msgstr "Linkistä" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Poistetut tiedostot" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Tunnuksellasi ei ole kirjoitusoikeuksia tänne." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Täällä ei ole mitään. Lähetä tänne jotakin!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lataa" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Peru jakaminen" -#: templates/index.php:107 +#: 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" -#: 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 "Lähetettäväksi valitsemasi tiedostot ylittävät palvelimen salliman tiedostokoon rajan." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Tiedostoja tarkistetaan, odota hetki." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Tämänhetkinen tutkinta" diff --git a/l10n/fi_FI/files_encryption.po b/l10n/fi_FI/files_encryption.po index 0f8f958a2d0ba78bf090352eaaf109988d0d5048..5aaf930afb3828f7758c93493eaa7a8b08b89fd9 100644 --- a/l10n/fi_FI/files_encryption.po +++ b/l10n/fi_FI/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/fi_FI/files_sharing.po b/l10n/fi_FI/files_sharing.po index 317486daa3fb719fa047999e1d0300417adc1002..6194c0899889d8bd950e8d9aa2a9ec1f28159ed1 100644 --- a/l10n/fi_FI/files_sharing.po +++ b/l10n/fi_FI/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "Salasana" msgid "Submit" msgstr "Lähetä" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Valitettavasti linkki ei vaikuta enää toimivan." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Mahdollisia syitä:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "kohde poistettiin" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "linkki vanheni" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "jakaminen on poistettu käytöstä" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Kysy lisätietoja henkilöltä, jolta sait linkin." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s jakoi kansion %s kanssasi" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s jakoi tiedoston %s kanssasi" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lataa" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Lähetä" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Peru lähetys" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ei esikatselua kohteelle" diff --git a/l10n/fi_FI/files_trashbin.po b/l10n/fi_FI/files_trashbin.po index 473a237948f9c4dbf3daf2d6a8fc97ff3876e63a..717af8af88c64322ae6a7b9c47f34ed149ab18ab 100644 --- a/l10n/fi_FI/files_trashbin.po +++ b/l10n/fi_FI/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jiri Grönroos , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,45 +28,45 @@ msgstr "Kohdetta %s ei voitu poistaa pysyvästi" msgid "Couldn't restore %s" msgstr "Kohteen %s palautus epäonnistui" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "suorita palautustoiminto" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Virhe" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "poista tiedosto pysyvästi" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Poista pysyvästi" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nimi" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Poistettu" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 kansio" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} kansiota" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 tiedosto" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} tiedostoa" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n kansio" +msgstr[1] "%n kansiota" + +#: 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" +msgstr "palautettu" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/fi_FI/files_versions.po b/l10n/fi_FI/files_versions.po index c93ead204dc95bb7344382ee8cd850002822ae38..1f30f6fe2a4ef1e97b28f75914cf3f69fd7cac9c 100644 --- a/l10n/fi_FI/files_versions.po +++ b/l10n/fi_FI/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Jiri Grönroos , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 06:00+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" @@ -17,41 +18,27 @@ msgstr "" "Language: fi_FI\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Palautus epäonnistui: %s" -#: history.php:40 -msgid "success" -msgstr "onnistui" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Tiedosto %s palautettiin versioon %s" - -#: history.php:49 -msgid "failure" -msgstr "epäonnistui" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Tiedoston %s palautus versioon %s epäonnistui" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versiot" -#: history.php:69 -msgid "No old versions available" -msgstr "Vanhoja versioita ei ole saatavilla" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Tiedoston {file} palautus versioon {timestamp} epäonnistui." -#: history.php:74 -msgid "No path specified" -msgstr "Polkua ei ole määritetty" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Lisää versioita..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versiot" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Ei muita versioita saatavilla" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Palauta tiedoston edellinen versio napsauttamalla palautuspainiketta" +#: js/versions.js:149 +msgid "Restore" +msgstr "Palauta" diff --git a/l10n/fi_FI/lib.po b/l10n/fi_FI/lib.po index ca512563c65e64f929cc18fc3d021fb0a38df304..c6d87b9c59e30840625ce5f09a92ac1b10c944c8 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+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,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "verkkopalvelut hallinnassasi" @@ -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:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Aiheuttaja:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/fi_FI/settings.po b/l10n/fi_FI/settings.po index 1a854bda4f09a77714fc522358dae51018ceee7e..4281890e9da9f85ff433cb52b141a29b4f62e845 100644 --- a/l10n/fi_FI/settings.po +++ b/l10n/fi_FI/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "Anna kelvollinen salasana" msgid "__language_name__" msgstr "_kielen_nimi_" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Turvallisuusvaroitus" -#: templates/admin.php:20 +#: 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 "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Lue tarkasti asennusohjeet." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Moduuli 'fileinfo' puuttuu" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Internet-yhteys ei toimi" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Jakaminen" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Käytä jakamisen ohjelmointirajapintaa" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Salli sovellusten käyttää jakamisen ohjelmointirajapintaa" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Salli linkit" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Salli käyttäjien jakaa kohteita käyttäen linkkejä" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Salli uudelleenjakaminen" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Mahdollistaa käyttäjien jakavan uudelleen heidän kanssaan jaettuja kohteita" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Salli käyttäjien jakaa kenen tahansa kanssa" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Tietoturva" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Pakota HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Pakottaa salaamaan ownCloudiin kohdistuvat yhteydet." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Loki" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Lokitaso" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Enemmän" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Vähemmän" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versio" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Käytössäsi on %s/%s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Salasana" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Salasanasi vaihdettiin" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Salasanaasi ei voitu vaihtaa" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Nykyinen salasana" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Uusi salasana" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Vaihda salasana" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Näyttönimi" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Sähköpostiosoite" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Sähköpostiosoitteesi" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Anna sähköpostiosoitteesi, jotta unohdettu salasana on mahdollista palauttaa" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Kieli" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Auta kääntämisessä" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ msgstr "Vahvista poisto" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "Poista pääpalvelin käytöstä" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Poista käytöstä SSL-varmenteen vahvistus" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Jos yhteys toimii vain tällä valinnalla, siirrä LDAP-palvelimen SSL-varmenne ownCloud-palvelimellesi." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Käyttäjän näytettävän nimen kenttä" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP-attribuutti, jota käytetään käyttäjän ownCloud-käyttäjänimenä " +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Ryhmän \"näytettävä nimi\"-kenttä" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP-attribuutti, jota käytetään luomaan ryhmän ownCloud-nimi" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/fi_FI/user_webdavauth.po b/l10n/fi_FI/user_webdavauth.po index f38e5770f385e2b7a9f58b6baa13c60967e07a33..ca7c9cc8f3ba6e5cdcbe4225931450ba1f0fca61 100644 --- a/l10n/fi_FI/user_webdavauth.po +++ b/l10n/fi_FI/user_webdavauth.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-05 07:52-0400\n" +"PO-Revision-Date: 2013-08-05 11:20+0000\n" +"Last-Translator: Jiri Grönroos \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/owncloud/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV-todennus" #: templates/settings.php:4 -msgid "URL: " -msgstr "" +msgid "Address: " +msgstr "Osoite:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "Käyttäjätiedot lähetetään tähän osoitteeseen. Liitännäinen tarkistaa vastauksen, ja tulkitsee HTTP-tilakoodit 401 ja 403 vääriksi käyttäjätiedoiksi. Kaikki muut vastaukset tulkitaan kelvollisiksi käyttäjätiedoiksi." diff --git a/l10n/fr/core.po b/l10n/fr/core.po index cafe21822fc889c5d3086f7220d98beda66cd6f7..8246c9644de68b043df143319e6de4bc7e33aaf5 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Paramètres" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "il y a quelques secondes" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "il y a une minute" +#: 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 "il y a {minutes} minutes" +#: 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 "Il y a une heure" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "Il y a {hours} heures" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "aujourd'hui" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "hier" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "le mois dernier" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "il y a plusieurs mois" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "l'année dernière" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "il y a plusieurs années" @@ -230,8 +230,8 @@ msgstr "Le type d'objet n'est pas spécifié." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erreur" @@ -251,123 +251,123 @@ msgstr "Partagé" msgid "Share" msgstr "Partager" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erreur lors de la mise en partage" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Erreur lors de l'annulation du partage" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Erreur lors du changement des permissions" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Partagé par {owner} avec vous et le groupe {group}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Partagé avec vous par {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Partager avec" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Partager via lien" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Protéger par un mot de passe" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Mot de passe" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Autoriser l'upload par les utilisateurs non enregistrés" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Envoyez le lien par email" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Envoyer" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Spécifier la date d'expiration" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Date d'expiration" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Partager via e-mail :" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Aucun utilisateur trouvé" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Le repartage n'est pas autorisé" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Partagé dans {item} avec {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Ne plus partager" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "édition autorisée" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "contrôle des accès" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "créer" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "mettre à jour" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "supprimer" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "partager" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protégé par un mot de passe" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Une erreur est survenue pendant la suppression de la date d'expiration" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erreur lors de la spécification de la date d'expiration" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "En cours d'envoi ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email envoyé" @@ -382,9 +382,10 @@ msgstr "La mise à jour a échoué. Veuillez signaler ce problème à la Avez-vous vérifié vos courriel/nom d'utilisateu msgid "You will receive a link to reset your password via Email." msgstr "Vous allez recevoir un e-mail contenant un lien pour réinitialiser votre mot de passe." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nom d'utilisateur" @@ -466,11 +467,11 @@ msgstr "Aide" msgid "Access forbidden" msgstr "Accès interdit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Introuvable" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -499,8 +500,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Votre version de PHP est vulnérable à l'attaque par caractère NULL (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Veuillez mettre à jour votre installation PHP pour utiliser ownCloud de façon sécurisée." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -520,68 +522,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Votre répertoire data est certainement accessible depuis l'internet car le fichier .htaccess ne semble pas fonctionner" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pour les informations de configuration de votre serveur, veuillez lire la documentation." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Créer un compte administrateur" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avancé" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Répertoire des données" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configurer la base de données" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "sera utilisé" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Utilisateur pour la base de données" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Mot de passe de la base de données" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nom de la base de données" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tablespaces de la base de données" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Serveur de la base de données" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Terminer l'installation" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s est disponible. Obtenez plus d'informations sur la façon de mettre à jour." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Se déconnecter" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Connexion automatique rejetée !" @@ -612,7 +618,7 @@ msgstr "Connexion" msgid "Alternative Logins" msgstr "Logins alternatifs" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -123,11 +123,7 @@ msgstr "Partager" msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Supprimer" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renommer" @@ -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:457 -msgid "1 file uploading" -msgstr "1 fichier en cours d'envoi" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "fichiers en cours d'envoi" @@ -203,33 +197,29 @@ msgstr "Votre téléchargement est cours de préparation. Ceci peut nécessiter msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nom de dossier invalide. L'utilisation du mot 'Shared' est réservée à Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Taille" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifié" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dossier" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dossiers" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fichier" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -288,45 +278,49 @@ msgstr "Dossier" msgid "From link" msgstr "Depuis le lien" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Fichiers supprimés" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Vous n'avez pas le droit d'écriture ici." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Il n'y a rien ici ! Envoyez donc quelque chose :)" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Télécharger" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Ne plus partager" -#: templates/index.php:107 +#: 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" -#: 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 "Les fichiers que vous essayez d'envoyer dépassent la taille maximale permise par ce serveur." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Les fichiers sont en cours d'analyse, veuillez patienter." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Analyse en cours" diff --git a/l10n/fr/files_encryption.po b/l10n/fr/files_encryption.po index 0a8751ee9cee33946649012b54ac20aa0c2677de..a3cea1154a6d4372a008301a946eea8dfbd0fae0 100644 --- a/l10n/fr/files_encryption.po +++ b/l10n/fr/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-07-11 02:16+0200\n" -"PO-Revision-Date: 2013-07-10 18:30+0000\n" -"Last-Translator: Adalberto Rodrigues \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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -71,10 +71,14 @@ msgstr "Système minimum requis non respecté." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Veuillez vous assurer qu'une version de PHP 5.3.3 ou plus récente est installée et que l'extension OpenSSL de PHP est activée et configurée correctement. En attendant, l'application de cryptage a été désactivée." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/fr/files_sharing.po b/l10n/fr/files_sharing.po index 3991b7e5236f9fc656fcc0fdb38dd8b7292993ce..67c79c9ec353f04422cfcdad76ca48e0fab4b9f5 100644 --- a/l10n/fr/files_sharing.po +++ b/l10n/fr/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: square \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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Mot de passe" msgid "Submit" msgstr "Envoyer" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partagé le répertoire %s avec vous" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partagé le fichier %s avec vous" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Télécharger" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Envoyer" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Annuler l'envoi" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Pas d'aperçu disponible pour" diff --git a/l10n/fr/files_trashbin.po b/l10n/fr/files_trashbin.po index 5aa2e8838de4e063f596f2f4a219293a293e149c..464c518b8a506ee4312ee18675d0f142b3d14b44 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "Impossible d'effacer %s de façon permanente" msgid "Couldn't restore %s" msgstr "Impossible de restaurer %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "effectuer l'opération de restauration" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Erreur" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "effacer définitivement le fichier" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Supprimer de façon définitive" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Effacé" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 dossier" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} dossiers" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fichier" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} fichiers" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/fr/files_versions.po b/l10n/fr/files_versions.po index dd91318cfb4c79af70b3dc306e50f1edfb1f1c46..79799c762b91f912fa86c48cf9700a9040e8e91f 100644 --- a/l10n/fr/files_versions.po +++ b/l10n/fr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Impossible de restaurer %s" -#: history.php:40 -msgid "success" -msgstr "succès" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Le fichier %s a été restauré dans sa version %s" - -#: history.php:49 -msgid "failure" -msgstr "échec" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Le fichier %s ne peut être restauré dans sa version %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versions" -#: history.php:69 -msgid "No old versions available" -msgstr "Aucune ancienne version n'est disponible" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Aucun chemin spécifié" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versions" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Restaurez un fichier dans une version antérieure en cliquant sur son bouton de restauration" +#: js/versions.js:149 +msgid "Restore" +msgstr "Restaurer" diff --git a/l10n/fr/lib.po b/l10n/fr/lib.po index dcb8bc19a2b8c6952f5f410b60a8b382e900ad57..0658f16d4351897b8af07671039112a175f38b3a 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-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: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "services web sous votre contrôle" @@ -211,54 +207,50 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/fr/settings.po b/l10n/fr/settings.po index d995fe707313b893dbdf661894bdf58fb644296f..168a33c9ec9fe6f46202209d375239f952c1a93b 100644 --- a/l10n/fr/settings.po +++ b/l10n/fr/settings.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" @@ -173,175 +173,173 @@ msgstr "Un mot de passe valide doit être saisi" msgid "__language_name__" msgstr "Français" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Avertissement de sécurité" -#: templates/admin.php:20 +#: 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 "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Avertissement, problème de configuration" -#: templates/admin.php:34 +#: 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 "Votre serveur web, n'est pas correctement configuré pour permettre la synchronisation des fichiers, car l'interface WebDav ne fonctionne pas comme il faut." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Veuillez vous référer au guide d'installation." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' manquant" -#: templates/admin.php:49 +#: 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 "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Localisation non fonctionnelle" -#: templates/admin.php:65 +#: 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 "Ce serveur ownCloud ne peut pas ajuster la localisation du système en %s. Cela signifie qu'il pourra y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est vivement recommandé d'installer les paquets requis pour le support de %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "La connexion internet ne fonctionne pas" -#: templates/admin.php:80 +#: 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 "Ce serveur ownCloud ne peut pas se connecter à internet. Cela signifie que certaines fonctionnalités, telles que l'utilisation de supports de stockage distants, les notifications de mises à jour, ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne marcheront pas non plus. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez utiliser toutes les fonctionnalités offertes par ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Exécute une tâche à chaque chargement de page" -#: templates/admin.php:113 +#: 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 "cron.php est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Partage" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Activer l'API de partage" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Autoriser les applications à utiliser l'API de partage" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Autoriser les liens" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Autoriser les utilisateurs à partager des éléments publiquement à l'aide de liens" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Autoriser le repartage" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Autoriser les utilisateurs à partager des éléments qui ont été partagés avec eux" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Autoriser les utilisateurs à partager avec tout le monde" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Sécurité" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forcer HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forcer les clients à se connecter à Owncloud via une connexion chiffrée." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Merci de vous connecter à cette instance Owncloud en HTTPS pour activer ou désactiver SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Niveau de log" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Plus" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Moins" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Version" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Vous avez utilisé %s des %s disponibles" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mot de passe" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Votre mot de passe a été changé" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Impossible de changer votre mot de passe" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Mot de passe actuel" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nouveau mot de passe" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Changer de mot de passe" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nom affiché" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Adresse mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Votre adresse e-mail" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Entrez votre adresse e-mail pour permettre la réinitialisation du mot de passe" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Langue" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Aidez à traduire" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,9 +89,9 @@ msgstr "Confirmer la suppression" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Avertissement: Les applications user_ldap et user_webdavauth sont incompatibles. Des disfonctionnements peuvent survenir. Contactez votre administrateur système pour qu'il désactive l'une d'elles." +msgstr "" #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "Désactiver le serveur principal" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Lorsqu'activé, ownCloud ne se connectera qu'au serveur répliqué." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Désactiver la validation du certificat SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Si la connexion ne fonctionne qu'avec cette option, importez le certificat SSL du serveur LDAP dans le serveur ownCloud." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "Champ \"nom d'affichage\" de l'utilisateur" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "L'attribut LDAP utilisé pour générer les noms d'utilisateurs d'ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Champ \"nom d'affichage\" du groupe" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "L'attribut LDAP utilisé pour générer les noms de groupes d'ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "Par défaut le nom d'utilisateur interne sera créé à partir de l'attribut UUID. Ceci permet d'assurer que le nom d'utilisateur est unique et que les caractères ne nécessitent pas de convertion. Le nom d'utilisateur interne doit contenir seulement les caractères suivants: [ a-zA-Z0-9_.@- ]. Les autres caractères sont remplacés par leur correspondance ASCII ou simplement omis. En cas de collision le nombre est incrémenté/décrémenté. Le nom d'utilisateur interne est utilisé pour identifier l'utilisateur au sein du système. C'est aussi le nom par défaut du répertoire utilisateur dans ownCloud. C'est aussi le port d'URLs distants, par exemple pour tous les services *DAV. Le comportement par défaut peut être modifié à l'aide de ce paramètre. Pour obtenir un comportement similaire aux versions précédentes à ownCloud 5, saisir le nom d'utilisateur à afficher dans le champ suivant. Laissez à blanc pour le comportement par défaut. Les modifications prendront effet seulement pour les nouveaux (ajoutés) utilisateurs LDAP." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "Surcharger la détection d'UUID" #: 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 " +"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 behaviour. " +" 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 "Par défaut, ownCloud détecte automatiquement l'attribut UUID. L'attribut UUID est utilisé pour identifier les utilisateurs et groupes de façon prédictive. De plus, le nom d'utilisateur interne sera créé basé sur l'UUID s'il n'est pas explicité ci-dessus. Vous pouvez modifier ce comportement et définir l'attribut de votre choix. Vous devez alors vous assurer que l'attribut de votre choix peut être récupéré pour les utilisateurs ainsi que pour les groupes et qu'il soit unique. Laisser à blanc pour le comportement par défaut. Les modifications seront effectives uniquement pour les nouveaux (ajoutés) utilisateurs et groupes LDAP." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "Association Nom d'utilisateur-Utilisateur LDAP" #: 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 "ownCloud utilise les noms d'utilisateurs pour le stockage et l'assignation de (meta) data. Pour identifier et reconnaitre précisément les utilisateurs, chaque utilisateur aura un nom interne spécifique. Cela requiert l'association d'un nom d'utilisateur ownCloud à un nom d'utilisateur LDAP. Le nom d'utilisateur créé est associé à l'attribut UUID de l'utilisateur LDAP. Par ailleurs le DN est mémorisé en cache pour limiter les interactions LDAP mais il n'est pas utilisé pour l'identification. ownCloud détectera le changement de DN, le cas échéant. Seul le nom interne à ownCloud est utilisé au sein du produit. Supprimer les associations créera des orphelins et l'action affectera toutes les configurations LDAP. NE JAMAIS SUPPRIMER LES ASSOCIATIONS EN ENVIRONNEMENT DE PRODUCTION. Le faire seulement sur les environnements de tests et d'expérimentation." +"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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/fr/user_webdavauth.po b/l10n/fr/user_webdavauth.po index 592ae748bc3cfc8ea400457e0a11fbb693f3b12c..c4a85dce02d633c714b9b663aba6abcf42838438 100644 --- a/l10n/fr/user_webdavauth.po +++ b/l10n/fr/user_webdavauth.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-17 02:02+0200\n" -"PO-Revision-Date: 2013-06-16 18:40+0000\n" -"Last-Translator: Adalberto Rodrigues \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" "Language-Team: French (http://www.transifex.com/projects/p/owncloud/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,12 +28,12 @@ msgid "WebDAV Authentication" msgstr "Authentification WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud enverra les informations de connexion à cette adresse. Ce module complémentaire analyse le code réponse HTTP et considère tout code différent des codes 401 et 403 comme associé à une authentification correcte." +msgstr "" diff --git a/l10n/gl/core.po b/l10n/gl/core.po index 8c5baec656cc4209d505846e8da8f58827ad7fa2..465eb303ab174b66d25e17d5e102fb3d1ad0a10a 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Axustes" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "hai 1 minuto" +#: 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:717 -msgid "{minutes} minutes ago" -msgstr "hai {minutes} 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:718 -msgid "1 hour ago" -msgstr "Vai 1 hora" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "hai {hours} horas" - -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "hoxe" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "onte" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "último mes" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "último ano" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "anos atrás" @@ -226,8 +226,8 @@ msgstr "Non se especificou o tipo de obxecto." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -247,123 +247,123 @@ msgstr "Compartir" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Produciuse un erro ao compartir" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Produciuse un erro ao deixar de compartir" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Produciuse un erro ao cambiar os permisos" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartido con vostede e co grupo {group} por {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Compartido con vostede por {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Compartir con" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Compartir coa ligazón" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Protexido con contrasinais" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Contrasinal" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Permitir o envío público" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Enviar ligazón por correo" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Enviar" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Definir a data de caducidade" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data de caducidade" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Compartir por correo:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Non se atopou xente" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Non se permite volver a compartir" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Compartido en {item} con {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Deixar de compartir" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "pode editar" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "control de acceso" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "crear" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "actualizar" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "eliminar" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "compartir" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protexido con contrasinal" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Produciuse un erro ao retirar a data de caducidade" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Produciuse un erro ao definir a data de caducidade" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Correo enviado" @@ -378,9 +378,10 @@ msgstr "A actualización non foi satisfactoria, informe deste problema á Asegúrese de que o seu enderezo msgid "You will receive a link to reset your password via Email." msgstr "Recibirá unha ligazón por correo para restabelecer o contrasinal" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nome de usuario" @@ -462,11 +463,11 @@ msgstr "Axuda" msgid "Access forbidden" msgstr "Acceso denegado" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nube non atopada" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +496,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "A súa versión de PHP é vulnerábel a un ataque de byte nulo (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Actualice a instalación de PHP para empregar ownCloud de xeito seguro." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Actualice a instalación de PHP para empregar %s de xeito seguro." #: templates/installation.php:32 msgid "" @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "O seu directorio de datos e os ficheiros probabelmente sexan accesíbeis desde a Internet xa que o ficheiro .htaccess non está a traballar." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para obter información sobre como como configurar axeitadamente o seu servidor, vexa a documentación." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Para obter información sobre como como configurar axeitadamente o seu servidor, vexa a documentación." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crear unha contra de administrador" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avanzado" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Cartafol de datos" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configurar a base de datos" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "vai ser utilizado" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Usuario da base de datos" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Contrasinal da base de datos" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nome da base de datos" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Táboa de espazos da base de datos" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Servidor da base de datos" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Rematar a configuración" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está dispoñíbel. Obteña máis información sobre como actualizar." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Desconectar" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Máis aplicativos" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Rexeitouse a entrada automática" @@ -608,7 +614,7 @@ msgstr "Conectar" msgid "Alternative Logins" msgstr "Accesos alternativos" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Eliminar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renomear" @@ -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:457 -msgid "1 file uploading" -msgstr "Enviándose 1 ficheiro" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "ficheiros enviándose" @@ -201,33 +195,29 @@ msgstr "Está a prepararse a súa descarga. Isto pode levar bastante tempo se os msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de cartafol incorrecto. O uso de «Shared» está reservado por Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamaño" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 cartafol" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} cartafoles" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ficheiro" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n cartafol" +msgstr[1] "%n cartafoles" -#: 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 @@ -286,45 +276,49 @@ msgstr "Cartafol" msgid "From link" msgstr "Desde a ligazón" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Non ten permisos para escribir aquí." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Aquí non hai nada. Envíe algo." -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descargar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixar de compartir" -#: templates/index.php:107 +#: 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" -#: 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 "Os ficheiros que tenta enviar exceden do tamaño máximo permitido neste servidor" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Estanse analizando os ficheiros. Agarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/gl/files_encryption.po b/l10n/gl/files_encryption.po index a8f83b07bb48338b344bd883f7e905e3d32538a4..1395e13a4f35065d7e9d2d92e7e7d42c1b067851 100644 --- a/l10n/gl/files_encryption.po +++ b/l10n/gl/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 09:11+0000\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" @@ -70,10 +70,14 @@ msgstr "Non se cumpren os requisitos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Asegúrese de que está instalado o PHP 5.3.3 ou posterior e de que a extensión OpenSSL PHP estea activada e configurada correctamente. Polo de agora foi desactivado o aplicativo de cifrado." +"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 "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:" +msgstr "Os seguintes usuarios non teñen configuración para o cifrado:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/gl/files_sharing.po b/l10n/gl/files_sharing.po index f2c53603c68c430e4a93d755a4ba6e48913b8918..13e9cefab473dd2d6893272f1514b32987cf39f7 100644 --- a/l10n/gl/files_sharing.po +++ b/l10n/gl/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "Contrasinal" msgid "Submit" msgstr "Enviar" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Semella que esta ligazón non funciona." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "As razóns poderían ser:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "o elemento foi retirado" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "a ligazón caducou" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "foi desactivada a compartición" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Para obter máis información, pregúntelle á persoa que lle enviou a ligazón." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartiu o cartafol %s con vostede" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartiu o ficheiro %s con vostede" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Enviar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar o envío" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Sen vista previa dispoñíbel para" diff --git a/l10n/gl/files_trashbin.po b/l10n/gl/files_trashbin.po index 2d3c758e432a2989a68057546f13059984aa3808..ad7adc59d70554573a6b9b53607da427c8e77cd9 100644 --- a/l10n/gl/files_trashbin.po +++ b/l10n/gl/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: 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" @@ -27,45 +28,45 @@ msgstr "Non foi posíbel eliminar %s permanente" msgid "Couldn't restore %s" msgstr "Non foi posíbel restaurar %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "realizar a operación de restauración" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Erro" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "eliminar o ficheiro permanentemente" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Eliminado" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 cartafol" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} cartafoles" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n cartafol" +msgstr[1] "%n cartafoles" + +#: 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" +msgstr "restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/gl/files_versions.po b/l10n/gl/files_versions.po index be763534a5e07997e2f4ee918adbb45ac550c79f..567f404673988027f0e2df838d4fe46d72574cad 100644 --- a/l10n/gl/files_versions.po +++ b/l10n/gl/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mbouzada , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 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" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +18,27 @@ msgstr "" "Language: gl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Non foi posíbel reverter: %s" -#: history.php:40 -msgid "success" -msgstr "feito" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "O ficheiro %s foi revertido á versión %s" - -#: history.php:49 -msgid "failure" -msgstr "produciuse un fallo" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Non foi posíbel reverter o ficheiro %s á versión %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versións" -#: history.php:69 -msgid "No old versions available" -msgstr "Non hai versións antigas dispoñíbeis" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Non foi posíbel reverter {file} á revisión {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Non foi indicada a ruta" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Máis versións..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versións" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Non hai outras versións dispoñíbeis" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverta un ficheiro a unha versión anterior premendo no botón reversión" +#: js/versions.js:149 +msgid "Restore" +msgstr "Restablecer" diff --git a/l10n/gl/lib.po b/l10n/gl/lib.po index d91186c5b8e7663c53dbb6ff31ab88aeee630afb..8f5d1c95fa9d4227dfc08c44ce85d3bbdf9666d2 100644 --- a/l10n/gl/lib.po +++ b/l10n/gl/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+0000\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" @@ -35,26 +35,22 @@ 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 "" +msgstr "Non foi posíbel anovar «%s»." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "servizos web baixo o seu control" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "non foi posíbel abrir «%s»" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Os ficheiros seleccionados son demasiado grandes como para xerar un fich msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Causado por:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/gl/settings.po b/l10n/gl/settings.po index d82cc9352e41fcacd251d6eb158d0f554d36fc56..35d5432fae3777f0d2da05aaeb57f2c8f47f613c 100644 --- a/l10n/gl/settings.po +++ b/l10n/gl/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 17:20+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" "Last-Translator: mbouzada \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "Debe fornecer un contrasinal" msgid "__language_name__" msgstr "Galego" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Aviso de seguranza" -#: templates/admin.php:20 +#: 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 "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerímoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web." +"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." +msgstr "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Configurar os avisos" -#: templates/admin.php:34 +#: 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 "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." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Volva comprobar as guías de instalación" +msgid "Please double check the installation guides." +msgstr "Volva comprobar as guías de instalación" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Non se atopou o módulo «fileinfo»" -#: templates/admin.php:49 +#: 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 "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "A configuración rexional non funciona" -#: templates/admin.php:65 +#: 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 "Este servidor ownCloud non pode estabelecer a configuración rexional do sistema a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que inste os paquetes necesarios no sistema para aceptar o %s." +"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 "A configuración rexional do sistema non pode estabelecerse a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que instale os paquetes necesarios no sistema para aceptar o %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "A conexión á Internet non funciona" -#: templates/admin.php:80 +#: 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 "Este servidor ownCloud non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades de ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Executar unha tarefa con cada páxina cargada" -#: templates/admin.php:113 +#: 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 "cron.php está rexistrado nun servizo de WebCron. Chame á página cron.php na raíz ownCloud unha vez por minuto a través de HTTP." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php unha vez por minuto a través de HTTP." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Use o servizo de sistema cron. Chame ao ficheiro cron.php no cartafol owncloud a través dun sistema de cronjob unha vez por minuto." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Use o servizo de sistema cron para chamar ao ficheiro cron.php unha vez por minuto." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Compartindo" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Activar o API para compartir" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Permitir que os aplicativos empreguen o API para compartir" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Permitir ligazóns" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Permitir que os usuarios compartan elementos ao público con ligazóns" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "Permitir os envíos públicos" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que os usuarios lle permitan a outros enviar aos seus cartafoles compartidos publicamente" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Permitir compartir" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Permitir que os usuarios compartan de novo os elementos compartidos con eles" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Permitir que os usuarios compartan con calquera" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os usuarios compartan só cos usuarios dos seus grupos" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Seguranza" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forzar HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forzar que os clientes se conecten a ownCloud empregando unha conexión cifrada" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Forzar que os clientes se conecten a %s empregando unha conexión cifrada." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Conectese a esta instancia ownCloud empregando HTTPS para activar ou desactivar o forzado de SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Rexistro" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel de rexistro" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Máis" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versión" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "Ten en uso %s do total dispoñíbel de %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasinal" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "O seu contrasinal foi cambiado" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Non é posíbel cambiar o seu contrasinal" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Contrasinal actual" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Novo contrasinal" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Cambiar o contrasinal" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Amosar o nome" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Correo" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "O seu enderezo de correo" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Escriba un enderezo de correo para activar o contrasinal de recuperación" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Idioma" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Axude na tradución" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Galician (http://www.transifex.com/projects/p/owncloud/language/gl/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ msgstr "Confirmar a eliminación" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth son incompatíbeis. Pode acontecer un comportamento estraño. Consulte co administrador do sistema para desactivar un deles." @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "Desactivar o servidor principal" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Cando está activado, ownCloud só se conectará ao servidor de réplica." +msgid "Only connect to the replica server." +msgstr "Conectar só co servidor de réplica." #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Desactiva a validación do certificado SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Se a conexión só funciona con esta opción importe o certificado SSL do servidor LDAP no seu servidor ownCloud." +"certificate in your %s server." +msgstr "Se a conexión só funciona con esta opción importa o certificado SSL do servidor LDAP no teu servidor %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "Campo de mostra do nome de usuario" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "O atributo LDAP a empregar para xerar o nome de usuario de ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "O atributo LDAP a empregar para xerar o nome de usuario para amosar." #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Campo de mostra do nome de grupo" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "O atributo LDAP úsase para xerar os nomes dos grupos de ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "O atributo LDAP úsase para xerar os nomes dos grupos que amosar." #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "De xeito predeterminado, o nome de usuario interno crease a partires do atributo UUID. Asegurase de que o nome de usuario é único e de non ter que converter os caracteres. O nome de usuario interno ten a limitación de que só están permitidos estes caracteres: [ a-zA-Z0-9_.@- ]. Os outros caracteres substitúense pola súa correspondencia ASCII ou simplemente omítense. Nas colisións engadirase/incrementarase un número. O nome de usuario interno utilizase para identificar a un usuario interno. É tamén o nome predeterminado do cartafol persoal do usuario en ownCloud. Tamén é un porto de URL remoto, por exemplo, para todos os servizos *DAV. Con este axuste, o comportamento predeterminado pode ser sobrescrito. Para lograr un comportamento semellante ao anterior ownCloud 5 introduza o atributo do nome para amosar do usuario no seguinte campo. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." +"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." +msgstr "De xeito predeterminado, o nome de usuario interno crease a partires do atributo UUID. Asegurase de que o nome de usuario é único e de non ter que converter os caracteres. O nome de usuario interno ten a limitación de que só están permitidos estes caracteres: [ a-zA-Z0-9_.@- ]. Os outros caracteres substitúense pola súa correspondencia ASCII ou simplemente omítense. Nas colisións engadirase/incrementarase un número. O nome de usuario interno utilizase para identificar a un usuario interno. É tamén o nome predeterminado do cartafol persoal do usuario. Tamén é parte dun URL remoto, por exemplo, para todos os servizos *DAV. Con este axuste, o comportamento predeterminado pode ser sobrescrito. Para lograr un comportamento semellante ao anterior ownCloud 5 introduza o atributo do nome para amosar do usuario no seguinte campo. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "Ignorar a detección do UUID" #: 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 " +"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 behaviour. " +" 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 "De xeito predeterminado, ownCloud detecta automaticamente o atributo UUID. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." +msgstr "De xeito predeterminado, o atributo UUID é detectado automaticamente. O atributo UUID utilizase para identificar, sen dúbida, aos usuarios e grupos LDAP. Ademais, crearase o usuario interno baseado no UUID, se non se especifica anteriormente o contrario. Pode anular a configuración e pasar un atributo da súa escolla. Vostede debe asegurarse de que o atributo da súa escolla pode ser recuperado polos usuarios e grupos e de que é único. Déixeo baleiro para o comportamento predeterminado. Os cambios terán efecto só nas novas asignacións (engadidos) de usuarios de LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "Asignación do usuario ao «nome de usuario LDAP»" #: 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 "ownCloud utiliza os nomes de usuario para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais." +"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." +msgstr "Os nomes de usuario empreganse para almacenar e asignar (meta) datos. Coa fin de identificar con precisión e recoñecer aos usuarios, cada usuario LDAP terá un nome de usuario interno. Isto require unha asignación de ownCloud nome de usuario a usuario LDAP. O nome de usuario creado asignase ao UUID do usuario LDAP. Ademais o DN almacenase na caché, para así reducir a interacción do LDAP, mais non se utiliza para a identificación. Se o DN cambia, os cambios poden ser atopados polo ownCloud. O nome interno no ownCloud utilizase en todo o ownCloud. A limpeza das asignacións deixará rastros en todas partes. A limpeza das asignacións non é sensíbel á configuración, afecta a todas as configuracións de LDAP! Non limpar nunca as asignacións nun entorno de produción. Limpar as asignacións só en fases de proba ou experimentais." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/gl/user_webdavauth.po b/l10n/gl/user_webdavauth.po index d92c173664b45293059c360edf976dd593539322..1619f5c3fbc266ce123c6d5272a9bdd5f5f0e883 100644 --- a/l10n/gl/user_webdavauth.po +++ b/l10n/gl/user_webdavauth.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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 09:10+0000\n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 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" @@ -26,12 +26,12 @@ msgid "WebDAV Authentication" msgstr "Autenticación WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "Enderezo:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud enviará as credenciais do usuario a este URL. Este engadido comproba a resposta e interpretará os códigos de estado HTTP 401 e 403 como credenciais incorrectas, e todas as outras respostas como credenciais correctas." +msgstr "As credenciais do usuario serán enviadas a este enderezo. Este engadido comproba a resposta e interpretará os códigos de estado 401 e 403 como credenciais incorrectas, e todas as outras respostas como credenciais correctas." diff --git a/l10n/he/core.po b/l10n/he/core.po index d213b053b2184e8f5ef3c75a9d14fb4e47f5d2d8..44845c5b9e7206ffd761b7174f0e7cc1ed2298eb 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "לפני {minutes} דקות" +#: 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 "לפני {hours} שעות" - -#: 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 "לפני {days} ימים" +#: 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 "לפני {months} חודשים" +#: 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,8 +226,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "שגיאה" @@ -247,123 +247,123 @@ msgstr "שותף" msgid "Share" msgstr "שתף" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "שגיאה במהלך השיתוף" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "שגיאה במהלך ביטול השיתוף" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "שגיאה במהלך שינוי ההגדרות" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "שותף אתך ועם הקבוצה {group} שבבעלות {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "שותף אתך על ידי {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "שיתוף עם" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "שיתוף עם קישור" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "הגנה בססמה" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "סיסמא" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "שליחת קישור בדוא״ל למשתמש" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "שליחה" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "הגדרת תאריך תפוגה" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "תאריך התפוגה" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "שיתוף באמצעות דוא״ל:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "לא נמצאו אנשים" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "אסור לעשות שיתוף מחדש" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "שותף תחת {item} עם {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "הסר שיתוף" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "ניתן לערוך" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "בקרת גישה" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "יצירה" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "עדכון" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "מחיקה" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "שיתוף" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "מוגן בססמה" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "אירעה שגיאה בביטול תאריך התפוגה" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "אירעה שגיאה בעת הגדרת תאריך התפוגה" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "מתבצעת שליחה ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -401,7 +402,7 @@ msgstr "הבקשה נכשלה!
האם כתובת הדוא״ל/שם המשתמ msgid "You will receive a link to reset your password via Email." msgstr "יישלח לתיבת הדוא״ל שלך קישור לאיפוס הססמה." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "שם משתמש" @@ -462,11 +463,11 @@ msgstr "עזרה" msgid "Access forbidden" msgstr "הגישה נחסמה" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ענן לא נמצא" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +496,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "גרסת ה־PHP פגיעה בפני התקפת בית NULL/ריק (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "נא לעדכן את התקנת ה־PHP שלך כדי להשתמש ב־PHP בבטחה." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "תיקיית וקבצי המידע שלך כנראה נגישים מהאינטרנט מכיוון שקובץ ה.htaccess לא עובד." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "לקבלת מידע להגדרה נכונה של השרת שלך, ראה את התיעוד." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "יצירת חשבון מנהל" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "מתקדם" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "תיקיית נתונים" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "ינוצלו" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "שם משתמש במסד הנתונים" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "ססמת מסד הנתונים" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "שם מסד הנתונים" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "מרחב הכתובות של מסד הנתונים" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "שרת בסיס נתונים" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "סיום התקנה" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s זמינה להורדה. ניתן ללחוץ כדי לקבל מידע נוסף כיצד לעדכן." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "התנתקות" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "בקשת הכניסה האוטומטית נדחתה!" @@ -608,7 +614,7 @@ msgstr "כניסה" msgid "Alternative Logins" msgstr "כניסות אלטרנטיביות" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,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 "שינוי שם" @@ -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:457 -msgid "1 file uploading" -msgstr "קובץ אחד נשלח" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "קבצים בהעלאה" @@ -201,33 +195,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:765 -msgid "{count} folders" -msgstr "{count} תיקיות" - -#: js/files.js:773 -msgid "1 file" -msgstr "קובץ אחד" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +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 @@ -286,45 +276,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/he/files_encryption.po b/l10n/he/files_encryption.po index 8b805ef221a9969f9dbec9f6736279a3a7c9a7cf..5e2a2f39dbbd758bf00b1c51c89c05574fd1f1de 100644 --- a/l10n/he/files_encryption.po +++ b/l10n/he/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/he/files_sharing.po b/l10n/he/files_sharing.po index ed15a0077f5636c616c5750536a170e4a4b87637..9ce5f7cc91e8ed070bb68c79e7ace7e3c0dae263 100644 --- a/l10n/he/files_sharing.po +++ b/l10n/he/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "סיסמא" msgid "Submit" msgstr "שליחה" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s שיתף עמך את התיקייה %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s שיתף עמך את הקובץ %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "הורדה" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "העלאה" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ביטול ההעלאה" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "אין תצוגה מקדימה זמינה עבור" diff --git a/l10n/he/files_trashbin.po b/l10n/he/files_trashbin.po index 5757ded1d0c00050f50fa5d6a4926eb5007d3a7a..b938a87bca02c54801355c4f4de3a67af0211061 100644 --- a/l10n/he/files_trashbin.po +++ b/l10n/he/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Yaron Shahrabani \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,45 +28,45 @@ msgstr "לא ניתן למחוק את %s לצמיתות" msgid "Couldn't restore %s" msgstr "לא ניתן לשחזר את %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "ביצוע פעולת שחזור" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "שגיאה" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "מחיקת קובץ לצמיתות" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "מחיקה לצמיתות" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "שם" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "נמחק" -#: js/trash.js:186 -msgid "1 folder" -msgstr "תיקייה אחת" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} תיקיות" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "קובץ אחד" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} קבצים" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/he/files_versions.po b/l10n/he/files_versions.po index fbb47670af4d69754bd60b42ff5884f84c4e267e..61c81ff7b83d7d2f1f0b1111727ec18f0bddc25e 100644 --- a/l10n/he/files_versions.po +++ b/l10n/he/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-08 02:03+0200\n" -"PO-Revision-Date: 2013-06-07 09:23+0000\n" -"Last-Translator: Yaron Shahrabani \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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,41 +18,27 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "לא ניתן להחזיר: %s" -#: history.php:40 -msgid "success" -msgstr "הושלם" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "הקובץ %s הוחזר לגרסה %s" - -#: history.php:49 -msgid "failure" -msgstr "נכשל" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "לא ניתן להחזיר את הקובץ %s לגרסה %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "גרסאות" -#: history.php:69 -msgid "No old versions available" -msgstr "אין גרסאות ישנות זמינות" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "לא צוין נתיב" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "גרסאות" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "ניתן להחזיר קובץ לגרסה קודמת על ידי לחיצה על לחצן ההחזרה שלו" +#: js/versions.js:149 +msgid "Restore" +msgstr "שחזור" diff --git a/l10n/he/lib.po b/l10n/he/lib.po index bb79451d05bef669455f50d6c3dd84bf9d3e8b23..a52972724304660ed1c83d3e249d726471c9be3d 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-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: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\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 "לפני %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 "שנים" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/he/settings.po b/l10n/he/settings.po index 181a433036d1c7de07847ad7da29b3c3195c7c96..e4eee2b12b4cc82006d62971696d89d1c1b47fa1 100644 --- a/l10n/he/settings.po +++ b/l10n/he/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "יש לספק ססמה תקנית" msgid "__language_name__" msgstr "עברית" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "אזהרת אבטחה" -#: templates/admin.php:20 +#: 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 "יתכן שתיקיית הנתונים והקבצים שלך נגישים דרך האינטרנט. קובץ ה־‎.htaccess שמסופק על ידי ownCloud כנראה אינו עובד. אנו ממליצים בחום להגדיר את שרת האינטרנט שלך בדרך שבה תיקיית הנתונים לא תהיה זמינה עוד או להעביר את תיקיית הנתונים מחוץ לספריית העל של שרת האינטרנט." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "שגיאת הגדרה" -#: templates/admin.php:34 +#: 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 "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "נא לעיין שוב במדריכי ההתקנה." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "המודול „fileinfo“ חסר" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "החיבור לאינטרנט אינו פעיל" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "יש להפעיל משימה אחת עם כל עמוד שנטען" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "שיתוף" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "הפעלת API השיתוף" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "לאפשר ליישום להשתמש ב־API השיתוף" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "לאפשר קישורים" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "לאפשר למשתמשים לשתף פריטים " -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "לאפשר שיתוף מחדש" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "לאפשר למשתמשים לשתף הלאה פריטים ששותפו אתם" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "לאפשר למשתמשים לשתף עם כל אחד" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "לאפשר למשתמשים לשתף עם משתמשים בקבוצות שלהם בלבד" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "אבטחה" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "לאלץ HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "יומן" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "רמת הדיווח" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "יותר" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "פחות" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "גרסא" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "השתמשת ב־%s מתוך %s הזמינים לך" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "סיסמא" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "הססמה שלך הוחלפה" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "לא ניתן לשנות את הססמה שלך" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "ססמה נוכחית" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "ססמה חדשה" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "שינוי ססמה" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "שם תצוגה" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "דואר אלקטרוני" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "כתובת הדוא״ל שלך" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "נא למלא את כתובת הדוא״ל שלך כדי לאפשר שחזור ססמה" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "פה" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "עזרה בתרגום" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -89,7 +89,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -222,7 +222,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -242,9 +242,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -268,7 +269,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -292,7 +293,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -353,12 +354,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -371,12 +372,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -390,17 +391,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/he/user_webdavauth.po b/l10n/he/user_webdavauth.po index ac898b74676bc1bea2dabe95cd87d724a6d22ae0..08c9dc6a5515a5bf793f62d16198b3839efa5575 100644 --- a/l10n/he/user_webdavauth.po +++ b/l10n/he/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Hebrew (http://www.transifex.com/projects/p/owncloud/language/he/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "הזדהות מול WebDAV" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "מערכת ownCloud תשלח את פרטי המשתמש לכתובת זו. התוסף יבדוק את התגובה ויתרגם את הקודים 401 ו־403 כתגובה לציון פרטי גישה שגויים ואת כל שאר התגובות כפרטי גישה נכונים." +msgstr "" diff --git a/l10n/hi/core.po b/l10n/hi/core.po index dc212192324bf801e99aa225cc7b08e733310425..b9bb38c3e73a6c203e8c744700d8593d12f66e1b 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes 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:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: 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,8 +226,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "त्रुटि" @@ -247,123 +247,123 @@ msgstr "" msgid "Share" msgstr "साझा करें" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "के साथ साझा" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "पासवर्ड" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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 @@ -401,7 +402,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "पासवर्ड बदलने कि लिंक आपको ई-मेल द्वारा भेजी जायेगी|" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "प्रयोक्ता का नाम" @@ -462,11 +463,11 @@ msgstr "सहयोग" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "क्लौड नहीं मिला " -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,7 +496,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "व्यवस्थापक खाता बनाएँ" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "उन्नत" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "डाटा फोल्डर" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "उपयोग होगा" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "डेटाबेस उपयोगकर्ता" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "डेटाबेस पासवर्ड" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "डेटाबेस का नाम" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "सेटअप समाप्त करे" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "लोग आउट" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -608,7 +614,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\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/hi/files_encryption.po b/l10n/hi/files_encryption.po index 94ad25dcd1a5f9069ed8784f20e33a2cb4785c80..ac181cbae061eefad2de88e33b107dfc76ba03a2 100644 --- a/l10n/hi/files_encryption.po +++ b/l10n/hi/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hi/files_sharing.po b/l10n/hi/files_sharing.po index 374cd748474bdf1652e2d58689715adf016585ea..1b0fd22ba82c2f86e728ac94180966b0c029dd25 100644 --- a/l10n/hi/files_sharing.po +++ b/l10n/hi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "पासवर्ड" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/hi/files_trashbin.po b/l10n/hi/files_trashbin.po index c2ebbcdce96bf8505c49fc479308cb8e704c36d3..6ebcc054149ac9df3e65dc0e0001972438d4ec09 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "त्रुटि" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/hi/files_versions.po b/l10n/hi/files_versions.po index e3697cd4513dd004f6dc0db1f76dbddbcb41030e..6c3aaf87350b7b41710cf5f12994f234e225fe69 100644 --- a/l10n/hi/files_versions.po +++ b/l10n/hi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/hi/lib.po b/l10n/hi/lib.po index 4c585172851b9cd22d598adae4a1bb9ec3b22d17..d2b0c7fad22321712d4b2030256678ab07091bda 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-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: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/hi/settings.po b/l10n/hi/settings.po index 79513b43322455733d75d6f70325e7787379efba..66da608edd3edecdd54e04a62dd367b76bfb4080 100644 --- a/l10n/hi/settings.po +++ b/l10n/hi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "पासवर्ड" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "नया पासवर्ड" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/hi/user_webdavauth.po b/l10n/hi/user_webdavauth.po index 25d78227a57887b6d7252d7a85cf48d9ae7b4969..5d9c8b1fdca0aaedce9b0c9ede421c55cb8dc459 100644 --- a/l10n/hi/user_webdavauth.po +++ b/l10n/hi/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Hindi (http://www.transifex.com/projects/p/owncloud/language/hi/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/hr/core.po b/l10n/hr/core.po index 15a2a7644e3f1f29d48fc9937ef4282f1bf98222..521c5d603475f5b2b6e67df700a69447c3093591 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Postavke" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundi prije" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" - -#: 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:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:818 msgid "today" msgstr "danas" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "jučer" -#: 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 "prošli mjesec" -#: 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 "mjeseci" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "prošlu godinu" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "godina" @@ -225,8 +229,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Greška" @@ -246,123 +250,123 @@ msgstr "" msgid "Share" msgstr "Podijeli" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Greška prilikom djeljenja" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Greška prilikom isključivanja djeljenja" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Greška prilikom promjena prava" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Djeli sa" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Djeli preko link-a" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Zaštiti lozinkom" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Lozinka" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Postavi datum isteka" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Datum isteka" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Dijeli preko email-a:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Osobe nisu pronađene" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Ponovo dijeljenje nije dopušteno" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Makni djeljenje" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "može mjenjat" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "kontrola pristupa" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "kreiraj" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "ažuriraj" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "izbriši" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "djeli" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zaštita lozinkom" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Greška prilikom brisanja datuma isteka" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Greška prilikom postavljanja datuma isteka" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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 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}" @@ -400,7 +405,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Primit ćete link kako biste poništili zaporku putem e-maila." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Korisničko ime" @@ -461,11 +466,11 @@ msgstr "Pomoć" msgid "Access forbidden" msgstr "Pristup zabranjen" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nije pronađen" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +499,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Stvori administratorski račun" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Mapa baze podataka" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfiguriraj bazu podataka" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "će se koristiti" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Korisnik baze podataka" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Lozinka baze podataka" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Ime baze podataka" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Poslužitelj baze podataka" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Završi postavljanje" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +617,7 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Podijeli" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Obriši" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Promjeni ime" @@ -156,15 +152,14 @@ msgstr "" msgid "undo" msgstr "vrati" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "1 datoteka se učitava" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "datoteke se učitavaju" @@ -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 "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Zadnja promjena" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 "mapa" 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 "Prekini upload" -#: 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 "Nema ničega u ovoj mapi. Pošalji nešto!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Preuzimanje" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Makni djeljenje" -#: templates/index.php:107 +#: 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" -#: 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 "Datoteke koje pokušavate prenijeti prelaze maksimalnu veličinu za prijenos datoteka na ovom poslužitelju." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Datoteke se skeniraju, molimo pričekajte." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Trenutno skeniranje" diff --git a/l10n/hr/files_encryption.po b/l10n/hr/files_encryption.po index 41ffd91c1b83014d5913da58275da1dda201f31b..db272d0927c3c2203a2b8ad3572624f48c0c0199 100644 --- a/l10n/hr/files_encryption.po +++ b/l10n/hr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hr/files_sharing.po b/l10n/hr/files_sharing.po index 060175dfc04e9cbefff2a3852a4de3a734dfdbb0..74836110cc89ec03f9a7a0ee408407163fc7bab6 100644 --- a/l10n/hr/files_sharing.po +++ b/l10n/hr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Lozinka" msgid "Submit" msgstr "Pošalji" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Preuzimanje" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Učitaj" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Prekini upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/hr/files_trashbin.po b/l10n/hr/files_trashbin.po index 8fa36bb7945249b282d8410265f1490824f55c06..76a24e0c67e9b7d70bc6ea1c8db6a2021f5da3a3 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,46 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Greška" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" msgstr "" #: templates/index.php:9 diff --git a/l10n/hr/files_versions.po b/l10n/hr/files_versions.po index 4a55674bbd9ead0a18689f4335a0c1497a627fd7..d6b43eb495d0eedce5675f5e8c5b5dc098cb2064 100644 --- a/l10n/hr/files_versions.po +++ b/l10n/hr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/hr/lib.po b/l10n/hr/lib.po index d7ad1c61c971607bbcc97dfc653e96cd0bb75316..c9c913ffa16e68ceb6c2d89a0fec38f16e763587 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-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: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web usluge pod vašom kontrolom" @@ -210,54 +206,54 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/hr/settings.po b/l10n/hr/settings.po index 06158390f251f98dd27b5c7251c7c341aebce7b5..e8be72648d0e2312ad5f3b04df0742c9585e0226 100644 --- a/l10n/hr/settings.po +++ b/l10n/hr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "__ime_jezika__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "dnevnik" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "više" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Nemoguće promijeniti lozinku" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Izmjena lozinke" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "e-mail adresa" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Vaša e-mail adresa" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Ispunite vase e-mail adresa kako bi se omogućilo oporavak lozinke" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Jezik" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Pomoć prevesti" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/hr/user_webdavauth.po b/l10n/hr/user_webdavauth.po index b0b3a830c3a16a2ffe4348a905ab1d3412cb663a..8eeb9864f5679460724916b39c35d6974b371e44 100644 --- a/l10n/hr/user_webdavauth.po +++ b/l10n/hr/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Croatian (http://www.transifex.com/projects/p/owncloud/language/hr/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/hu_HU/core.po b/l10n/hu_HU/core.po index ab87d1797c3057362c203a6636c7e16b154d0ce4..5348acb3a5d12a3e9877676c7ddc4df93a1a9166 100644 --- a/l10n/hu_HU/core.po +++ b/l10n/hu_HU/core.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -138,59 +139,59 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Beállítások" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "pár másodperce" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 perce" +#: 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 "{minutes} perce" +#: 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 "1 órája" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} órája" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "ma" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "tegnap" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "múlt hónapban" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "több hónapja" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "tavaly" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "több éve" @@ -226,8 +227,8 @@ msgstr "Az objektum típusa nincs megadva." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Hiba" @@ -247,123 +248,123 @@ msgstr "Megosztott" msgid "Share" msgstr "Megosztás" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Nem sikerült létrehozni a megosztást" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Nem sikerült visszavonni a megosztást" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Nem sikerült módosítani a jogosultságokat" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Megosztotta Önnel és a(z) {group} csoporttal: {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Megosztotta Önnel: {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Kivel osztom meg" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Link megadásával osztom meg" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Jelszóval is védem" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Jelszó" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Feltöltést is engedélyezek" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Email címre küldjük el" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Küldjük el" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Legyen lejárati idő" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "A lejárati idő" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Megosztás emaillel:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Nincs találat" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Ezt az állományt csak a tulajdonosa oszthatja meg másokkal" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Megosztva {item}-ben {user}-rel" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "A megosztás visszavonása" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "módosíthat" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "jogosultság" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "létrehoz" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "szerkeszt" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "töröl" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "megoszt" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Jelszóval van védve" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Nem sikerült a lejárati időt törölni" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Nem sikerült a lejárati időt beállítani" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Küldés ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Az emailt elküldtük" @@ -378,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}" @@ -401,7 +403,7 @@ msgstr "A kérést nem sikerült teljesíteni!
Biztos, hogy jó emailcímet/ msgid "You will receive a link to reset your password via Email." msgstr "Egy emailben fog értesítést kapni a jelszóbeállítás módjáról." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Felhasználónév" @@ -462,11 +464,11 @@ msgstr "Súgó" msgid "Access forbidden" msgstr "A hozzáférés nem engedélyezett" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "A felhő nem található" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Az Ön PHP verziója sebezhető a NULL bájtos támadással szemben (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az ownCloud szolgáltatása." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Kérjük frissítse a telepített PHP csomagjait, hogy biztonságos legyen az %s szolgáltatása." #: templates/installation.php:32 msgid "" @@ -516,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Az adatkönyvtár és a benne levő állományok valószínűleg közvetlenül is elérhetők az internetről, mert a .htaccess állomány nem érvényesül." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "A kiszolgáló megfelelő beállításához kérjük olvassa el a dokumentációt." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "A kiszolgáló megfelelő beállításához kérjük olvassa el a dokumentációt." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Rendszergazdai belépés létrehozása" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Haladó" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Adatkönyvtár" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Adatbázis konfigurálása" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "adatbázist fogunk használni" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Adatbázis felhasználónév" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Adatbázis jelszó" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Az adatbázis neve" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Az adatbázis táblázattér (tablespace)" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Adatbázis szerver" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "A beállítások befejezése" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s rendelkezésre áll. További információ a frissítéshez." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -608,7 +615,7 @@ msgstr "Bejelentkezés" msgid "Alternative Logins" msgstr "Alternatív bejelentkezés" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Megosztás" msgid "Delete permanently" msgstr "Végleges törlés" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Törlés" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Átnevezés" @@ -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:457 -msgid "1 file uploading" -msgstr "1 fájl töltődik föl" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "fájl töltődik föl" @@ -201,33 +195,29 @@ msgstr "Készül a letöltendő állomány. Ez eltarthat egy ideig, ha nagyok a msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Érvénytelen mappanév. A név használata csak a Owncloud számára lehetséges." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Név" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Méret" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Módosítva" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappa" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappa" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fájl" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -286,45 +276,49 @@ msgstr "Mappa" msgid "From link" msgstr "Feltöltés linkről" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Törölt fájlok" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Itt nincs írásjoga." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Itt nincs semmi. Töltsön fel valamit!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Letöltés" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "A megosztás visszavonása" -#: templates/index.php:107 +#: 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" -#: 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 "A feltöltendő állományok mérete meghaladja a kiszolgálón megengedett maximális méretet." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "A fájllista ellenőrzése zajlik, kis türelmet!" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Ellenőrzés alatt" diff --git a/l10n/hu_HU/files_encryption.po b/l10n/hu_HU/files_encryption.po index cac07fdabb5a5b75d8f2fe014ac4e750185001a4..c50896b0590e1efc4d7cbaca7430659303a725e0 100644 --- a/l10n/hu_HU/files_encryption.po +++ b/l10n/hu_HU/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hu_HU/files_sharing.po b/l10n/hu_HU/files_sharing.po index 3c44de68d368285c493f703d6d7385d7798e928d..ea31ac3f6fc5b0f92b16158d1aa6d72d4fb148d6 100644 --- a/l10n/hu_HU/files_sharing.po +++ b/l10n/hu_HU/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:50+0000\n" "Last-Translator: Laszlo Tornoci \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "Jelszó" msgid "Submit" msgstr "Elküld" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Sajnos úgy tűnik, ez a link már nem működik." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Ennek az oka a következő lehet:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "az állományt időközben eltávolították" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "lejárt a link érvényességi ideje" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "letiltásra került a megosztás" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "További információért forduljon ahhoz, aki ezt a linket küldte Önnek!" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s megosztotta Önnel ezt a mappát: %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s megosztotta Önnel ezt az állományt: %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Letöltés" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Feltöltés" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "A feltöltés megszakítása" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nem áll rendelkezésre előnézet ehhez: " diff --git a/l10n/hu_HU/files_trashbin.po b/l10n/hu_HU/files_trashbin.po index 39d58e18fbe3ac6081ae43e04c57425070cb36ef..4e5d7207c9f4bb4bedb0aa36e22c49f68a51a26e 100644 --- a/l10n/hu_HU/files_trashbin.po +++ b/l10n/hu_HU/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,45 @@ msgstr "Nem sikerült %s végleges törlése" msgid "Couldn't restore %s" msgstr "Nem sikerült %s visszaállítása" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "a visszaállítás végrehajtása" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Hiba" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "az állomány végleges törlése" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Végleges törlés" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Név" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Törölve" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mappa" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} mappa" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fájl" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} fájl" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "visszaállítva" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/hu_HU/files_versions.po b/l10n/hu_HU/files_versions.po index 39f58c0a5db318e40a101cdbac1166893fd5bb7c..5fabacbc2ffb14668f467166c220b426f6c8c1a1 100644 --- a/l10n/hu_HU/files_versions.po +++ b/l10n/hu_HU/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Laszlo Tornoci , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:40+0000\n" +"Last-Translator: Laszlo Tornoci \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" @@ -17,41 +18,27 @@ msgstr "" "Language: hu_HU\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Nem sikerült átállni a változatra: %s" -#: history.php:40 -msgid "success" -msgstr "sikerült" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "%s állományt átállítottuk erre a változatra: %s" - -#: history.php:49 -msgid "failure" -msgstr "nem sikerült" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "%s állományt nem sikerült átállítani erre a változatra: %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Az állományok korábbi változatai" -#: history.php:69 -msgid "No old versions available" -msgstr "Nincs régebbi változat" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Nem sikerült a(z) {file} állományt erre visszaállítani: {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Nincs megadva az útvonal" +#: js/versions.js:79 +msgid "More versions..." +msgstr "További változatok..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Az állományok korábbi változatai" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Az állománynak nincs több változata" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Az állomány átállítható egy régebbi változatra, ha a gombra kattint" +#: js/versions.js:149 +msgid "Restore" +msgstr "Visszaállítás" diff --git a/l10n/hu_HU/lib.po b/l10n/hu_HU/lib.po index e008f3406a94223ace85d5a92ec0058e482f912c..d517cddd328b61589af6b08b1520982b8df2f473 100644 --- a/l10n/hu_HU/lib.po +++ b/l10n/hu_HU/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# ebela , 2013 # Laszlo Tornoci , 2013 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: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -35,26 +36,22 @@ 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 "" +msgstr "Sikertelen Frissítés \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webszolgáltatások saját kézben" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "nem sikerült megnyitni \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "A kiválasztott fájlok túl nagyok a zip tömörítéshez." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Okozta:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/hu_HU/settings.po b/l10n/hu_HU/settings.po index 532945081d77de50424ce63eeacebe677d89f4bd..e9f13f44d647e8878b101743af7f12e66004a4b6 100644 --- a/l10n/hu_HU/settings.po +++ b/l10n/hu_HU/settings.po @@ -4,14 +4,15 @@ # # Translators: # Adam Toth , 2013 +# ebela , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -171,175 +172,173 @@ msgstr "Érvényes jelszót kell megadnia" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Biztonsági figyelmeztetés" -#: templates/admin.php:20 +#: 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 "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." +"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." +msgstr "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "A beállítással kapcsolatos figyelmeztetés" -#: templates/admin.php:34 +#: 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 "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." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "A 'fileinfo' modul hiányzik" -#: templates/admin.php:49 +#: 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 "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "A nyelvi lokalizáció nem működik" -#: templates/admin.php:65 +#: 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." +"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 "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Az internet kapcsolat nem működik" -#: templates/admin.php:80 +#: 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 "Az ownCloud kiszolgálónak nincs internet kapcsolata. Ez azt jelenti, hogy bizonyos dolgok nem fognak működni, pl. külső tárolók csatolása, programfrissítésekről való értesítések, vagy külső fejlesztői modulok telepítése. Lehet, hogy az állományok távolról történő elérése, ill. az email értesítések sem fog működni. Javasoljuk, hogy engedélyezze az internet kapcsolatot a kiszolgáló számára, ha az ownCloud összes szolgáltatását szeretné használni." - -#: templates/admin.php:94 +"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." +msgstr "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek." + +#: templates/admin.php:92 msgid "Cron" msgstr "Ütemezett feladatok" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek" -#: templates/admin.php:113 +#: 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 "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg az owncloud könyvtárban levő cron.php állományt http-n keresztül percenként egyszer." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg a cron.php állományt http-n keresztül percenként egyszer." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "A rendszer cron szolgáltatásának használata. Hívja meg az owncloud könyvtárban levő cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "A rendszer cron szolgáltatásának használata. Hívja meg a cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Megosztás" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "A megosztás API-jának engedélyezése" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Linkek engedélyezése" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Feltöltést engedélyezése mindenki számára" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Engedélyezni a felhasználóknak, hogy beállíithassák, hogy mások feltölthetnek a nyilvánosan megosztott mappákba." -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "A továbbosztás engedélyezése" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "A felhasználók bárkivel megoszthatják állományaikat" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Biztonság" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Kötelező HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak az ownCloud szolgáltatáshoz." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Kérjük, hogy HTTPS protokollt használjon, ha be vagy ki akarja kapcsolni a kötelező SSL beállítást." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Naplózás" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Naplózási szint" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Több" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Kevesebb" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Verzió" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Az Ön tárterület-felhasználása jelenleg: %s. Maximálisan ennyi áll rendelkezésére: %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Jelszó" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "A jelszava megváltozott" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "A jelszó nem változtatható meg" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "A jelenlegi jelszó" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Az új jelszó" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "A jelszó megváltoztatása" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "A megjelenített név" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Az Ön email címe" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Adja meg az email címét, hogy jelszó-emlékeztetőt kérhessen, ha elfelejtette a jelszavát!" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Nyelv" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Segítsen a fordításban!" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 2013 # Laszlo Tornoci , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Laszlo Tornoci \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" "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" @@ -89,9 +90,9 @@ msgstr "A törlés megerősítése" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Figyelem: a user_ldap és user_webdavauth alkalmazások nem kompatibilisek. Együttes használatuk váratlan eredményekhez vezethet. Kérje meg a rendszergazdát, hogy a kettő közül kapcsolja ki az egyiket." +msgstr "" #: templates/settings.php:12 msgid "" @@ -222,8 +223,8 @@ msgid "Disable Main Server" msgstr "A fő szerver kihagyása" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Ha ezt bekapcsoljuk, akkor az ownCloud csak a másodszerverekhez kapcsolódik." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "Ne ellenőrizzük az SSL-tanúsítvány érvényességét" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Ha a kapcsolat csak ezzel a beállítással működik, akkor importálja az LDAP-kiszolgáló SSL tanúsítványát az ownCloud kiszolgálóra!" +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +270,8 @@ msgid "User Display Name Field" msgstr "A felhasználónév mezője" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Ebből az LDAP attribútumból képződik a felhasználó elnevezése, ami megjelenik az ownCloudban." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +294,8 @@ msgid "Group Display Name Field" msgstr "A csoport nevének mezője" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Ebből az LDAP attribútumból képződik a csoport elnevezése, ami megjelenik az ownCloudban." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,12 +355,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -371,12 +373,12 @@ msgstr "Az UUID-felismerés felülbírálása" #: 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 " +"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 behaviour. " +" 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 "" @@ -390,17 +392,16 @@ msgstr "Felhasználó - LDAP felhasználó hozzárendelés" #: 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/hu_HU/user_webdavauth.po b/l10n/hu_HU/user_webdavauth.po index 1d74be6d3f91bdf5d668b9e7247ac2d97cda7094..fd49829f9c598ac1c8caced3085c68eb23c32d69 100644 --- a/l10n/hu_HU/user_webdavauth.po +++ b/l10n/hu_HU/user_webdavauth.po @@ -4,12 +4,13 @@ # # Translators: # akoscomp , 2013 +# ebela , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/owncloud/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -23,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV hitelesítés" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "Az ownCloud elküldi a felhasználói fiók adatai a következő URL-re. Ez a bővítőmodul leellenőrzi a választ és ha a HTTP hibakód nem 401 vagy 403 azaz érvénytelen hitelesítő, akkor minden más válasz érvényes lesz." +msgstr "" diff --git a/l10n/hy/core.po b/l10n/hy/core.po index 2238a3574fdcb5390ad3e366aec2db3988fa05c7..0b7d7fdbaaca52d79773d78e0e49a36983ba0889 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-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -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:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -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:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +225,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +246,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +462,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\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/hy/files_encryption.po b/l10n/hy/files_encryption.po index aac4b4707b6b617dce68db1ba7020aea78b7c1cf..e9b9f2afbe858d683cddd076784dbdb7306f2387 100644 --- a/l10n/hy/files_encryption.po +++ b/l10n/hy/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/hy/files_sharing.po b/l10n/hy/files_sharing.po index b0ff019c8d5a9e498b237bb844f814991c7e0912..59d5e3109f5ee53edf83fab11b796999524cec34 100644 --- a/l10n/hy/files_sharing.po +++ b/l10n/hy/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "Հաստատել" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Բեռնել" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/hy/files_trashbin.po b/l10n/hy/files_trashbin.po index d25cfb36f9c737088bf22ee0488b2260cfaf24cc..b1c3d308429ecf7a8f6366c1052348046bb84f42 100644 --- a/l10n/hy/files_trashbin.po +++ b/l10n/hy/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/hy/files_versions.po b/l10n/hy/files_versions.po index 7e959a096a38c80a81b2db21cd4890ab1fbac83d..e4b69d908c12a1b4593b46cceab5079653de6c25 100644 --- a/l10n/hy/files_versions.po +++ b/l10n/hy/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-04-26 08:01+0000\n" -"Last-Translator: FULL NAME \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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +17,27 @@ msgstr "" "Language: hy\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/hy/lib.po b/l10n/hy/lib.po index 40f120e53550473bd0e238f7b6565c61fa9dc32c..a5d0fdb5e62091ae159209474e0738bba3b4b22e 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/hy/settings.po b/l10n/hy/settings.po index 530c35dcb2d42f0dcd318f1a648a7f661feb5fc4..0cb76a2fd2f99c63cc6e90a9846d5970e6509617 100644 --- a/l10n/hy/settings.po +++ b/l10n/hy/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/hy/user_webdavauth.po b/l10n/hy/user_webdavauth.po index 497f2fbc293d94276d8288006accb52a877d6954..9481cb0fb51630197247c0cba7bd52b269605c3d 100644 --- a/l10n/hy/user_webdavauth.po +++ b/l10n/hy/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Armenian (http://www.transifex.com/projects/p/owncloud/language/hy/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ia/core.po b/l10n/ia/core.po index 71adf479204f505f9b12eb50dca0177f2c3c0be3..cb317dbb059ec7dcff5b69bd194caa8e56d7b24e 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Configurationes" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes 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:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: 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 "" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "Compartir" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Contrasigno" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Invia" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nomine de usator" @@ -461,11 +462,11 @@ msgstr "Adjuta" msgid "Access forbidden" msgstr "Accesso prohibite" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nube non trovate" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crear un conto de administration" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avantiate" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Dossier de datos" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configurar le base de datos" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "essera usate" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Usator de base de datos" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Contrasigno de base de datos" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nomine de base de datos" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Hospite de base de datos" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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 "" @@ -607,7 +613,7 @@ msgstr "Aperir session" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Compartir" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Deler" - -#: 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 "Nomine" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimension" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 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 @@ -285,45 +275,49 @@ msgstr "Dossier" 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 "Nihil hic. Incarga alcun cosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Discargar" -#: 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 "Deler" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Incargamento troppo longe" -#: 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/ia/files_encryption.po b/l10n/ia/files_encryption.po index 3dc0de995061f54eecf6c3039447655d09306e3b..04eb7d8960c2d62f902e4c80562b55e8a7b0031d 100644 --- a/l10n/ia/files_encryption.po +++ b/l10n/ia/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ia/files_sharing.po b/l10n/ia/files_sharing.po index 2247eb9098fadd28a111546e68ef9e5b7168ee9a..ac0a658eb5e4877860c226503cd205bf1fe97e20 100644 --- a/l10n/ia/files_sharing.po +++ b/l10n/ia/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Contrasigno" msgid "Submit" msgstr "Submitter" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Discargar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Incargar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ia/files_trashbin.po b/l10n/ia/files_trashbin.po index c3bac94d930d57a763fc659b6496c6bff6b1b8ec..0ac362ef502a3ab5825d941d3d861bf98f0471f4 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Error" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nomine" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/ia/files_versions.po b/l10n/ia/files_versions.po index 0e666b6dc57525ae7e5c92f376f35aa799229dda..d08de20a52d8edb451f608797e5ab671795bbac9 100644 --- a/l10n/ia/files_versions.po +++ b/l10n/ia/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ia/lib.po b/l10n/ia/lib.po index 283c448b8e61780dd3f524d95830ab63c4a2c228..c60af2f1aa1e18ec8b43f9c1af2a4bc7c5a5044b 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-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: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "servicios web sub tu controlo" @@ -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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/settings.po b/l10n/ia/settings.po index 25d30e7991785a3274cde413632085202107f75a..be9966dae6cc6fba76001e1609a16095d9139073 100644 --- a/l10n/ia/settings.po +++ b/l10n/ia/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "Interlingua" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Registro" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Plus" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Contrasigno" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Non pote cambiar tu contrasigno" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Contrasigno currente" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nove contrasigno" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Cambiar contrasigno" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-posta" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Tu adresse de e-posta" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Linguage" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Adjuta a traducer" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ia/user_webdavauth.po b/l10n/ia/user_webdavauth.po index e9996727a39ebf62a82ab1be0bb58b0f7f196ec7..c0aede82878ee1d1cd5f62260ac82c53c80f49cf 100644 --- a/l10n/ia/user_webdavauth.po +++ b/l10n/ia/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Interlingua (http://www.transifex.com/projects/p/owncloud/language/ia/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/id/core.po b/l10n/id/core.po index 9dbb390bca9008a948afd1f3c94a03cde9719e58..b3db7059779e53102b8d4c8306163f224198e1aa 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Setelan" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "beberapa detik yang lalu" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 menit yang lalu" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} menit yang lalu" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 jam yang lalu" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} jam yang lalu" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "hari ini" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "kemarin" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "bulan kemarin" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "beberapa bulan lalu" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "tahun kemarin" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "beberapa tahun lalu" @@ -225,8 +221,8 @@ msgstr "Tipe objek tidak ditentukan." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Galat" @@ -246,123 +242,123 @@ msgstr "Dibagikan" msgid "Share" msgstr "Bagikan" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Galat ketika membagikan" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Galat ketika membatalkan pembagian" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Galat ketika mengubah izin" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Dibagikan dengan Anda dan grup {group} oleh {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Dibagikan dengan Anda oleh {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Bagikan dengan" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Bagikan lewat tautan" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Lindungi dengan sandi" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Sandi" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Emailkan tautan ini ke orang" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Kirim" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Setel tanggal kedaluwarsa" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Tanggal kedaluwarsa" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Bagian lewat email:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Tidak ada orang ditemukan" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Berbagi ulang tidak diizinkan" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Dibagikan dalam {item} dengan {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Batalkan berbagi" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "dapat mengedit" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "kontrol akses" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "buat" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "perbarui" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "hapus" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "bagikan" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Dilindungi sandi" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Galat ketika menghapus tanggal kedaluwarsa" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Galat ketika menyetel tanggal kedaluwarsa" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Mengirim ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email terkirim" @@ -377,9 +373,10 @@ msgstr "Pembaruan gagal. Silakan laporkan masalah ini ke documentation." -msgstr "Untuk informasi lebih lanjut tentang pengaturan server yang benar, silakan lihat dokumentasi." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Buat sebuah akun admin" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Lanjutan" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Folder data" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfigurasikan basis data" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Pengguna basis data" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Sandi basis data" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nama basis data" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tablespace basis data" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Host basis data" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Selesaikan instalasi" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Keluar" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Masuk otomatis ditolak!" @@ -607,7 +609,7 @@ msgstr "Masuk" msgid "Alternative Logins" msgstr "Cara Alternatif untuk Masuk" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Bagikan" msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Hapus" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Ubah nama" @@ -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:457 -msgid "1 file uploading" -msgstr "1 berkas diunggah" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "berkas diunggah" @@ -200,33 +193,27 @@ msgstr "Unduhan Anda sedang disiapkan. Prosesnya dapat berlangsung agak lama jik msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nama folder salah. Nama 'Shared' telah digunakan oleh Owncloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Ukuran" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Dimodifikasi" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} folder" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 berkas" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -285,45 +272,49 @@ msgstr "Folder" msgid "From link" msgstr "Dari tautan" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Berkas yang dihapus" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Anda tidak memiliki izin menulis di sini." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tidak ada apa-apa di sini. Unggah sesuatu!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Unduh" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Batalkan berbagi" -#: templates/index.php:107 +#: 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" -#: 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 "Berkas yang dicoba untuk diunggah melebihi ukuran maksimum pengunggahan berkas di server ini." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Berkas sedang dipindai, silakan tunggu." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Yang sedang dipindai" diff --git a/l10n/id/files_encryption.po b/l10n/id/files_encryption.po index 754fd8ebf9a5e534f74cdf0164b797292ec6bc4e..fe3eba2a20dd80ca15349105f9217028a0df07ce 100644 --- a/l10n/id/files_encryption.po +++ b/l10n/id/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/id/files_sharing.po b/l10n/id/files_sharing.po index 6741367871dd453b1ae23e7d5ae235f689fc4ce8..79f5f77df1039802364e267ecde1cf5533e4dcfd 100644 --- a/l10n/id/files_sharing.po +++ b/l10n/id/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Sandi" msgid "Submit" msgstr "Kirim" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s membagikan folder %s dengan Anda" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s membagikan file %s dengan Anda" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Unduh" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Unggah" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Batal pengunggahan" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Tidak ada pratinjau tersedia untuk" diff --git a/l10n/id/files_trashbin.po b/l10n/id/files_trashbin.po index 8fc78b69420017b361eb56de394541db948006de..5f5941b22adf3abf286c9d75c67ce0b49cf55914 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "Tidak dapat menghapus permanen %s" msgid "Couldn't restore %s" msgstr "Tidak dapat memulihkan %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "jalankan operasi pemulihan" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Galat" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "hapus berkas secara permanen" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Hapus secara permanen" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nama" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Dihapus" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 folder" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} folder" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 berkas" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} berkas" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/id/files_versions.po b/l10n/id/files_versions.po index a22d263e44e0887dedf0002a2ccda7c9b901d75b..7cc75c5495f3ddae570291dd4f373da3183f4c9f 100644 --- a/l10n/id/files_versions.po +++ b/l10n/id/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Tidak dapat mengembalikan: %s" -#: history.php:40 -msgid "success" -msgstr "sukses" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Berkas %s telah dikembalikan ke versi %s" - -#: history.php:49 -msgid "failure" -msgstr "gagal" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Berkas %s gagal dikembalikan ke versi %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versi" -#: history.php:69 -msgid "No old versions available" -msgstr "Versi lama tidak tersedia" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Lokasi tidak ditentukan" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versi" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Kembalikan berkas ke versi sebelumnya dengan mengeklik tombol kembalikan" +#: js/versions.js:149 +msgid "Restore" +msgstr "Pulihkan" diff --git a/l10n/id/lib.po b/l10n/id/lib.po index 7d7e86cd29ad9cf1cd47e5cfeeae32c4fd6959e3..e1a8dc80a69e4e170a5bf2df0d07b08def7ecfb9 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-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: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "layanan web dalam kontrol Anda" @@ -210,54 +206,46 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/id/settings.po b/l10n/id/settings.po index 538c4c001be18a30996d392c92fc14ac977f5a32..12086b8b8a3fc8edfdc49f7afa8c728846833add 100644 --- a/l10n/id/settings.po +++ b/l10n/id/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "Tuliskan sandi yang valid" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Peringatan Keamanan" -#: templates/admin.php:20 +#: 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 "Mungkin direktori data dan berkas Anda dapat diakses dari internet. Berkas .htaccess yang disediakan oleh ownCloud tidak berfungsi. Kami sangat menyarankan Anda untuk mengonfigurasi webserver Anda agar direktori data tidak lagi dapat diakses atau pindahkan direktori data ke luar akar dokumen webserver." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Peringatan Persiapan" -#: templates/admin.php:34 +#: 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 "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Silakan periksa ulang panduan instalasi." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' tidak ada" -#: templates/admin.php:49 +#: 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 "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Kode pelokalan tidak berfungsi" -#: templates/admin.php:65 +#: 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 "Server ownCloud ini tidak dapat menyetel kode pelokalan sistem ke nilai %s. Ini berarti mungkin akan terjadi masalah pada karakter tertentu pada nama berkas. Kami sarankan untuk menginstal paket yang dibutuhkan pada sistem Anda untuk mendukung %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Koneksi internet tidak berfungsi" -#: templates/admin.php:80 +#: 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 "Server ownCloud ini tidak memiliki koneksi internet yang berfungsi. Artinya, beberapa fitur misalnya mengaitkan penyimpanan eksternal, notifikasi tentang pembaruan, atau instalasi aplikasi dari pihak ketiga tidak akan dapat berfungsi. Pengaksesan berkas secara online dan pengiriman email notifikasi mungkin juga tidak dapat berfungsi. Kami sarankan untuk mengaktifkan koneksi internet server ini agar mendapatkan semua fitur ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Jalankan tugas setiap kali halaman dimuat" -#: templates/admin.php:113 +#: 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 "cron.php telah terdaftar sebagai layanan webcron. Panggil halaman cron.php pada akar direktori ownCloud tiap menit lewat http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Gunakan layanan cron sistem. Panggil berkas cron.php pada folder ownCloud lewat cronjob sistem tiap menit." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Berbagi" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Aktifkan API Pembagian" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Izinkan aplikasi untuk menggunakan API Pembagian" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Izinkan tautan" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Izinkan pengguna untuk berbagi item kepada publik lewat tautan" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Izinkan pembagian ulang" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Izinkan pengguna untuk berbagi kembali item yang dibagikan kepada mereka." -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Izinkan pengguna untuk berbagi kepada siapa saja" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Keamanan" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Selalu Gunakan HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Paksa klien untuk tersambung ke ownCloud lewat koneksi yang dienkripsi." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Silakan sambungkan ke instalasi ownCloud lewat HTTPS untuk mengaktifkan atau menonaktifkan fitur SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Catat" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Level pencatatan" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Lainnya" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Ciutkan" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versi" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Anda telah menggunakan %s dari total %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Sandi" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Sandi Anda telah diubah" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Gagal mengubah sandi Anda" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Sandi saat ini" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Sandi baru" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Ubah sandi" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nama Tampilan" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Alamat email Anda" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Masukkan alamat email untuk mengaktifkan pemulihan sandi" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Bantu menerjemahkan" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ msgstr "Konfirmasi Penghapusan" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Peringatan:/b> Aplikasi user_ldap dan user_webdavauth tidak kompatibel. Anda mungkin akan mengalami kejadian yang tidak diharapkan. Silakan minta administrator sistem untuk menonaktifkan salah satunya." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,8 +221,8 @@ msgid "Disable Main Server" msgstr "Nonaktifkan Server Utama" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Saat diaktifkan, ownCloud hanya akan terhubung ke server replika." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "matikan validasi sertivikat SSL" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Jika koneksi hanya bekerja dengan opsi ini, impor sertifikat SSL server LDAP dari server ownCloud anda." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Bidang Tampilan Nama Pengguna" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP yang digunakan untuk menghasilkan nama pengguna ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Bidang Tampilan Nama Grup" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP yang digunakan untuk menghasilkan nama grup ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/id/user_webdavauth.po b/l10n/id/user_webdavauth.po index b411106f5f664f161a5387adc0e5a001676424fd..1c607bd00f8660f0faee1cafcd8c0180692d3e09 100644 --- a/l10n/id/user_webdavauth.po +++ b/l10n/id/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Indonesian (http://www.transifex.com/projects/p/owncloud/language/id/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "Otentikasi WebDAV" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud akan mengirimkan informasi pengguna ke URL ini. Pengaya akan mengecek respon dan menginterpretasikan kode status HTTP 401 serta 403 sebagai informasi yang keliru, sedangkan respon lainnya dianggap benar." +msgstr "" diff --git a/l10n/is/core.po b/l10n/is/core.po index 51f04cfa89d3c1a5f15de33b0af1e8bd992d5b7b..478150b094bbb0b18a67bccfc96b6b26cb856359 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Stillingar" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sek." -#: js/js.js:716 -msgid "1 minute ago" -msgstr "Fyrir 1 mínútu" +#: 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 "{minutes} min síðan" +#: 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 "Fyrir 1 klst." - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "fyrir {hours} klst." - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "í dag" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "í gær" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "síðasta mánuði" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "mánuðir síðan" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "síðasta ári" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "einhverjum árum" @@ -226,8 +226,8 @@ msgstr "Tegund ekki tilgreind" #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Villa" @@ -247,123 +247,123 @@ msgstr "Deilt" msgid "Share" msgstr "Deila" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Villa við deilingu" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Villa við að hætta deilingu" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Villa við að breyta aðgangsheimildum" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Deilt með þér og hópnum {group} af {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Deilt með þér af {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Deila með" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Deila með veftengli" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Verja með lykilorði" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Lykilorð" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Senda vefhlekk í tölvupóstu til notenda" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Senda" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Setja gildistíma" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Gildir til" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Deila með tölvupósti:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Engir notendur fundust" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Endurdeiling er ekki leyfð" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Deilt með {item} ásamt {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Hætta deilingu" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "getur breytt" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "aðgangsstýring" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "mynda" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "uppfæra" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "eyða" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "deila" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Verja með lykilorði" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Villa við að aftengja gildistíma" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Villa við að setja gildistíma" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Sendi ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Tölvupóstur sendur" @@ -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}" @@ -401,7 +402,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Þú munt fá veftengil í tölvupósti til að endursetja lykilorðið." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Notendanafn" @@ -462,11 +463,11 @@ msgstr "Hjálp" msgid "Access forbidden" msgstr "Aðgangur bannaður" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Ský finnst ekki" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,7 +496,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Útbúa vefstjóra aðgang" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Ítarlegt" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Gagnamappa" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Stilla gagnagrunn" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "verður notað" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Gagnagrunns notandi" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Gagnagrunns lykilorð" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nafn gagnagrunns" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Töflusvæði gagnagrunns" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Netþjónn gagnagrunns" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Virkja uppsetningu" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er til boða. Fáðu meiri upplýsingar um hvernig þú uppfærir." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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ð!" @@ -608,7 +614,7 @@ msgstr "Skrá inn" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Deila" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Eyða" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Endurskýra" @@ -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:457 -msgid "1 file uploading" -msgstr "1 skrá innsend" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: 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 "Óleyfilegt nafn á möppu. Nafnið 'Shared' er frátekið fyrir Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nafn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Stærð" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Breytt" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappa" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} möppur" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -285,45 +275,49 @@ msgstr "Mappa" msgid "From link" msgstr "Af tengli" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: 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 "Ekkert hér. Settu eitthvað inn!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Niðurhal" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Hætta deilingu" -#: templates/index.php:107 +#: 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" -#: 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 "Skrárnar sem þú ert að senda inn eru stærri en hámarks innsendingarstærð á þessum netþjóni." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Verið er að skima skrár, vinsamlegast hinkraðu." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Er að skima" diff --git a/l10n/is/files_encryption.po b/l10n/is/files_encryption.po index 4cc867c7a62feba3930a80fedc1d00ba2982d979..2dfaa11e21d32126d60afd2ffe0d657463ed1756 100644 --- a/l10n/is/files_encryption.po +++ b/l10n/is/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/is/files_sharing.po b/l10n/is/files_sharing.po index d27d881ebb1558584ccef76bd1a2ee0f7cc295e0..e4966a548d850baaa5863aca694f83773fcbb1cf 100644 --- a/l10n/is/files_sharing.po +++ b/l10n/is/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Lykilorð" msgid "Submit" msgstr "Senda" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deildi möppunni %s með þér" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deildi skránni %s með þér" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Niðurhal" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Senda inn" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Hætta við innsendingu" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Yfirlit ekki í boði fyrir" diff --git a/l10n/is/files_trashbin.po b/l10n/is/files_trashbin.po index e9aa65df00ec0fc905854de5145809a63b10c50e..c28f1236b660d0816eec1803ed866b70fec35c79 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Villa" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nafn" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mappa" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} möppur" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 skrá" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} skrár" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/is/files_versions.po b/l10n/is/files_versions.po index ad7f909d9f4a9682fb5aeca5794c3014d3827775..622809a774f419d8a3f6ebf17517563d49b3e032 100644 --- a/l10n/is/files_versions.po +++ b/l10n/is/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "Útgáfur" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Útgáfur" - -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/is/lib.po b/l10n/is/lib.po index ad927007a61f4c081a2e198b7fe448b6c4999ebc..5926c37fa9f2a6808d633940e50b22f0f17e4c2c 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-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: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "vefþjónusta undir þinni stjórn" @@ -210,54 +206,50 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/is/settings.po b/l10n/is/settings.po index ecb9283f470c10f209cb53b2c9a57915f5f71987..6e26f787fdf2f9aa4aeaed1771afb57bb89b17eb 100644 --- a/l10n/is/settings.po +++ b/l10n/is/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "" msgid "__language_name__" msgstr "__nafn_tungumáls__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Öryggis aðvörun" -#: templates/admin.php:20 +#: 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 "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Meira" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Minna" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Útgáfa" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Þú hefur notað %s af tiltæku %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lykilorð" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Lykilorði þínu hefur verið breytt" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Ekki tókst að breyta lykilorðinu þínu" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Núverandi lykilorð" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nýtt lykilorð" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Breyta lykilorði" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Vísa nafn" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Netfang" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Netfangið þitt" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Sláðu inn netfangið þitt til að virkja endurheimt á lykilorði" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Tungumál" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Hjálpa við þýðingu" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,7 +89,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -222,7 +222,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -242,9 +242,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -268,7 +269,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -292,7 +293,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -353,12 +354,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -371,12 +372,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -390,17 +391,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/is/user_webdavauth.po b/l10n/is/user_webdavauth.po index d6a3dc156d8c334f081d6cc5d934ea022f7426af..69fdb0b0114b1028c9d7642f88d8d707542d1d78 100644 --- a/l10n/is/user_webdavauth.po +++ b/l10n/is/user_webdavauth.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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Icelandic (http://www.transifex.com/projects/p/owncloud/language/is/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV Auðkenni" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/it/core.po b/l10n/it/core.po index e12241620c14c74d4b3c104150f88b62d542b307..84687acd093bedddcea3f551af2737db21a60399 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Impostazioni" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "secondi fa" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "Un minuto fa" +#: 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 "{minutes} minuti fa" +#: 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 "1 ora fa" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} ore fa" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "oggi" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "ieri" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "mese scorso" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "mesi fa" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "anno scorso" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "anni fa" @@ -228,8 +228,8 @@ msgstr "Il tipo di oggetto non è specificato." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Errore" @@ -249,123 +249,123 @@ msgstr "Condivisi" msgid "Share" msgstr "Condividi" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Errore durante la condivisione" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Errore durante la rimozione della condivisione" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Errore durante la modifica dei permessi" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Condiviso con te e con il gruppo {group} da {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Condiviso con te da {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Condividi con" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Condividi con collegamento" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Proteggi con password" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Password" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Consenti caricamento pubblico" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Invia collegamento via email" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Invia" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Imposta data di scadenza" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data di scadenza" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Condividi tramite email:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Non sono state trovate altre persone" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "La ri-condivisione non è consentita" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Condiviso in {item} con {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Rimuovi condivisione" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "può modificare" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "controllo d'accesso" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "creare" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "aggiornare" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "elimina" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "condividi" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protetta da password" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Errore durante la rimozione della data di scadenza" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Errore durante l'impostazione della data di scadenza" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Invio in corso..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Messaggio inviato" @@ -380,9 +380,10 @@ msgstr "L'aggiornamento non è riuscito. Segnala il problema alla Sei sicuro che l'indirizzo di posta/nome uten msgid "You will receive a link to reset your password via Email." msgstr "Riceverai un collegamento per ripristinare la tua password via email" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nome utente" @@ -464,11 +465,11 @@ msgstr "Aiuto" msgid "Access forbidden" msgstr "Accesso negato" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nuvola non trovata" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -497,8 +498,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "La tua versione di PHP è vulnerabile all'attacco NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Aggiorna la tua installazione di PHP per utilizzare ownCloud in modo sicuro." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Aggiorna la tua installazione di PHP per utilizzare %s in sicurezza." #: templates/installation.php:32 msgid "" @@ -518,68 +520,72 @@ msgid "" "because the .htaccess file does not work." msgstr "La cartella dei dati e i file sono probabilmente accessibili da Internet poiché il file .htaccess non funziona." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Per informazioni su come configurare correttamente il server, vedi la documentazione." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Per informazioni su come configurare correttamente il tuo server, vedi la documentazione." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crea un account amministratore" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avanzat" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Cartella dati" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configura il database" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "sarà utilizzato" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Utente del database" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Password del database" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nome del database" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Spazio delle tabelle del database" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Host del database" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Termina la configurazione" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s è disponibile. Ottieni ulteriori informazioni sull'aggiornamento." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Esci" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Accesso automatico rifiutato." @@ -610,7 +616,7 @@ msgstr "Accedi" msgid "Alternative Logins" msgstr "Accessi alternativi" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Condividi" msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Elimina" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Rinomina" @@ -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:457 -msgid "1 file uploading" -msgstr "1 file in fase di caricamento" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "caricamento file" @@ -202,33 +196,29 @@ msgstr "Il tuo scaricamento è in fase di preparazione. Ciò potrebbe richiedere msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome della cartella non valido. L'uso di 'Shared' è riservato da ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensione" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificato" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 cartella" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} cartelle" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 file" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -287,45 +277,49 @@ msgstr "Cartella" msgid "From link" msgstr "Da collegamento" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "File eliminati" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Annulla invio" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Qui non hai i permessi di scrittura." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Non c'è niente qui. Carica qualcosa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Scarica" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Rimuovi condivisione" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Elimina" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Caricamento troppo grande" -#: 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 "I file che stai provando a caricare superano la dimensione massima consentita su questo server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Scansione dei file in corso, attendi" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scansione corrente" diff --git a/l10n/it/files_encryption.po b/l10n/it/files_encryption.po index 9e43d8c52dd0ffb86400685dd0639ec96f080969..390dd69d83cacfb5a60d5145786a36ff57654b6e 100644 --- a/l10n/it/files_encryption.po +++ b/l10n/it/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-09 02:03+0200\n" -"PO-Revision-Date: 2013-07-08 13:30+0000\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" @@ -70,11 +70,15 @@ msgstr "Requisiti mancanti." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "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:" +msgstr "I seguenti utenti non sono configurati per la cifratura:" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvataggio in corso..." diff --git a/l10n/it/files_sharing.po b/l10n/it/files_sharing.po index 5f93f56ae9ce3489ac0b921706a22a64ebda3978..b2ebeff44036f9eea407cdcbabe68a2515cc70ac 100644 --- a/l10n/it/files_sharing.po +++ b/l10n/it/files_sharing.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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+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" @@ -31,28 +31,52 @@ msgstr "Password" msgid "Submit" msgstr "Invia" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Spiacenti, questo collegamento sembra non essere più attivo." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "I motivi potrebbero essere:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "l'elemento è stato rimosso" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "il collegamento è scaduto" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "la condivisione è disabilitata" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Per ulteriori informazioni, chiedi alla persona che ti ha inviato il collegamento." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ha condiviso la cartella %s con te" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ha condiviso il file %s con te" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Scarica" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Carica" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Annulla il caricamento" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nessuna anteprima disponibile per" diff --git a/l10n/it/files_trashbin.po b/l10n/it/files_trashbin.po index dab46389c47b5017b9f9a8c9182e45816630fd73..188d8e7e9c0562781d3c5ef67379abe120313859 100644 --- a/l10n/it/files_trashbin.po +++ b/l10n/it/files_trashbin.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Vincenzo Reale , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +28,45 @@ msgstr "Impossibile eliminare %s definitivamente" msgid "Couldn't restore %s" msgstr "Impossibile ripristinare %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "esegui operazione di ripristino" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Errore" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "elimina il file definitivamente" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Elimina definitivamente" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Eliminati" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 cartella" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} cartelle" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 file" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} file" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "ripristinati" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/it/files_versions.po b/l10n/it/files_versions.po index eecb2f8f5e5f4da18151c63ad2a434d46c01b8e1..aea7bf52384b96a81f630f1808e084487f315f46 100644 --- a/l10n/it/files_versions.po +++ b/l10n/it/files_versions.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Vincenzo Reale , 2013 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-05-24 13:28+0000\n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 06:30+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" @@ -17,41 +18,27 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" -msgstr "Impossibild ripristinare: %s" +msgstr "Impossibile ripristinare: %s" -#: history.php:40 -msgid "success" -msgstr "completata" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Il file %s è stato ripristinato alla versione %s" - -#: history.php:49 -msgid "failure" -msgstr "non riuscita" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Il file %s non può essere ripristinato alla versione %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versioni" -#: history.php:69 -msgid "No old versions available" -msgstr "Non sono disponibili versioni precedenti" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Ripristino di {file} alla revisione {timestamp} non riuscito." -#: history.php:74 -msgid "No path specified" -msgstr "Nessun percorso specificato" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Altre versioni..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versioni" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Non sono disponibili altre versioni" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Ripristina un file a una versione precedente facendo clic sul rispettivo pulsante di ripristino" +#: js/versions.js:149 +msgid "Restore" +msgstr "Ripristina" diff --git a/l10n/it/lib.po b/l10n/it/lib.po index 366d47f7892a4f027fbd37731ad00ac0a60b04aa..506821d1d770e4b54550ed640e26cd6afd501828 100644 --- a/l10n/it/lib.po +++ b/l10n/it/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Francesco Capuano , 2013 # Vincenzo Reale , 2013 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: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -35,26 +36,22 @@ 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 "" +msgstr "Aggiornamento non riuscito \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "servizi web nelle tue mani" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "impossibile aprire \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "I file selezionati sono troppo grandi per generare un file zip." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Causato da:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/it/settings.po b/l10n/it/settings.po index 58fa949610d3a63220c5356c0db18cada20dbf9c..0f2c1b0c371fb39565bfb00c15fae80833a02108 100644 --- a/l10n/it/settings.po +++ b/l10n/it/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 08:20+0000\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" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -172,175 +172,173 @@ msgstr "Deve essere fornita una password valida" msgid "__language_name__" msgstr "Italiano" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Avviso di sicurezza" -#: templates/admin.php:20 +#: 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 "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito." +"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." +msgstr "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Avviso di configurazione" -#: templates/admin.php:34 +#: 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 "Il tuo server web non è configurato correttamente per consentire la sincronizzazione dei file poiché l'interfaccia WebDAV sembra essere danneggiata." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "Leggi attentamente le guide d'installazione." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modulo 'fileinfo' mancante" -#: templates/admin.php:49 +#: 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 "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Locale non funzionante" -#: templates/admin.php:65 +#: 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 "Questo server ownCloud non può impostare la localizzazione a %s. Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti richiesti sul sistema per supportare %s." +"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 "La localizzazione di sistema è impostata a %s. Ciò significa che potrebbero verificarsi dei problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti necessari a supportare %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Concessione Internet non funzionante" -#: templates/admin.php:80 +#: 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 "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. Anche l'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità di ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Esegui un'operazione con ogni pagina caricata" -#: templates/admin.php:113 +#: 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 "cron.php è registrato su un sevizio webcron. Invoca la pagina cron.php nella radice di ownCloud ogni minuto, tramite http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php è registrato su un servizio webcron per invocare la pagina cron.php ogni minuto su http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Utilizza il servizio cron di sistema. Invoca il file cron.php nella cartella di ownCloud tramite un job ogni minuto." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Usa il servizio cron di sistema per invocare il file cron.php ogni minuto." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Condivisione" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Abilita API di condivisione" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Consenti alle applicazioni di utilizzare le API di condivisione" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Consenti collegamenti" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Consenti agli utenti di condividere pubblicamente elementi tramite collegamenti" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "Consenti caricamenti pubblici" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Consenti agli utenti di abilitare altri al caricamento nelle loro cartelle pubbliche condivise" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Consenti la ri-condivisione" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Consenti agli utenti di condividere a loro volta elementi condivisi da altri" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Consenti agli utenti di condividere con chiunque" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Consenti agli utenti di condividere solo con utenti dei loro gruppi" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Protezione" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forza HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Obbliga i client a connettersi a ownCloud tramite una confessione cifrata." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Forza i client a connettersi a %s tramite una connessione cifrata." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Connettiti a questa istanza di ownCloud tramite HTTPS per abilitare o disabilitare la protezione SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Livello di log" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Altro" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Meno" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versione" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Hai utilizzato %s dei %s disponibili" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "La tua password è cambiata" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Modifica password non riuscita" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Password attuale" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nuova password" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Modifica password" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nome visualizzato" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Posta elettronica" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Il tuo indirizzo email" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Inserisci il tuo indirizzo email per abilitare il recupero della password" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Lingua" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Migliora la traduzione" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Italian (http://www.transifex.com/projects/p/owncloud/language/it/)\n" "MIME-Version: 1.0\n" @@ -89,9 +89,9 @@ msgstr "Conferma l'eliminazione" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne uno." +msgstr "Avviso: le applicazioni user_ldap e user_webdavauth sono incompatibili. Potresti riscontrare un comportamento inatteso. Chiedi al tuo amministratore di sistema di disabilitarne una." #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "Disabilita server principale" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Se abilitata, ownCloud si collegherà solo al server di replica." +msgid "Only connect to the replica server." +msgstr "Collegati solo al server di replica." #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Disattiva il controllo del certificato SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server ownCloud." +"certificate in your %s server." +msgstr "Se la connessione funziona esclusivamente con questa opzione, importa il certificato SSL del server LDAP nel tuo server %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "Campo per la visualizzazione del nome utente" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "L'attributo LDAP da usare per generare il nome dell'utente ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "L'attributo LDAP da usare per generare il nome visualizzato dell'utente." #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Campo per la visualizzazione del nome del gruppo" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "L'attributo LDAP da usare per generare il nome del gruppo ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "L'attributo LDAP da usare per generare il nome visualizzato del gruppo." #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "In modo predefinito, il nome utente interno sarà creato dall'attributo UUID. Ciò assicura che il nome utente sia univoco e che non sia necessario convertire i caratteri. Il nome utente interno consente l'uso di determinati caratteri: [ a-zA-Z0-9_.@- ]. Altri caratteri sono sostituiti con il corrispondente ASCII o sono semplicemente omessi. In caso di conflitto, sarà incrementato/decrementato un numero. Il nome utente interno è utilizzato per identificare un utente internamente. Rappresenta, inoltre, il nome predefinito per la cartella home dell'utente in ownCloud. Costituisce anche una porta di URL remoti, ad esempio per tutti i servizi *DAV. Con questa impostazione, il comportamento predefinito può essere scavalcato. Per ottenere un comportamento simile alle versioni precedenti ownCloud 5, inserisci l'attributo del nome visualizzato dell'utente nel campo seguente. Lascialo vuoto per il comportamento predefinito. Le modifiche avranno effetto solo sui nuovo utenti LDAP associati (aggiunti)." +"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." +msgstr "In modo predefinito, il nome utente interno sarà creato dall'attributo UUID. Ciò assicura che il nome utente sia univoco e che non sia necessario convertire i caratteri. Il nome utente interno consente l'uso di determinati caratteri: [ a-zA-Z0-9_.@- ]. Altri caratteri sono sostituiti con il corrispondente ASCII o sono semplicemente omessi. In caso di conflitto, sarà aggiunto/incrementato un numero. Il nome utente interno è utilizzato per identificare un utente internamente. Rappresenta, inoltre, il nome predefinito per la cartella home dell'utente in ownCloud. Costituisce anche una parte di URL remoti, ad esempio per tutti i servizi *DAV. Con questa impostazione, il comportamento predefinito può essere scavalcato. Per ottenere un comportamento simile alle versioni precedenti ownCloud 5, inserisci l'attributo del nome visualizzato dell'utente nel campo seguente. Lascialo vuoto per il comportamento predefinito. Le modifiche avranno effetto solo sui nuovo utenti LDAP associati (aggiunti)." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "Ignora rilevamento UUID" #: 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 " +"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 behaviour. " +" 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 "In modo predefinito, ownCloud rileva automaticamente l'attributo UUID. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti)." +msgstr "In modo predefinito, l'attributo UUID viene rilevato automaticamente. L'attributo UUID è utilizzato per identificare senza alcun dubbio gli utenti e i gruppi LDAP. Inoltre, il nome utente interno sarà creato sulla base dell'UUID, se non è specificato in precedenza. Puoi ignorare l'impostazione e fornire un attributo di tua scelta. Assicurati che l'attributo scelto possa essere ottenuto sia per gli utenti che per i gruppi e che sia univoco. Lascialo vuoto per ottenere il comportamento predefinito. Le modifiche avranno effetto solo sui nuovi utenti e gruppi LDAP associati (aggiunti)." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "Associazione Nome utente-Utente LDAP" #: 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 "ownCloud utilizza i nomi utente per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente di ownCloud e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate da ownCloud. Il nome utente interno di ownCloud è utilizzato dappertutto in ownCloud. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione. Procedere alla cancellazione delle associazioni solo in una fase sperimentale o di test." +"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." +msgstr "I nomi utente sono utilizzati per archiviare e assegnare i (meta) dati. Per identificare con precisione e riconoscere gli utenti, ogni utente LDAP avrà un nome utente interno. Ciò richiede un'associazione tra il nome utente e l'utente LDAP. In aggiunta, il DN viene mantenuto in cache per ridurre l'interazione con LDAP, ma non è utilizzato per l'identificazione. Se il DN cambia, le modifiche saranno rilevate. Il nome utente interno è utilizzato dappertutto. La cancellazione delle associazioni lascerà tracce residue ovunque e interesserà esclusivamente la configurazione LDAP. Non cancellare mai le associazioni in un ambiente di produzione, ma solo in una fase sperimentale o di test." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/it/user_webdavauth.po b/l10n/it/user_webdavauth.po index 78c08a701504baa68ccfc1d9ff06ea5b97f63f37..edef529b95eb1503e22aac93aba9cc13633c6568 100644 --- a/l10n/it/user_webdavauth.po +++ b/l10n/it/user_webdavauth.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-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-19 06:39+0000\n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 06:10+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" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "Autenticazione WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Indirizzo:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud invierà le credenziali dell'utente a questo URL. Questa estensione controlla la risposta e interpreta i codici di stato 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide." +msgstr "Le credenziali dell'utente saranno inviate a questo indirizzo. Questa estensione controlla la risposta e interpreterà i codici di stato HTTP 401 e 403 come credenziali non valide, e tutte le altre risposte come credenziali valide." diff --git a/l10n/ja_JP/core.po b/l10n/ja_JP/core.po index 16354864ca074a08cd6233ec4e285c7398a34f91..07c9dd2169d0e2059b498badb271631c6009bb26 100644 --- a/l10n/ja_JP/core.po +++ b/l10n/ja_JP/core.po @@ -5,13 +5,14 @@ # Translators: # Daisuke Deguchi , 2013 # 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: Daisuke Deguchi \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" @@ -139,59 +140,55 @@ msgstr "11月" msgid "December" msgstr "12月" -#: 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 "1 分前" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分前" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 時間前" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} 時間前" - -#: 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 "{days} 日前" +#: 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 "{months} 月前" +#: 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 "年前" @@ -227,8 +224,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "エラー" @@ -248,123 +245,123 @@ msgstr "共有中" msgid "Share" msgstr "共有" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "共有でエラー発生" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "共有解除でエラー発生" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "権限変更でエラー発生" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "あなたと {owner} のグループ {group} で共有中" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} と共有中" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "共有者" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "URLリンクで共有" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "パスワード保護" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "パスワード" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "アップロードを許可" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "メールリンク" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "送信" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "有効期限を設定" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "有効期限" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "メール経由で共有:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "ユーザーが見つかりません" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "再共有は許可されていません" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "{item} 内で {user} と共有中" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "共有解除" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "編集可能" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "アクセス権限" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "作成" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "更新" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "削除" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "共有" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "パスワード保護" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "有効期限の未設定エラー" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "有効期限の設定でエラー発生" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "送信中..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "メールを送信しました" @@ -379,9 +376,10 @@ msgstr "更新に成功しました。この問題を あなたのメール/ユ msgid "You will receive a link to reset your password via Email." msgstr "メールでパスワードをリセットするリンクが届きます。" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "ユーザー名" @@ -463,11 +461,11 @@ msgstr "ヘルプ" msgid "Access forbidden" msgstr "アクセスが禁止されています" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "見つかりません" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +494,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "あなたのPHPのバージョンには、Null Byte攻撃(CVE-2006-7243)という脆弱性が含まれています。" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "ownCloud を安全に利用するに、PHPの更新を行なってください。" +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "%s を安全に利用する為に インストールされているPHPをアップデートしてください。" #: templates/installation.php:32 msgid "" @@ -517,68 +516,72 @@ msgid "" "because the .htaccess file does not work." msgstr ".htaccess ファイルが動作していないため、おそらくあなたのデータディレクトリもしくはファイルはインターネットからアクセス可能です。" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "あなたのサーバの適切な設定に関する情報として、ドキュメントを参照して下さい。" +"href=\"%s\" target=\"_blank\">documentation." +msgstr "サーバーを適正に設定する情報は、こちらのドキュメントを参照してください。" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "管理者アカウントを作成してください" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "詳細設定" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "データフォルダ" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "が使用されます" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "データベースのユーザ名" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "データベースのパスワード" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "データベース名" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "データベースの表領域" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "データベースのホスト名" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "セットアップを完了します" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s が利用可能です。更新方法に関してさらに情報を取得して下さい。" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "ログアウト" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "他のアプリ" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動ログインは拒否されました!" @@ -609,7 +612,7 @@ msgstr "ログイン" msgid "Alternative Logins" msgstr "代替ログイン" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -124,11 +124,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 "名前の変更" @@ -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:457 -msgid "1 file uploading" -msgstr "ファイルを1つアップロード中" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "ファイルをアップロード中" @@ -204,33 +197,27 @@ msgstr "ダウンロードの準備中です。ファイルサイズが大きい msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無効なフォルダ名です。'Shared' の利用は ownCloud が予約済みです。" -#: 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 "1 フォルダ" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} フォルダ" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ファイル" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n個のフォルダ" -#: 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 @@ -289,45 +276,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/ja_JP/files_encryption.po b/l10n/ja_JP/files_encryption.po index 1697707c7feeff73bcb5242c054797021e1f37cc..669ed7fa419ad21bb940c02e23d72de5fca719e7 100644 --- a/l10n/ja_JP/files_encryption.po +++ b/l10n/ja_JP/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-07 01:58+0200\n" -"PO-Revision-Date: 2013-07-06 01:30+0000\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" @@ -70,10 +70,14 @@ msgstr "必要要件が満たされていません。" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "必ず、PHP 5.3.3以上をインストールし、OpenSSLのPHP拡張を有効にして適切に設定してください。現時点では暗号化アプリは無効になっています。" +"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 "必ず、PHP 5.3.3もしくはそれ以上をインストールし、同時にOpenSSLのPHP拡張を有効にした上でOpenSSLも同様にインストール、適切に設定してください。現時点では暗号化アプリは無効になっています。" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "以下のユーザーは、暗号化設定がされていません:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ja_JP/files_sharing.po b/l10n/ja_JP/files_sharing.po index bd7180154d88e14192eb76887d3ba17e8cf367c8..305eb2256c21747aa5dc338347aba52106cde551 100644 --- a/l10n/ja_JP/files_sharing.po +++ b/l10n/ja_JP/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "パスワード" msgid "Submit" msgstr "送信" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "申し訳ございません。このリンクはもう利用できません。" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "理由は以下の通りと考えられます:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "アイテムが削除されました" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "リンクの期限が切れています" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "共有が無効になっています" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "不明な点は、こちらのリンクの提供者に確認をお願いします。" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s はフォルダー %s をあなたと共有中です" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s はファイル %s をあなたと共有中です" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ダウンロード" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "アップロード" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "アップロードをキャンセル" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "プレビューはありません" diff --git a/l10n/ja_JP/files_trashbin.po b/l10n/ja_JP/files_trashbin.po index af8e70b1036865609f8d1329e1a8bc9cdba3f578..a52a506736960d16d988984d898ba8e312cc3a40 100644 --- a/l10n/ja_JP/files_trashbin.po +++ b/l10n/ja_JP/files_trashbin.po @@ -3,13 +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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \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" @@ -27,45 +29,43 @@ msgstr "%s を完全に削除出来ませんでした" msgid "Couldn't restore %s" msgstr "%s を復元出来ませんでした" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "復元操作を実行する" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "エラー" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "ファイルを完全に削除する" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "完全に削除する" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "名前" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "削除済み" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 フォルダ" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n個のフォルダ" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} フォルダ" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n個のファイル" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ファイル" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ファイル" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "復元済" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ja_JP/files_versions.po b/l10n/ja_JP/files_versions.po index 2b62bba4cc1517b7bd944c70aedd5c18285aa855..a160c897a2a5fbe1e571ecf7c1eb194e3639d977 100644 --- a/l10n/ja_JP/files_versions.po +++ b/l10n/ja_JP/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tt yn , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+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" @@ -17,41 +18,27 @@ msgstr "" "Language: ja_JP\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "元に戻せませんでした: %s" -#: history.php:40 -msgid "success" -msgstr "成功" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "ファイル %s をバージョン %s に戻しました" - -#: history.php:49 -msgid "failure" -msgstr "失敗" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "ファイル %s をバージョン %s に戻せませんでした" +#: js/versions.js:7 +msgid "Versions" +msgstr "バージョン" -#: history.php:69 -msgid "No old versions available" -msgstr "利用可能な古いバージョンはありません" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "{file} を {timestamp} のリヴィジョンに戻すことができません。" -#: history.php:74 -msgid "No path specified" -msgstr "パスが指定されていません" +#: js/versions.js:79 +msgid "More versions..." +msgstr "もっと他のバージョン..." -#: js/versions.js:6 -msgid "Versions" -msgstr "バージョン" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "利用可能な他のバージョンはありません" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "もとに戻すボタンをクリックすると、ファイルを過去のバージョンに戻します" +#: js/versions.js:149 +msgid "Restore" +msgstr "復元" diff --git a/l10n/ja_JP/lib.po b/l10n/ja_JP/lib.po index a9bfe0203ff9ca68ac502fece3b61ae77c443420..b037427159730fcc9c40237884244e86db7fef37 100644 --- a/l10n/ja_JP/lib.po +++ b/l10n/ja_JP/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-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: Japanese (Japan) (http://www.transifex.com/projects/p/owncloud/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "\"%s\" へのアップグレードに失敗しました。" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "管理下のウェブサービス" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "\"%s\" が開けません" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "選択したファイルはZIPファイルの生成には大きすぎま msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。" #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,48 @@ 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 "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "原因は以下:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/ja_JP/settings.po b/l10n/ja_JP/settings.po index 5bb4deb674f7d2d627e03006df7a8f25e8bf7e8d..b9a7baa144bed3b36f76a15e7e49521c17da6b8d 100644 --- a/l10n/ja_JP/settings.po +++ b/l10n/ja_JP/settings.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -172,175 +172,173 @@ msgstr "有効なパスワードを指定する必要があります" msgid "__language_name__" msgstr "Japanese (日本語)" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "セキュリティ警告" -#: templates/admin.php:20 +#: 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 "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。 " +"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." +msgstr "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "セットアップ警告" -#: templates/admin.php:34 +#: 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 "WebDAVインタフェースが動作していないと考えられるため、あなたのWEBサーバはまだファイルの同期を許可するように適切な設定がされていません。" -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "インストールガイドをよく確認してください。" +msgid "Please double check the installation guides." +msgstr "installation guidesをもう一度チェックするようにお願いいたします。" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "モジュール 'fileinfo' が見つかりません" -#: templates/admin.php:49 +#: 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 "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。" -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "ロケールが動作していません" -#: templates/admin.php:65 +#: 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 "この ownCloud サーバは、システムロケールを %s に設定できません。これは、ファイル名の特定の文字で問題が発生する可能性があることを意味しています。%s をサポートするために、システムに必要なパッケージをインストールすることを強く推奨します。" +"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 "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "インターネット接続が動作していません" -#: templates/admin.php:80 +#: 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 "この ownCloud サーバには有効なインターネット接続がありません。これは、外部ストレージのマウント、更新の通知、サードパーティ製アプリのインストール、のようないくつかの機能が動作しないことを意味しています。リモートからファイルにアクセスしたり、通知メールを送信したりすることもできません。全ての機能を利用するためには、このサーバのインターネット接続を有効にすることを推奨します。" - -#: templates/admin.php:94 +"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." +msgstr "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "各ページの読み込み時にタスクを実行する" -#: templates/admin.php:113 +#: 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 "cron.php は webcron サービスに登録されています。owncloud のルートにある cron.php のページを http 経由で1分に1回呼び出して下さい。" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "システムの cron サービスを利用する。システムの cronjob を通して1分に1回 owncloud 内の cron.php ファイルを呼び出して下さい。" +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "共有" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "共有APIを有効にする" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "アプリからの共有APIの利用を許可する" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "リンクを許可する" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "リンクによりアイテムを公開することを許可する" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "パブリックなアップロードを許可" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "公開している共有フォルダへのアップロードを共有しているメンバーにも許可" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "再共有を許可する" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "ユーザが共有しているアイテムの再共有を許可する" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "ユーザが誰とでも共有することを許可する" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "ユーザにグループ内のユーザとのみ共有を許可する" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "セキュリティ" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "常にHTTPSを使用する" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "クライアントからownCloudへの接続を常に暗号化する" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "クライアントから %sへの接続を常に暗号化する。" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "ログ" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "ログレベル" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "もっと見る" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "閉じる" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "バージョン" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "現在、%s / %s を利用しています" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "パスワード" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "パスワードを変更しました" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "パスワードを変更することができません" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Current password" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "新しいパスワードを入力" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "パスワードを変更" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "表示名" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "メール" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "あなたのメールアドレス" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "※パスワード回復を有効にするにはメールアドレスの入力が必要です" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "言語" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "翻訳に協力する" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 2013 +# tt yn , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" @@ -89,9 +90,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能姓があります。システム管理者にどちらかを無効にするよう問い合わせてください。" +msgstr "警告: user_ldap と user_webdavauth のアプリには互換性がありません。予期せぬ動作をする可能性があります。システム管理者にどちらかを無効にするよう問い合わせてください。" #: templates/settings.php:12 msgid "" @@ -222,8 +223,8 @@ msgid "Disable Main Server" msgstr "メインサーバを無効にする" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "有効にすると、ownCloudはレプリカサーバにのみ接続します。" +msgid "Only connect to the replica server." +msgstr "レプリカサーバーにのみ接続します。" #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "SSL証明書の確認を無効にする。" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書をownCloudサーバにインポートしてください。" +"certificate in your %s server." +msgstr "接続がこのオプションでのみ動作する場合は、LDAPサーバのSSL証明書を %s サーバにインポートしてください。" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +270,8 @@ msgid "User Display Name Field" msgstr "ユーザ表示名のフィールド" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "ユーザのownCloud名の生成に利用するLDAP属性。" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "ユーザの表示名の生成に利用するLDAP属性" #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +294,8 @@ msgid "Group Display Name Field" msgstr "グループ表示名のフィールド" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "グループのownCloud名の生成に利用するLDAP属性。" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "ユーザのグループ表示名の生成に利用するLDAP属性" #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +355,13 @@ msgid "" "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 "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が必要ないことを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLのポートでもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。" +"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." +msgstr "デフォルトでは、内部ユーザ名はUUID属性から作成されます。これにより、ユーザ名がユニークであり、かつ文字の変換が不要であることを保証します。内部ユーザ名には、[ a-zA-Z0-9_.@- ] の文字のみが有効であるという制限があり、その他の文字は対応する ASCII コードに変換されるか単に無視されます。そのため、他のユーザ名との衝突の回数が増加するでしょう。内部ユーザ名は、内部的にユーザを識別するために用いられ、また、ownCloudにおけるデフォルトのホームフォルダ名としても用いられます。例えば*DAVサービスのように、リモートURLの一部でもあります。この設定により、デフォルトの振る舞いを再定義します。ownCloud 5 以前と同じような振る舞いにするためには、以下のフィールドにユーザ表示名の属性を入力します。空にするとデフォルトの振る舞いとなります。変更は新しくマッピング(追加)されたLDAPユーザにおいてのみ有効となります。" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +373,14 @@ msgstr "UUID検出を再定義する" #: 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 " +"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 behaviour. " +" 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 "デフォルトでは、ownCloud は UUID 属性を自動的に検出します。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" +msgstr "デフォルトでは、UUID 属性は自動的に検出されます。UUID属性は、LDAPユーザとLDAPグループを間違いなく識別するために利用されます。また、もしこれを指定しない場合は、内部ユーザ名はUUIDに基づいて作成されます。この設定は再定義することができ、あなたの選択した属性を用いることができます。選択した属性がユーザとグループの両方に対して適用でき、かつユニークであることを確認してください。空であればデフォルトの振る舞いとなります。変更は、新しくマッピング(追加)されたLDAPユーザとLDAPグループに対してのみ有効となります。" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +392,17 @@ msgstr "ユーザ名とLDAPユーザのマッピング" #: 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 "ownCloudは(メタ) データの保存と割り当てにユーザ名を使用します。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ownCloudユーザ名とLDAPユーザ名の間のマッピングが必要であることを意味しています。生成されたユーザ名は、LDAPユーザのUUIDとマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更をownCloudが見つけます。内部のownCloud名はownCloud全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全ての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." +msgstr "ユーザ名は(メタ)データの保存と割り当てに使用されます。ユーザを正確に識別して認識するために、個々のLDAPユーザは内部ユーザ名を持っています。これは、ユーザ名からLDAPユーザへのマッピングが必要であることを意味しています。この生成されたユーザ名は、LDAPユーザのUUIDにマッピングされます。加えて、DNがLDAPとのインタラクションを削減するためにキャッシュされますが、識別には利用されません。DNが変わった場合は、変更が検出されます。内部ユーザ名は全体に亘って利用されます。マッピングをクリアすると、いたるところに使われないままの物が残るでしょう。マッピングのクリアは設定に敏感ではありませんが、全てのLDAPの設定に影響を与えます!本番の環境では決してマッピングをクリアしないでください。テストもしくは実験の段階でのみマッピングのクリアを行なってください。" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/ja_JP/user_webdavauth.po b/l10n/ja_JP/user_webdavauth.po index a72b73812449fc87fdda1fb308c2c57f20281e88..c24eb2a95de1bc65caeba853dee89bc6d810954e 100644 --- a/l10n/ja_JP/user_webdavauth.po +++ b/l10n/ja_JP/user_webdavauth.po @@ -6,13 +6,14 @@ # Daisuke Deguchi , 2012 # Daisuke Deguchi , 2012-2013 # 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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 05:30+0000\n" -"Last-Translator: plazmism \n" +"POT-Creation-Date: 2013-08-04 01:55-0400\n" +"PO-Revision-Date: 2013-08-04 01:10+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" @@ -25,12 +26,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV 認証" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "アドレス:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloudはこのURLにユーザ資格情報を送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" +msgstr "ユーザーの権限情報をこのアドレスに送信します。このプラグインは応答をチェックし、HTTP状態コードが 401 と 403 の場合は無効な資格情報とし、他の応答はすべて有効な資格情報として処理します。" diff --git a/l10n/ka/core.po b/l10n/ka/core.po index 5dea5056dfe9a9a1fc7c88a58a8cb9a0340150e9..a553cde32b67899101e1f2a550bf3afd61edb94b 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-07-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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 (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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "წამის წინ" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "1 წუთის წინ" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "1 საათის წინ" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "დღეს" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "გუშინ" -#: js/js.js:728 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +221,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +242,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "პაროლი" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +458,11 @@ msgstr "შველა" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +491,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +609,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\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/ka/files_encryption.po b/l10n/ka/files_encryption.po index 30ae56a19d1cafeb6b574c886edc83eaca6c6171..581f6b03001215e57a8a4b00d14e7ad1b1a59857 100644 --- a/l10n/ka/files_encryption.po +++ b/l10n/ka/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ka/files_sharing.po b/l10n/ka/files_sharing.po index ffe0413a6baa5f8c9ce9dcd677db8f4ee3f4d9cb..5bc5f41fc523477b280b14d1f0af39183a68dae7 100644 --- a/l10n/ka/files_sharing.po +++ b/l10n/ka/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "პაროლი" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "გადმოწერა" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ka/files_trashbin.po b/l10n/ka/files_trashbin.po index f40050033f21b02d8952425bc2d366be01322489..36d83d1478b5c917f08b8a02700f76f2a31983a2 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,42 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/ka/files_versions.po b/l10n/ka/files_versions.po index c36ba25f09d4a8577b31ba931bb5a8884905cd75..25d30a66dbeb075428d6972d5bb4f11f696228d8 100644 --- a/l10n/ka/files_versions.po +++ b/l10n/ka/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ka\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ka/lib.po b/l10n/ka/lib.po index 5cfcfa245f770f25718246da5676ac542525dd42..32eb5dd2cd06220eafe1891b3f74461279a6687e 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-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: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\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 "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 "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ka/settings.po b/l10n/ka/settings.po index 4639302e89e8de0cdd005486cba7ab54c5d06ec5..82c0600bc845305ed0adacdc86bfb1e34b7f93e7 100644 --- a/l10n/ka/settings.po +++ b/l10n/ka/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ka/user_webdavauth.po b/l10n/ka/user_webdavauth.po index 35f97470b15bc713387b23d6d5380f79036d46ab..255fb668e75b0a34fdd2d1819bef4aa31ff3b068 100644 --- a/l10n/ka/user_webdavauth.po +++ b/l10n/ka/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Georgian (http://www.transifex.com/projects/p/owncloud/language/ka/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ka_GE/core.po b/l10n/ka_GE/core.po index e8ec2045b657e0bf2b004279cc2195f0db45d5ad..1da987a21edd9e074d484c520a7ba6c47da0a176 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 წუთის წინ" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} წუთის წინ" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 საათის წინ" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} საათის წინ" - -#: 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 "{days} დღის წინ" +#: 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 "{months} თვის წინ" +#: 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 "წლის წინ" @@ -225,8 +221,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "შეცდომა" @@ -246,123 +242,123 @@ msgstr "გაზიარებული" msgid "Share" msgstr "გაზიარება" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "შეცდომა გაზიარების დროს" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "შეცდომა გაზიარების გაუქმების დროს" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "შეცდომა დაშვების ცვლილების დროს" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "გაზიარდა თქვენთვის და ჯგუფისთვის {group}, {owner}–ის მიერ" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "გაზიარდა თქვენთვის {owner}–ის მიერ" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "გააზიარე შემდეგით:" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "გაუზიარე ლინკით" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "პაროლით დაცვა" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "პაროლი" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "ლინკის პიროვნების იმეილზე გაგზავნა" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "გაგზავნა" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "მიუთითე ვადის გასვლის დრო" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "ვადის გასვლის დრო" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "გააზიარე მეილზე" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "მომხმარებელი არ არის ნაპოვნი" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "მეორეჯერ გაზიარება არ არის დაშვებული" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "გაზიარდა {item}–ში {user}–ის მიერ" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "გაუზიარებადი" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "შეგიძლია შეცვლა" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "დაშვების კონტროლი" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "შექმნა" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "განახლება" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "წაშლა" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "გაზიარება" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "პაროლით დაცული" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "შეცდომა ვადის გასვლის მოხსნის დროს" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "შეცდომა ვადის გასვლის მითითების დროს" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "გაგზავნა ...." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "თქვენ მოგივათ პაროლის შესაცვლელი ლინკი მეილზე" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "მომხმარებლის სახელი" @@ -461,11 +458,11 @@ msgstr "დახმარება" msgid "Access forbidden" msgstr "წვდომა აკრძალულია" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ღრუბელი არ არსებობს" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,8 +491,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "თქვენი PHP ვერსია შეიცავს საფრთხეს NULL Byte შეტევებისთვის (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "იმისათვის რომ გამოიყენოთ ownCloud უსაფრთხოდ, გთხოვთ განაახლოთ თქვენი PHP ვერსია." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "თქვენი data დირექტორია და ფაილები დაშვებადია ინტერნეტში რადგან .htaccess ფაილი არ მუშაობს." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "სერვერის კორექტულად დასაკონფიგურირებლად, ნახეთ შემდეგი დოკუმენტაცია." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "შექმენი ადმინ ექაუნტი" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "დამატებითი ფუნქციები" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "მონაცემთა საქაღალდე" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "გამოყენებული იქნება" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "მონაცემთა ბაზის მომხმარებელი" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "მონაცემთა ბაზის პაროლი" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "მონაცემთა ბაზის სახელი" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "ბაზის ცხრილის ზომა" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "მონაცემთა ბაზის ჰოსტი" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "კონფიგურაციის დასრულება" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "გამოსვლა" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "ავტომატური შესვლა უარყოფილია!" @@ -607,7 +609,7 @@ msgstr "შესვლა" msgid "Alternative Logins" msgstr "ალტერნატიული Login–ი" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\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 "{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:457 -msgid "1 file uploading" -msgstr "1 ფაილის ატვირთვა" - -#: 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 "დაუშვებელი ფოლდერის სახელი. 'Shared'–ის გამოყენება რეზერვირებულია Owncloud–ის მიერ" -#: 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 "1 საქაღალდე" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} საქაღალდე" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ფაილი" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -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/ka_GE/files_encryption.po b/l10n/ka_GE/files_encryption.po index 39799227c61dcc3bbc842e4bbf2f8662ecbe9da4..4c7dd5a4457c0ea3c72b0283ff5142e436902dfb 100644 --- a/l10n/ka_GE/files_encryption.po +++ b/l10n/ka_GE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ka_GE/files_sharing.po b/l10n/ka_GE/files_sharing.po index 58d9060e6621c53cf378fcad4350d576a21ec0d4..31c89e7e6cde606a7b7fd1c864617ecdac079086 100644 --- a/l10n/ka_GE/files_sharing.po +++ b/l10n/ka_GE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "პაროლი" msgid "Submit" msgstr "გაგზავნა" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s–მა გაგიზიარათ ფოლდერი %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s–მა გაგიზიარათ ფაილი %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ჩამოტვირთვა" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "ატვირთვა" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ატვირთვის გაუქმება" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "წინასწარი დათვალიერება შეუძლებელია" diff --git a/l10n/ka_GE/files_trashbin.po b/l10n/ka_GE/files_trashbin.po index c605312031ab150114bc6cfa92eb84690697e0f5..b41813f0a6def834101fb993ae95d3dd5d2b48fd 100644 --- a/l10n/ka_GE/files_trashbin.po +++ b/l10n/ka_GE/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: drlinux64 \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,45 +27,43 @@ msgstr "ფაილი %s–ის სრულად წაშლა ვერ msgid "Couldn't restore %s" msgstr "%s–ის აღდგენა ვერ მოხერხდა" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "მიმდინარეობს აღდგენის ოპერაცია" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "შეცდომა" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "ფაილის სრულად წაშლა" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "სრულად წაშლა" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "სახელი" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "წაშლილი" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 საქაღალდე" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} საქაღალდე" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ფაილი" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ფაილი" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ka_GE/files_versions.po b/l10n/ka_GE/files_versions.po index 35af4eeea3b2a1f7c82d1b6f53d721ddcc8b23d2..9d61326140d99d1bc28d1db4a3a443cf35b01808 100644 --- a/l10n/ka_GE/files_versions.po +++ b/l10n/ka_GE/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: drlinux64 \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" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ka_GE\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "ვერ მოხერხდა უკან დაბრუნება: %s" -#: history.php:40 -msgid "success" -msgstr "დასრულდა" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "ფაილი %s დაბრუნდა ვერსიაზე %s" - -#: history.php:49 -msgid "failure" -msgstr "შეცდომა" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "ვერ მოხერხდა %s ფაილის %s ვერსიაზე დაბრუნება" +#: js/versions.js:7 +msgid "Versions" +msgstr "ვერსიები" -#: history.php:69 -msgid "No old versions available" -msgstr "ძველი ვერსია არ არსებობს" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "გზა არ არის მითითებული" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "ვერსიები" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "დააბრუნეთ ფაილი წინა პოზიციაზე revert ღილაკზე დაჭერით" +#: js/versions.js:149 +msgid "Restore" +msgstr "აღდგენა" diff --git a/l10n/ka_GE/lib.po b/l10n/ka_GE/lib.po index 499f821fb1f6cccd5ded920a3474affe0a22d549..9546faa3400b771978f07ee73f36f79cf9f4169f 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-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: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\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,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] "" #: 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 "წლის წინ" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ka_GE/settings.po b/l10n/ka_GE/settings.po index 66f7b15ce165053cb15229634a23408808fb803a..c24e0dc72065caaed5c1331886b73532902533c5 100644 --- a/l10n/ka_GE/settings.po +++ b/l10n/ka_GE/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "უნდა მიუთითოთ არსებული პარ msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "უსაფრთხოების გაფრთხილება" -#: templates/admin.php:20 +#: 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 "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "გაფრთხილება დაყენებისას" -#: templates/admin.php:34 +#: 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 "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "მოდული 'fileinfo' არ არსებობს" -#: templates/admin.php:49 +#: 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 "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "ლოკალიზაცია არ მუშაობს" -#: templates/admin.php:65 +#: 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 "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "ინტერნეტ კავშირი არ მუშაობს" -#: templates/admin.php:80 +#: 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 "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron–ი" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე" -#: templates/admin.php:113 +#: 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 "cron.php რეგისტრირებულია webcron სერვისად. გაუშვით cron.php გვერდი რომელიც მოთავსებულია owncloud root დირექტორიაში, წუთში ერთხელ http–ით." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "გამოიყენე სისტემური cron სერვისი. გაუშვით cron.php ფაილი owncloud ფოლდერიდან სისტემურ cronjob–ში წუთში ერთხელ." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "გაზიარება" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Share API–ის ჩართვა" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "დაუშვი აპლიკაციების უფლება Share API –ზე" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "ლინკების დაშვება" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "მიეცი მომხმარებლებს უფლება რომ გააზიაროს ელემენტები საჯაროდ ლინკებით" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "გადაზიარების დაშვება" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "მიეცით მომხმარებლებს უფლება რომ გააზიაროს მისთვის გაზიარებული" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "მიეცით უფლება მომხმარებლებს გააზიაროს ყველასთვის" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "უსაფრთხოება" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS–ის ჩართვა" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https)." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "ლოგი" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "ლოგირების დონე" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "უფრო მეტი" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "უფრო ნაკლები" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "ვერსია" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "თქვენ გამოყენებული გაქვთ %s –ი –%s–დან" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "პაროლი" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "თქვენი პაროლი შეიცვალა" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "თქვენი პაროლი არ შეიცვალა" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "მიმდინარე პაროლი" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "ახალი პაროლი" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "პაროლის შეცვლა" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "დისპლეის სახელი" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "იმეილი" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "თქვენი იმეილ მისამართი" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "შეავსეთ იმეილ მისამართის ველი პაროლის აღსადგენად" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "ენა" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "თარგმნის დახმარება" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "გაფრთხილება: აპლიკაციის user_ldap და user_webdavauth არათავსებადია. თქვენ შეიძლება შეეჩეხოთ მოულოდნელ შშედეგებს. თხოვეთ თქვენს ადმინისტრატორს ჩათიშოს ერთერთი." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,8 +221,8 @@ msgid "Disable Main Server" msgstr "გამორთეთ ძირითადი სერვერი" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "როცა მონიშნულია, ownCloud დაუკავშირდება მხოლოდ რეპლიკა სერვერს." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "გამორთეთ SSL სერთიფიკატის ვალიდაცია." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "იმ შემთხვევაში თუ მუშაობს მხოლოდ ეს ოფცია, დააიმპორტეთ LDAP სერვერის SSL სერთიფიკატი თქვენს ownCloud სერვერზე." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "მომხმარებლის დისფლეის სახელის ფილდი" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP ატრიბუტი მომხმარებლის ownCloud სახელის გენერაციისთვის." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "ჯგუფის დისფლეის სახელის ფილდი" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP ატრიბუტი ჯგუფის ownCloud სახელის გენერაციისთვის." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ka_GE/user_webdavauth.po b/l10n/ka_GE/user_webdavauth.po index 88af8f6bf4194e7ba66f266556ebb1194bf4b704..58a30e6736df5bd41d01e3586c0fbb36179250b1 100644 --- a/l10n/ka_GE/user_webdavauth.po +++ b/l10n/ka_GE/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Georgian (Georgia) (http://www.transifex.com/projects/p/owncloud/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV აუთენთიფიკაცია" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud–ი გამოგიგზავნით ანგარიშის მონაცემებს ამ URL–ზე. ეს პლაგინი შეამოწმებს პასუხს და მოახდენს მის ინტერპრეტაციას HTTP სტატუსკოდებში 401 და 403 დაუშვებელი მონაცემებისთვის, ხოლო სხვა დანარჩენს დაშვებადი მონაცემებისთვის." +msgstr "" diff --git a/l10n/kn/core.po b/l10n/kn/core.po index aef3d399ed344f0cee7ae2f3bb003ebf7e75ce60..a6e47dc7eddb056da553fdfba0c3bca127772f6e 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-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -msgid "{days} days ago" -msgstr "" +#: js/js.js:820 +msgid "%n day ago" +msgid_plural "%n days ago" +msgstr[0] "" -#: js/js.js:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -msgid "{months} months ago" -msgstr "" +#: js/js.js:822 +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" -#: js/js.js:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +221,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +242,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +458,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +491,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +609,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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_encryption.po b/l10n/kn/files_encryption.po index 227f1e73e33ce344b874bcec0bafd9f4d871a6b4..be1a9ea38cd55dfd2ff3bf4160103ed635ce7522 100644 --- a/l10n/kn/files_encryption.po +++ b/l10n/kn/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/kn/files_sharing.po b/l10n/kn/files_sharing.po index 2d27aa7fc366313df61ece51aa10ac7d16b263af..b4ca53433143dd6e89165aab87c585009c5777e3 100644 --- a/l10n/kn/files_sharing.po +++ b/l10n/kn/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/kn/files_trashbin.po b/l10n/kn/files_trashbin.po index 28bf4f67f97f354da1cd42c3be0695a8c9e8be88..4a8a4c3ae7630c84283190b2b60bd19ca2b9be1d 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,42 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/kn/files_versions.po b/l10n/kn/files_versions.po index c61eacfeba8e482b655777cd8adbf41858c15ed2..2292632cf6ad897c13d66b319ea72644bd82f474 100644 --- a/l10n/kn/files_versions.po +++ b/l10n/kn/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: kn\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/kn/lib.po b/l10n/kn/lib.po index 9b637e4cf9f37ac69179b1a00fd48e04377b80ba..6e1f85cdd109057ee09a6d7f91b92e67577829d4 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/kn/settings.po b/l10n/kn/settings.po index 517922a00c0553e24407070b078283ef84e8b3d1..224c7063ecdd7b1de37f7efd5236c66c7af44fa8 100644 --- a/l10n/kn/settings.po +++ b/l10n/kn/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/kn/user_webdavauth.po b/l10n/kn/user_webdavauth.po index 535cabb87b6e000d58ff08597fcca286f935ccb6..f9c9c99d4f2ba31cf453f3a4892c02dfdb249359 100644 --- a/l10n/kn/user_webdavauth.po +++ b/l10n/kn/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Kannada (http://www.transifex.com/projects/p/owncloud/language/kn/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ko/core.po b/l10n/ko/core.po index bb5c9fdd80e668679a0c03d37ffc928711e35f85..f8be8d34af65d646446e4a20500c92a416359c55 100644 --- a/l10n/ko/core.po +++ b/l10n/ko/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: smallsnail \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,55 @@ msgstr "11월" msgid "December" msgstr "12월" -#: 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 "1분 전" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes}분 전" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1시간 전" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours}시간 전" - -#: 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 "{days}일 전" +#: 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 "{months}개월 전" +#: 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 "년 전" @@ -227,8 +223,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "오류" @@ -248,123 +244,123 @@ msgstr "공유됨" msgid "Share" msgstr "공유" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "공유하는 중 오류 발생" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "공유 해제하는 중 오류 발생" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "권한 변경하는 중 오류 발생" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 님이 여러분 및 그룹 {group}와(과) 공유 중" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} 님이 공유 중" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "다음으로 공유" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "URL 링크로 공유" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "암호 보호" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "암호" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "퍼블릭 업로드 허용" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "이메일 주소" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "전송" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "만료 날짜 설정" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "만료 날짜" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "이메일로 공유:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "발견된 사람 없음" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "다시 공유할 수 없습니다" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "{user} 님과 {item}에서 공유 중" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "공유 해제" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "편집 가능" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "접근 제어" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "생성" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "업데이트" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "삭제" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "공유" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "암호로 보호됨" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "만료 날짜 해제 오류" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "만료 날짜 설정 오류" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "전송 중..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "이메일 발송됨" @@ -379,9 +375,10 @@ msgstr "업데이트가 실패하였습니다. 이 문제를 email 주소와 사용자 명을 정확 msgid "You will receive a link to reset your password via Email." msgstr "이메일로 암호 재설정 링크를 보냈습니다." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "사용자 이름" @@ -463,11 +460,11 @@ msgstr "도움말" msgid "Access forbidden" msgstr "접근 금지됨" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "클라우드를 찾을 수 없습니다" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +493,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "사용 중인 PHP 버전이 NULL 바이트 공격에 취약합니다 (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "ownCloud의 보안을 위하여 PHP 버전을 업데이트하십시오." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -517,68 +515,72 @@ msgid "" "because the .htaccess file does not work." msgstr ".htaccess 파일이 처리되지 않아서 데이터 디렉터리와 파일을 인터넷에서 접근할 수 없을 수도 있습니다." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "서버를 올바르게 설정하는 방법을 알아보려면 문서를 참고하십시오.." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "관리자 계정 만들기" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "고급" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "데이터 폴더" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "사용될 예정" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "데이터베이스 사용자" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "데이터베이스 암호" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "데이터베이스 이름" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "데이터베이스 테이블 공간" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "데이터베이스 호스트" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "설치 완료" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "로그아웃" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "자동 로그인이 거부되었습니다!" @@ -609,7 +611,7 @@ msgstr "로그인" msgid "Alternative Logins" msgstr "대체 " -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 2013 -# ujuc Gang , 2013 +# Sungjin Gang , 2013 +# Sungjin Gang , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,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 "이름 바꾸기" @@ -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:457 -msgid "1 file uploading" -msgstr "파일 1개 업로드 중" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "파일 업로드중" @@ -202,33 +195,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 "폴더 1개" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "폴더 {count}개" - -#: js/files.js:773 -msgid "1 file" -msgstr "파일 1개" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -287,45 +274,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/ko/files_encryption.po b/l10n/ko/files_encryption.po index 70a042b639c4b00734ca7dde60bd0eecc668ca51..e3428a601e89c4db73261109cf285f39abfbdee0 100644 --- a/l10n/ko/files_encryption.po +++ b/l10n/ko/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-22 09:20+0000\n" -"Last-Translator: smallsnail \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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ko/files_sharing.po b/l10n/ko/files_sharing.po index 10bb8308d044e2e26f5cec0729318f1607612914..f3be635c899724b86bafbdcc6a8b8091915a6e12 100644 --- a/l10n/ko/files_sharing.po +++ b/l10n/ko/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "암호" msgid "Submit" msgstr "제출" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 님이 폴더 %s을(를) 공유하였습니다" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 님이 파일 %s을(를) 공유하였습니다" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "다운로드" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "업로드" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "업로드 취소" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "다음 항목을 미리 볼 수 없음:" diff --git a/l10n/ko/files_trashbin.po b/l10n/ko/files_trashbin.po index 8f1646893ef1ee640e1e3225ecd26772b1bffc46..3e48f534a18e85e32eea1c454e0f115b58a6bf52 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "오류" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "영원히 삭제" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "이름" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "폴더 1개" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "폴더 {count}개" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "파일 1개" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "파일 {count}개" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ko/files_versions.po b/l10n/ko/files_versions.po index f92a63026989a27f73dff720be0a0e33a409319b..19ec188ee6c09997312cec52b88b40ba8f6485ca 100644 --- a/l10n/ko/files_versions.po +++ b/l10n/ko/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-20 02:37+0200\n" -"PO-Revision-Date: 2013-06-19 08:50+0000\n" -"Last-Translator: Shinjo Park \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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,41 +18,27 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "되돌릴 수 없습니다: %s" -#: history.php:40 -msgid "success" -msgstr "성공" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "파일 %s을(를) 버전 %s(으)로 되돌림" - -#: history.php:49 -msgid "failure" -msgstr "실패" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "파일 %s을(를) 버전 %s(으)로 되돌리지 못했음" +#: js/versions.js:7 +msgid "Versions" +msgstr "버전" -#: history.php:69 -msgid "No old versions available" -msgstr "오래된 버전을 사용할 수 없음" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "경로가 지정되지 않았음" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "버전" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "변경 단추를 눌러 이전 버전의 파일로 되돌릴 수 있습니다" +#: js/versions.js:149 +msgid "Restore" +msgstr "복원" diff --git a/l10n/ko/lib.po b/l10n/ko/lib.po index 720609c125c900a62e660eea885bdf86ba39776e..7b58ff4c090dc5228fd7e54129b2efa50d0f64a1 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-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: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,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 "내가 관리하는 웹 서비스" @@ -211,54 +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] "" #: 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 "년 전" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ko/settings.po b/l10n/ko/settings.po index f38b594cb61d4d28fc87134d8124dd043e833091..72c04c28e109c9070f261258202f0403e4bcd65e 100644 --- a/l10n/ko/settings.po +++ b/l10n/ko/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "올바른 암호를 입력해야 함" msgid "__language_name__" msgstr "한국어" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "보안 경고" -#: templates/admin.php:20 +#: 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 "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 것 같습니다. ownCloud에서 제공한 .htaccess 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "설정 경고" -#: templates/admin.php:34 +#: 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 "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "설치 가이드를 다시 한 번 확인하십시오." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "모듈 'fileinfo'가 없음" -#: templates/admin.php:49 +#: 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 "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "로캘이 작동하지 않음" -#: templates/admin.php:65 +#: 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 "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "인터넷에 연결할 수 없음" -#: templates/admin.php:80 +#: 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 "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "크론" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "개별 페이지를 불러올 때마다 실행" -#: templates/admin.php:113 +#: 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 "cron.php가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "공유" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "공유 API 사용하기" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "앱에서 공유 API를 사용할 수 있도록 허용" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "링크 허용" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "사용자가 개별 항목의 링크를 공유할 수 있도록 허용" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "재공유 허용" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "사용자에게 공유된 항목을 다시 공유할 수 있도록 허용" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "누구나와 공유할 수 있도록 허용" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "보안" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS 강제 사용" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "로그" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "로그 단계" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "더 중요함" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "덜 중요함" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "버전" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "현재 공간 중 %s/%s을(를) 사용 중입니다" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "암호" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "암호가 변경되었습니다" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "암호를 변경할 수 없음" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "현재 암호" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "새 암호" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "암호 변경" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "표시 이름" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "이메일" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "이메일 주소" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "암호 찾기 기능을 사용하려면 이메일 주소를 입력하십시오" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "언어" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "번역 돕기" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "경고: user_ldap 앱과 user_webdavauth 앱은 호환되지 않습니다. 오동작을 일으킬 수 있으므로, 시스템 관리자에게 요청하여 둘 중 하나만 사용하도록 하십시오." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "주 서버 비활성화" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "SSL 인증서 유효성 검사를 해제합니다." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "이 옵션을 사용해야 연결할 수 있는 경우에는 LDAP 서버의 SSL 인증서를 ownCloud로 가져올 수 있습니다." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "사용자의 표시 이름 필드" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP 속성은 사용자의 ownCloud 이름을 생성하기 위해 사용합니다." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "그룹의 표시 이름 필드" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP 속성은 그룹의 ownCloud 이름을 생성하기 위해 사용합니다." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ko/user_webdavauth.po b/l10n/ko/user_webdavauth.po index 73deb90e44b9249c5c9a44ee759942845c0bec5f..fbf66dad31d079094ec96d2920ccd2fe071fcaab 100644 --- a/l10n/ko/user_webdavauth.po +++ b/l10n/ko/user_webdavauth.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Korean (http://www.transifex.com/projects/p/owncloud/language/ko/)\n" "MIME-Version: 1.0\n" @@ -28,12 +28,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV 인증" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud에서 이 URL로 사용자 인증 정보를 보냅니다. 이 플러그인은 응답을 확인하여 HTTP 상태 코드 401이나 403이 돌아온 경우에 잘못된 인증 정보로 간주합니다. 다른 모든 상태 코드는 올바른 인증 정보로 간주합니다." +msgstr "" diff --git a/l10n/ku_IQ/core.po b/l10n/ku_IQ/core.po index 14175c0115c52e1ac623dbe6e14302d9b9426cc2..bb8c2a9f7100c8c3f8d24fedcf7432154a1b21e7 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes 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:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: 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 "" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "هه‌ڵه" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "وشەی تێپەربو" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "ناوی به‌کارهێنه‌ر" @@ -461,11 +462,11 @@ msgstr "یارمەتی" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "هیچ نه‌دۆزرایه‌وه‌" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "هه‌ڵبژاردنی پیشكه‌وتوو" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "زانیاری فۆڵده‌ر" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "به‌كارهێنه‌ری داتابه‌یس" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "وشه‌ی نهێنی داتا به‌یس" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "ناوی داتابه‌یس" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "هۆستی داتابه‌یس" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "كۆتایی هات ده‌ستكاریه‌كان" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "چوونەدەرەوە" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\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/ku_IQ/files_encryption.po b/l10n/ku_IQ/files_encryption.po index 0adc093d2f9911e7889547fd1116f188bbc70eee..1aeb3d52b0a7963ebb2839526feb1a096a9f6075 100644 --- a/l10n/ku_IQ/files_encryption.po +++ b/l10n/ku_IQ/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ku_IQ/files_sharing.po b/l10n/ku_IQ/files_sharing.po index 5cde0384b4d149c3ac8b705ef34ce0fcbc304cf9..764a162a1416d86ef9db1bcaa805ea7b06c15d09 100644 --- a/l10n/ku_IQ/files_sharing.po +++ b/l10n/ku_IQ/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "وشەی تێپەربو" msgid "Submit" msgstr "ناردن" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s دابه‌شی کردووه‌ بوخچه‌ی %s له‌گه‌ڵ تۆ" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s دابه‌شی کردووه‌ په‌ڕگه‌یی %s له‌گه‌ڵ تۆ" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "داگرتن" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "بارکردن" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "هیچ پێشبینیه‌ك ئاماده‌ نیه بۆ" diff --git a/l10n/ku_IQ/files_trashbin.po b/l10n/ku_IQ/files_trashbin.po index 8eb7625f8c64ec9f2b1f8931ee61f79da388ce43..1addb81ba48201655f96d36e0e3f9c62fedfe70f 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "هه‌ڵه" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "ناو" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/ku_IQ/files_versions.po b/l10n/ku_IQ/files_versions.po index 65c39e334385b96025e893d3f7d5c5478a6f8ef7..d43375f5e909d37cb64d32fa3bd630bdb9b8d06c 100644 --- a/l10n/ku_IQ/files_versions.po +++ b/l10n/ku_IQ/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ku_IQ\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "وه‌شان" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ku_IQ/lib.po b/l10n/ku_IQ/lib.po index 3c562c92d4cf956a6e2aed129955bf0523078154..4ae5859b98a0e2785ca0e6650d087079f34135ba 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-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: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/ku_IQ/settings.po b/l10n/ku_IQ/settings.po index 18e3c050e462adbdd551256eb21a8f6688ba7ebc..86c93e12fab37acd88504dd161d6a9c3ee650e2d 100644 --- a/l10n/ku_IQ/settings.po +++ b/l10n/ku_IQ/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "وشەی تێپەربو" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "وشەی نهێنی نوێ" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "ئیمه‌یل" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ku_IQ/user_webdavauth.po b/l10n/ku_IQ/user_webdavauth.po index 14906a0a573077fd1c8da1c6b10411d5dfb74c37..3bedad7d12ee198c5951c175fd77b91e3f8ab804 100644 --- a/l10n/ku_IQ/user_webdavauth.po +++ b/l10n/ku_IQ/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Kurdish (Iraq) (http://www.transifex.com/projects/p/owncloud/language/ku_IQ/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/l10n.pl b/l10n/l10n.pl index b07d6d686bc4a9fb77d7187f59ee10156816e07a..851be8f7ccf1fcddcc8c46602135c833294afa4d 100644 --- a/l10n/l10n.pl +++ b/l10n/l10n.pl @@ -39,7 +39,7 @@ sub crawlFiles{ foreach my $i ( @files ){ next if substr( $i, 0, 1 ) eq '.'; next if $i eq 'l10n'; - + if( -d $dir.'/'.$i ){ push( @found, crawlFiles( $dir.'/'.$i )); } @@ -64,6 +64,16 @@ sub readIgnorelist{ return %ignore; } +sub getPluralInfo { + my( $info ) = @_; + + # get string + $info =~ s/.*Plural-Forms: (.+)\\n.*/$1/; + $info =~ s/^(.*)\\n.*/$1/g; + + return $info; +} + my $task = shift( @ARGV ); my $place = '..'; @@ -100,11 +110,17 @@ if( $task eq 'read' ){ foreach my $file ( @totranslate ){ next if $ignore{$file}; - my $keyword = ( $file =~ /\.js$/ ? 't:2' : 't'); + my $keywords = ''; + if( $file =~ /\.js$/ ){ + $keywords = '--keyword=t:2 --keyword=n:2,3'; + } + else{ + $keywords = '--keyword=t --keyword=n:1,2'; + } my $language = ( $file =~ /\.js$/ ? 'Python' : 'PHP'); my $joinexisting = ( -e $output ? '--join-existing' : ''); print " Reading $file\n"; - `xgettext --output="$output" $joinexisting --keyword=$keyword --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; + `xgettext --output="$output" $joinexisting $keywords --language=$language "$file" --from-code=UTF-8 --package-version="5.0.0" --package-name="ownCloud Core" --msgid-bugs-address="translations\@owncloud.org"`; } chdir( $whereami ); } @@ -118,7 +134,7 @@ elsif( $task eq 'write' ){ print " Processing $app\n"; foreach my $language ( @languages ){ next if $language eq 'templates'; - + my $input = "${whereami}/$language/$app.po"; next unless -e $input; @@ -126,18 +142,38 @@ elsif( $task eq 'write' ){ my $array = Locale::PO->load_file_asarray( $input ); # Create array my @strings = (); + my $plurals; + foreach my $string ( @{$array} ){ - next if $string->msgid() eq '""'; - next if $string->msgstr() eq '""'; - push( @strings, $string->msgid()." => ".$string->msgstr()); + if( $string->msgid() eq '""' ){ + # Translator information + $plurals = getPluralInfo( $string->msgstr()); + } + elsif( defined( $string->msgstr_n() )){ + # plural translations + my @variants = (); + my $identifier = $string->msgid()."::".$string->msgid_plural(); + $identifier =~ s/"/_/g; + + foreach my $variant ( sort { $a <=> $b} keys( %{$string->msgstr_n()} )){ + push( @variants, $string->msgstr_n()->{$variant} ); + } + + push( @strings, "\"$identifier\" => array(".join(",", @variants).")"); + } + else{ + # singular translations + next if $string->msgstr() eq '""'; + push( @strings, $string->msgid()." => ".$string->msgstr()); + } } next if $#strings == -1; # Skip empty files # Write PHP file open( OUT, ">$language.php" ); - print OUT "\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:293 +#: js/js.js:355 msgid "Settings" msgstr "Astellungen" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "Sekonnen hir" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 Minutt hir" +#: 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 "virun {minutes} Minutten" +#: 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 "virun 1 Stonn" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "virun {hours} Stonnen" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "haut" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "gëschter" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "leschte Mount" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "Méint hir" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "Lescht Joer" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "Joren hir" @@ -226,8 +226,8 @@ msgstr "Den Typ vum Object ass net uginn." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feeler" @@ -247,123 +247,123 @@ msgstr "Gedeelt" msgid "Share" msgstr "Deelen" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feeler beim Deelen" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Feeler beim Annuléiere vum Deelen" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Feeler beim Ännere vun de Rechter" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeelt mat dir an der Grupp {group} vum {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Gedeelt mat dir vum {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Deele mat" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Mat Link deelen" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Passwuertgeschützt" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Passwuert" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Ëffentlechen Upload erlaaben" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Link enger Persoun mailen" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Schécken" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Verfallsdatum setzen" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Verfallsdatum" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Via E-Mail deelen:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Keng Persoune fonnt" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Weiderdeelen ass net erlaabt" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Gedeelt an {item} mat {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Net méi deelen" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "kann änneren" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "Zougrëffskontroll" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "erstellen" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "aktualiséieren" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "läschen" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "deelen" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passwuertgeschützt" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Feeler beim Läsche vum Verfallsdatum" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Feeler beim Setze vum Verfallsdatum" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Gëtt geschéckt..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email geschéckt" @@ -378,9 +378,10 @@ msgstr "Den Update war net erfollegräich. Mell dëse Problem w.e.gl derHues du séchergestallt dass deng Email respektiv msgid "You will receive a link to reset your password via Email." msgstr "Du kriss e Link fir däi Passwuert zréckzesetze via Email geschéckt." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Benotzernumm" @@ -462,11 +463,11 @@ msgstr "Hëllef" msgid "Access forbidden" msgstr "Zougrëff net erlaabt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud net fonnt" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +496,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Deng PHP-Versioun ass verwonnbar duerch d'NULL-Byte-Attack (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Aktualiséier w.e.gl deng PHP-Installatioun fir ownCloud sécher benotzen ze kënnen." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Däin Daten-Dossier an deng Fichieren si wahrscheinlech iwwert den Internet accessibel well den .htaccess-Fichier net funktionnéiert." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Kuck w.e.gl. an der Dokumentatioun fir Informatiounen iwwert eng uerdentlech Konfiguratioun vum Server." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "En Admin-Account uleeën" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avancéiert" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Daten-Dossier" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "D'Datebank konfiguréieren" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "wärt benotzt ginn" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Datebank-Benotzer" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Datebank-Passwuert" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Datebank Numm" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tabelle-Plaz vun der Datebank" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Datebank-Server" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Installatioun ofschléissen" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s ass verfügbar. Kréi méi Informatiounen doriwwer wéi d'Aktualiséierung ofleeft." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Ofmellen" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatesch Umeldung ofgeleent!" @@ -608,7 +614,7 @@ msgstr "Umellen" msgid "Alternative Logins" msgstr "Alternativ Umeldungen" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Deelen" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Läschen" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" 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: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 "Numm" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Gréisst" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 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 @@ -285,45 +275,49 @@ msgstr "Dossier" 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 "Upload ofbriechen" -#: 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 "Hei ass näischt. Lued eppes rop!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Download" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Net méi deelen" -#: templates/index.php:107 +#: 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" -#: 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 "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." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fichieren gi gescannt, war weg." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Momentane Scan" diff --git a/l10n/lb/files_encryption.po b/l10n/lb/files_encryption.po index cecd9c334341e2e25a4e3583a980ab309016bb05..15dacc9dc199ed9e350d03f763e86fed32301740 100644 --- a/l10n/lb/files_encryption.po +++ b/l10n/lb/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lb/files_sharing.po b/l10n/lb/files_sharing.po index 1575fc1547dddd19b7a87f80ddcb86e6e11c5bb7..d221e3871f430c10e02ee994197bbad9c9813bb3 100644 --- a/l10n/lb/files_sharing.po +++ b/l10n/lb/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: llaera \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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passwuert" msgid "Submit" msgstr "Fortschécken" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s huet den Dossier %s mad der gedeelt" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt den Fichier %s mad dir" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Download" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Eroplueden" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload ofbriechen" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Keeng Preview do fir" diff --git a/l10n/lb/files_trashbin.po b/l10n/lb/files_trashbin.po index 16059ecf97e3d329ca529a6b4bd092aa14a41085..6e89845dc20912b6c68a794691faee837b143544 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Fehler" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Numm" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/lb/files_versions.po b/l10n/lb/files_versions.po index 8c2aad478e12eb1ee92d1d91f5d0990a68e6427f..4825c56c03b74f14b8b546eaebdb4de26bdaa057 100644 --- a/l10n/lb/files_versions.po +++ b/l10n/lb/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: lb\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/lb/lib.po b/l10n/lb/lib.po index 12f02c1dd412b2f969507c883f4dee0b0e7dbb63..1e270aee7ae39793b51924ce9aaa318801ad06e8 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-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: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Web-Servicer ënnert denger Kontroll" @@ -211,54 +207,50 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lb/settings.po b/l10n/lb/settings.po index 7f25189fe191c92eb941064bb3e7ba42cd179db8..5dc543150ee3a443dc74252da5e6026f05d966e5 100644 --- a/l10n/lb/settings.po +++ b/l10n/lb/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Sécherheets Warnung" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Share API aschalten" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Erlab Apps d'Share API ze benotzen" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Links erlaben" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Resharing erlaben" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Useren erlaben mat egal wiem ze sharen" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Useren nëmmen erlaben mat Useren aus hirer Grupp ze sharen" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Méi" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passwuert" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Konnt däin Passwuert net änneren" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Momentan 't Passwuert" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Neit Passwuert" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Passwuert änneren" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Deng Email Adress" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Gëff eng Email Adress an fir d'Passwuert recovery ze erlaben" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Sprooch" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Hëllef iwwersetzen" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/lb/user_webdavauth.po b/l10n/lb/user_webdavauth.po index 20d27db5b444be2aabb3c354e095e4e3e8abe2ed..60cd023d5cd6348469f81b30ec86cab2f5377acc 100644 --- a/l10n/lb/user_webdavauth.po +++ b/l10n/lb/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Luxembourgish (http://www.transifex.com/projects/p/owncloud/language/lb/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/lt_LT/core.po b/l10n/lt_LT/core.po index d960944d87f10341ad7553b4338c397fb9ef08a7..40770b80fd5089e1bc585a6019c505c55398c2b2 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Nustatymai" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "prieš sekundę" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "Prieš 1 minutę" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "Prieš {count} minutes" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "prieš 1 valandą" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "prieš {hours} valandas" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:818 msgid "today" msgstr "šiandien" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "vakar" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "praeitą mėnesį" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "prieš mėnesį" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "praeitais metais" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "prieš metus" @@ -227,8 +231,8 @@ msgstr "Objekto tipas nenurodytas." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Klaida" @@ -248,123 +252,123 @@ msgstr "Dalinamasi" msgid "Share" msgstr "Dalintis" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Klaida, dalijimosi metu" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Klaida, kai atšaukiamas dalijimasis" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Klaida, keičiant privilegijas" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Pasidalino su Jumis ir {group} grupe {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Pasidalino su Jumis {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Dalintis su" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Dalintis nuoroda" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Apsaugotas slaptažodžiu" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Slaptažodis" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Nusiųsti nuorodą paštu" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Siųsti" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Nustatykite galiojimo laiką" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Galiojimo laikas" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Dalintis per el. paštą:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Žmonių nerasta" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Dalijinasis išnaujo negalimas" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Pasidalino {item} su {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Nebesidalinti" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "gali redaguoti" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "priėjimo kontrolė" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "sukurti" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "atnaujinti" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "ištrinti" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "dalintis" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Apsaugota slaptažodžiu" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Klaida nuimant galiojimo laiką" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Klaida nustatant galiojimo laiką" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Siunčiama..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Laiškas išsiųstas" @@ -379,9 +383,10 @@ msgstr "Atnaujinimas buvo nesėkmingas. PApie tai prašome pranešti the Ar tikrai jūsų el paštas/vartotojo vardas buvo teisingi?" msgid "You will receive a link to reset your password via Email." msgstr "Elektroniniu paštu gausite nuorodą, su kuria galėsite iš naujo nustatyti slaptažodį." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Prisijungimo vardas" @@ -463,11 +468,11 @@ msgstr "Pagalba" msgid "Access forbidden" msgstr "Priėjimas draudžiamas" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Negalima rasti" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +501,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Jūsų PHP versija yra pažeidžiama prieš NULL Byte ataką (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Prašome atnaujinti savo PHP norint naudotis savo ownCloud saugiai." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -517,68 +523,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Jūsų failai yra tikriausiai prieinami per internetą nes .htaccess failas neveikia." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Norint gauti daugiau informacijos apie tai kaip tinkamai nustatyit savo serverį, prašome perskaityti dokumentaciją." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Sukurti administratoriaus paskyrą" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Išplėstiniai" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Duomenų katalogas" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Nustatyti duomenų bazę" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "bus naudojama" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Duomenų bazės vartotojas" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Duomenų bazės slaptažodis" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Duomenų bazės pavadinimas" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Duomenų bazės loginis saugojimas" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Duomenų bazės serveris" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Baigti diegimą" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s yra prieinama. Gaukite daugiau informacijos apie atnaujinimą." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Atsijungti" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatinis prisijungimas atmestas!" @@ -609,7 +619,7 @@ msgstr "Prisijungti" msgid "Alternative Logins" msgstr "Alternatyvūs prisijungimai" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Dalintis" msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Ištrinti" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Pervadinti" @@ -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:457 -msgid "1 file uploading" -msgstr "įkeliamas 1 failas" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "įkeliami failai" @@ -201,33 +196,31 @@ msgstr "Jūsų atsisiuntimas yra paruošiamas. tai gali užtrukti jei atsisiunč msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Negalimas aplanko pavadinimas. 'Shared' pavadinimas yra rezervuotas ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Pavadinimas" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dydis" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Pakeista" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 aplankalas" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} aplankalai" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 failas" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 @@ -286,45 +279,49 @@ msgstr "Katalogas" msgid "From link" msgstr "Iš nuorodos" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ištrinti failai" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Jūs neturite rašymo leidimo." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Čia tuščia. Įkelkite ką nors!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Atsisiųsti" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Nebesidalinti" -#: templates/index.php:107 +#: 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" -#: 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 "Bandomų įkelti failų dydis viršija maksimalų, kuris leidžiamas šiame serveryje" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skenuojami failai, prašome palaukti." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Šiuo metu skenuojama" diff --git a/l10n/lt_LT/files_encryption.po b/l10n/lt_LT/files_encryption.po index a17364ca8ecb81a0c52cebebd5d65a187518a2ce..de2cfd35f39670f7b02d2dd436996168dab6d558 100644 --- a/l10n/lt_LT/files_encryption.po +++ b/l10n/lt_LT/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lt_LT/files_sharing.po b/l10n/lt_LT/files_sharing.po index c6d59f11cd3139a39c7e3dea800ea05de9d6df96..54d647f95f33371f2f0a8ef79290ef779c9c8ae1 100644 --- a/l10n/lt_LT/files_sharing.po +++ b/l10n/lt_LT/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "Slaptažodis" msgid "Submit" msgstr "Išsaugoti" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s pasidalino su jumis %s aplanku" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s pasidalino su jumis %s failu" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Atsisiųsti" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Įkelti" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Atšaukti siuntimą" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Peržiūra nėra galima" diff --git a/l10n/lt_LT/files_trashbin.po b/l10n/lt_LT/files_trashbin.po index d0dd18b6ea171ac49ead298595c40341da8b2912..febfc2f1b015d78dc37da7715d22a538fc576160 100644 --- a/l10n/lt_LT/files_trashbin.po +++ b/l10n/lt_LT/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: fizikiukas \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,45 +28,47 @@ msgstr "Nepavyko negrįžtamai ištrinti %s" msgid "Couldn't restore %s" msgstr "Nepavyko atkurti %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "atkurti" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Klaida" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "failą ištrinti negrįžtamai" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Ištrinti negrįžtamai" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Pavadinimas" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Ištrinti" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 aplankalas" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} aplankalai" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 failas" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} failai" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/lt_LT/files_versions.po b/l10n/lt_LT/files_versions.po index 393a714fb588b06acbfab9f11d531d8556234b6d..d3d119b1c3fd3f7eb575b3660bc9ed79f2a1e367 100644 --- a/l10n/lt_LT/files_versions.po +++ b/l10n/lt_LT/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: lt_LT\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Nepavyko atstatyti: %s" -#: history.php:40 -msgid "success" -msgstr "pavyko" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Dokumentas %s buvo atstatytas į versiją %s" - -#: history.php:49 -msgid "failure" -msgstr "klaida" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Dokumento %s nepavyko atstatyti į versiją %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versijos" -#: history.php:69 -msgid "No old versions available" -msgstr "Nėra senų versijų" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Nenurodytas kelias" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versijos" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Atstatykite dokumentą į prieš tai buvusią versiją spausdami ant jo atstatymo mygtuko" +#: js/versions.js:149 +msgid "Restore" +msgstr "Atstatyti" diff --git a/l10n/lt_LT/lib.po b/l10n/lt_LT/lib.po index c91fa67de3c4c49458b28988ac91e7917397f450..14bb5eb63439877c2a4c5094b3f9ff96b9280e29 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-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: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "jūsų valdomos web paslaugos" @@ -211,54 +207,54 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lt_LT/settings.po b/l10n/lt_LT/settings.po index 8e27e4da55f1e26187661ddeaa78cf6fe9a3cedd..5dd33ac34191228b87602a1c250f35ffeff26493 100644 --- a/l10n/lt_LT/settings.po +++ b/l10n/lt_LT/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "Slaptažodis turi būti tinkamas" msgid "__language_name__" msgstr "Kalba" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Saugumo pranešimas" -#: templates/admin.php:20 +#: 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 "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebūtų pasiekiami per internetą, arba persikelti juos kitur." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Trūksta 'fileinfo' modulio" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Dalijimasis" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Lesti nuorodas" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Leisti dalintis" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Saugumas" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Žurnalas" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Žurnalo išsamumas" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Daugiau" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mažiau" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versija" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Slaptažodis" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Jūsų slaptažodis buvo pakeistas" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Neįmanoma pakeisti slaptažodžio" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Dabartinis slaptažodis" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Naujas slaptažodis" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Pakeisti slaptažodį" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "El. Paštas" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Jūsų el. pašto adresas" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Pamiršto slaptažodžio atkūrimui įveskite savo el. pašto adresą" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Kalba" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Padėkite išversti" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "Išjungti SSL sertifikato tikrinimą." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/lt_LT/user_webdavauth.po b/l10n/lt_LT/user_webdavauth.po index 401e8edc0f3fabb90514d7a4339ff586d133265a..72eda2b521ba3bfa6b9007b232c7778522e49aef 100644 --- a/l10n/lt_LT/user_webdavauth.po +++ b/l10n/lt_LT/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/owncloud/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV autorizavimas" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud išsiųs naudotojo duomenis į šį WWW adresą. Šis įskiepis patikrins gautą atsakymą ir interpretuos HTTP būsenos kodą 401 ir 403 kaip negaliojančius duomenis, ir visus kitus gautus atsakymus kaip galiojančius duomenis. " +msgstr "" diff --git a/l10n/lv/core.po b/l10n/lv/core.po index e13dfd6d7129530ffbb2f0721493b211a2e41684..c4920a2fa3afc18bc43a039bb9eb31d39fb117c8 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Iestatījumi" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekundes atpakaļ" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "pirms 1 minūtes" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "pirms {minutes} minūtēm" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "pirms 1 stundas" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "pirms {hours} stundām" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:818 msgid "today" msgstr "šodien" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "vakar" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "pagājušajā mēnesī" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "mēnešus atpakaļ" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "gājušajā gadā" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "gadus atpakaļ" @@ -225,8 +229,8 @@ msgstr "Nav norādīts objekta tips." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Kļūda" @@ -246,123 +250,123 @@ msgstr "Kopīgs" msgid "Share" msgstr "Dalīties" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Kļūda, daloties" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Kļūda, beidzot dalīties" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Kļūda, mainot atļaujas" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} dalījās ar jums un grupu {group}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} dalījās ar jums" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Dalīties ar" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Dalīties ar saiti" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Aizsargāt ar paroli" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Parole" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Sūtīt saiti personai pa e-pastu" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Sūtīt" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Iestaties termiņa datumu" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Termiņa datums" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Dalīties, izmantojot e-pastu:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Nav atrastu cilvēku" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Atkārtota dalīšanās nav atļauta" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Dalījās ar {item} ar {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "var rediģēt" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "piekļuves vadība" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "izveidot" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "atjaunināt" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "dzēst" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "dalīties" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Aizsargāts ar paroli" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Kļūda, noņemot termiņa datumu" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Kļūda, iestatot termiņa datumu" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Sūta..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Vēstule nosūtīta" @@ -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}" @@ -400,7 +405,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Jūs savā epastā saņemsiet interneta saiti, caur kuru varēsiet atjaunot paroli." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Lietotājvārds" @@ -461,11 +466,11 @@ msgstr "Palīdzība" msgid "Access forbidden" msgstr "Pieeja ir liegta" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Mākonis netika atrasts" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +499,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Visticamāk, jūsu datu direktorija un datnes ir pieejamas no interneta, jo .htaccess datne nedarbojas." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Lai uzzinātu, kā pareizi jākonfigurē šis serveris, skatiet dokumentāciju." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Izveidot administratora kontu" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Paplašināti" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datu mape" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfigurēt datubāzi" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "tiks izmantots" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Datubāzes lietotājs" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Datubāzes parole" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Datubāzes nosaukums" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Datubāzes tabulas telpa" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Datubāzes serveris" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Pabeigt iestatīšanu" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -607,7 +617,7 @@ msgstr "Ierakstīties" msgid "Alternative Logins" msgstr "Alternatīvās pieteikšanās" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Dalīties" msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Dzēst" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Pārsaukt" @@ -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:457 -msgid "1 file uploading" -msgstr "Augšupielādē 1 datni" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "" @@ -200,33 +195,31 @@ msgstr "Tiek sagatavota lejupielāde. Tas var aizņemt kādu laiciņu, ja datnes msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nederīgs mapes nosaukums. “Koplietots” izmantojums ir rezervēts ownCloud servisam." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nosaukums" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Izmērs" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Mainīts" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mape" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapes" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 datne" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 @@ -285,45 +278,49 @@ msgstr "Mape" msgid "From link" msgstr "No saites" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Dzēstās datnes" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Jums nav tiesību šeit rakstīt." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Te vēl nekas nav. Rīkojies, sāc augšupielādēt!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Lejupielādēt" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Pārtraukt dalīšanos" -#: templates/index.php:107 +#: 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" -#: 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 "Augšupielādējamās datnes pārsniedz servera pieļaujamo datņu augšupielādes apjomu" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Datnes šobrīd tiek caurskatītas, lūdzu, uzgaidiet." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Šobrīd tiek caurskatīts" diff --git a/l10n/lv/files_encryption.po b/l10n/lv/files_encryption.po index f75bfcbdf54bbfdc2756942932898491ddd4ee31..155b94c6e20db46be67933097e9629af745a50bf 100644 --- a/l10n/lv/files_encryption.po +++ b/l10n/lv/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/lv/files_sharing.po b/l10n/lv/files_sharing.po index 260a895ad749e81018a5615968e1b0d8ef252f97..1afacc6cca0cc311c6104850f91054e202bd93ea 100644 --- a/l10n/lv/files_sharing.po +++ b/l10n/lv/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Parole" msgid "Submit" msgstr "Iesniegt" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ar jums dalījās ar mapi %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ar jums dalījās ar datni %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Lejupielādēt" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Augšupielādēt" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Atcelt augšupielādi" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nav pieejams priekšskatījums priekš" diff --git a/l10n/lv/files_trashbin.po b/l10n/lv/files_trashbin.po index 29261164ef31cb000c730e1f6830c483841c89a3..0bee8becab5448c0aa0294440d54e0e257f76f80 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,47 @@ msgstr "Nevarēja pilnībā izdzēst %s" msgid "Couldn't restore %s" msgstr "Nevarēja atjaunot %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "veikt atjaunošanu" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Kļūda" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "dzēst datni pavisam" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Dzēst pavisam" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nosaukums" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Dzēsts" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mape" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} mapes" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 datne" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} datnes" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/lv/files_versions.po b/l10n/lv/files_versions.po index 440afe984ad8047dd84e45ab87ca079daaf49cde..2fd25c266eac11473971fceb1a40fd7e7488c172 100644 --- a/l10n/lv/files_versions.po +++ b/l10n/lv/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Nevarēja atgriezt — %s" -#: history.php:40 -msgid "success" -msgstr "veiksme" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Datne %s tika atgriezt uz versiju %s" - -#: history.php:49 -msgid "failure" -msgstr "neveiksme" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Datni %s nevarēja atgriezt uz versiju %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versijas" -#: history.php:69 -msgid "No old versions available" -msgstr "Nav pieejamu vecāku versiju" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Nav norādīts ceļš" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versijas" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Atgriez datni uz iepriekšēju versiju, spiežot uz tās atgriešanas pogu" +#: js/versions.js:149 +msgid "Restore" +msgstr "Atjaunot" diff --git a/l10n/lv/lib.po b/l10n/lv/lib.po index bf2fd831db6badc24cc10c4fae57967b53741935..94dcd5afe01abc2abfcb4436553a58a3b1de8c63 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-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: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "tīmekļa servisi tavā varā" @@ -210,54 +206,54 @@ 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ļ" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/lv/settings.po b/l10n/lv/settings.po index bbac7ca448a5f77fc47dcde01c6857778a1f3ca9..a4ece9b54c1aa656c9842173d6e7e1b89e630fa9 100644 --- a/l10n/lv/settings.po +++ b/l10n/lv/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "Jānorāda derīga parole" msgid "__language_name__" msgstr "__valodas_nosaukums__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Brīdinājums par drošību" -#: templates/admin.php:20 +#: 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 "Jūsu datu direktorija un datnes visdrīzāk ir pieejamas no interneta. ownCloud nodrošinātā .htaccess datne nedarbojas. Mēs iesakām konfigurēt serveri tā, lai datu direktorija vairs nebūtu pieejama, vai arī pārvietojiet datu direktoriju ārpus tīmekļa servera dokumentu saknes." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Iestatīšanas brīdinājums" -#: templates/admin.php:34 +#: 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 "Jūsu serveris vēl nav pareizi iestatīts, lai ļautu sinhronizēt datnes, jo izskatās, ka WebDAV saskarne ir salauzta." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Lūdzu, vēlreiz pārbaudiet instalēšanas palīdzību." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Trūkst modulis “fileinfo”" -#: templates/admin.php:49 +#: 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 "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Lokāle nestrādā" -#: templates/admin.php:65 +#: 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 "Šis ownCloud serveris nevar iestatīt sistēmas lokāli uz %s. Tas nozīmē, ka varētu būt problēmas ar noteiktām rakstzīmēm datņu nosaukumos. Mēs iesakām instalēt vajadzīgās pakotnes savā sistēmā %s atbalstam." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Interneta savienojums nedarbojas" -#: templates/admin.php:80 +#: 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 "Šim ownCloud serverim nav strādājoša interneta savienojuma. Tas nozīmē, ka dažas no šīm iespējām, piemēram, ārējas krātuves montēšana, paziņošana par atjauninājumiem vai trešās puses programmatūras instalēšana nestrādā. Varētu nestrādāt attālināta piekļuve pie datnēm un paziņojumu e-pasta vēstuļu sūtīšana. Mēs iesakām aktivēt interneta savienojumu šim serverim, ja vēlaties visas ownCloud iespējas." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Izpildīt vienu uzdevumu ar katru ielādēto lapu" -#: templates/admin.php:113 +#: 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 "cron.php ir reģistrēts webcron servisā. Izsauciet cron.php lapu ownCloud saknē caur http reizi sekundē." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Izmantot sistēmas cron servisu. Izsauciet cron.php datni ownCloud mapē caur sistēmas cornjob reizi minūtē." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Dalīšanās" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Aktivēt koplietošanas API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Ļauj lietotnēm izmantot koplietošanas API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Atļaut saites" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Ļaut lietotājiem publiski dalīties ar vienumiem, izmantojot saites" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Atļaut atkārtotu koplietošanu" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Ļaut lietotājiem dalīties ar vienumiem atkārtoti" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Ļaut lietotājiem dalīties ar visiem" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Ļaut lietotājiem dalīties ar lietotājiem to grupās" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Drošība" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Uzspiest HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Piespiež klientus savienoties ar ownCloud caur šifrētu savienojumu." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Lūdzu, savienojieties ar šo ownCloud pakalpojumu caur HTTPS, lai aktivētu vai deaktivētu SSL piemērošanu." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Žurnāls" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Žurnāla līmenis" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Vairāk" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mazāk" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versija" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Jūs lietojat %s no pieejamajiem %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parole" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Jūru parole tika nomainīta" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Nevar nomainīt jūsu paroli" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Pašreizējā parole" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Jauna parole" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Mainīt paroli" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Redzamais vārds" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-pasts" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Jūsu e-pasta adrese" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Ievadiet e-pasta adresi, lai vēlāk varētu atgūt paroli, ja būs nepieciešamība" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Valoda" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Palīdzi tulkot" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ msgstr "Apstiprināt dzēšanu" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Brīdinājums: lietotnes user_ldap un user_webdavauth ir nesavietojamas. Tās var izraisīt negaidītu uzvedību. Lūdzu, prasiet savam sistēmas administratoram kādu no tām deaktivēt." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,8 +221,8 @@ msgid "Disable Main Server" msgstr "Deaktivēt galveno serveri" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Kad ieslēgts, ownCloud savienosies tikai ar kopijas serveri." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Izslēgt SSL sertifikātu validēšanu." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Ja savienojums darbojas ar šo opciju, importē LDAP serveru SSL sertifikātu savā ownCloud serverī." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Lietotāja redzamā vārda lauks" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP atribūts, ko izmantot lietotāja ownCloud vārda veidošanai." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Grupas redzamā nosaukuma lauks" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP atribūts, ko izmantot grupas ownCloud nosaukuma veidošanai." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/lv/user_webdavauth.po b/l10n/lv/user_webdavauth.po index cdc12e2a8cec7897e2b6d566e9c4b506e1e14940..55a3ae91a62a7d037e81bcb07aa8afe80035dc2c 100644 --- a/l10n/lv/user_webdavauth.po +++ b/l10n/lv/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Latvian (http://www.transifex.com/projects/p/owncloud/language/lv/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV autentifikācija" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud sūtīs lietotāja akreditācijas datus uz šo URL. Šis spraudnis pārbauda atbildi un interpretē HTTP statusa kodus 401 un 403 kā nederīgus akreditācijas datus un visas citas atbildes kā derīgus akreditācijas datus." +msgstr "" diff --git a/l10n/mk/core.po b/l10n/mk/core.po index fef4f3e38479635f2f14a9ede515cebc10a47f2a..b99d5913b45811c33ff257a49b941aa85be4ef23 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "пред 1 минута" +#: 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 "пред {minutes} минути" +#: 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 "пред 1 час" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "пред {hours} часови" - -#: 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 "пред {days} денови" +#: 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 "пред {months} месеци" +#: 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 "пред години" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "Сподели" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Грешка при споделување" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Грешка при прекин на споделување" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Грешка при промена на привилегии" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Споделено со Вас и групата {group} од {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Споделено со Вас од {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Сподели со" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Сподели со врска" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Заштити со лозинка" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Лозинка" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Прати врска по е-пошта на личност" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Прати" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Постави рок на траење" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Рок на траење" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Сподели по е-пошта:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Не се најдени луѓе" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Повторно споделување не е дозволено" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Споделено во {item} со {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Не споделувај" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "може да се измени" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "контрола на пристап" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "креирај" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "ажурирај" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "избриши" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "сподели" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Заштитено со лозинка" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Грешка при тргање на рокот на траење" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Грешка при поставување на рок на траење" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Праќање..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Ќе добиете врска по е-пошта за да може да ја ресетирате Вашата лозинка." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Корисничко име" @@ -461,11 +462,11 @@ msgstr "Помош" msgid "Access forbidden" msgstr "Забранет пристап" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облакот не е најден" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Направете администраторска сметка" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Фолдер со податоци" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "ќе биде користено" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Корисник на база" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Лозинка на база" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Име на база" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Табела во базата на податоци" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Сервер со база" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Заврши го подесувањето" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Одјава" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Одбиена автоматска најава!" @@ -607,7 +613,7 @@ msgstr "Најава" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\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 "заменета {new_name} со {old_name}" msgid "undo" msgstr "врати" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "1 датотека се подига" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: 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 "1 папка" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папки" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -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/mk/files_encryption.po b/l10n/mk/files_encryption.po index 377a5a10467d6faf6316559f15ebd23bce3a716e..466308d7950c3fd34b012831a6c1b6d2c48b0c34 100644 --- a/l10n/mk/files_encryption.po +++ b/l10n/mk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/mk/files_sharing.po b/l10n/mk/files_sharing.po index 726a5e18b7f6b6ce290de88b9d07776251108347..ffd5a17d6e775274b0799ae91f195b19c1a8c702 100644 --- a/l10n/mk/files_sharing.po +++ b/l10n/mk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Лозинка" msgid "Submit" msgstr "Прати" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ја сподели папката %s со Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ја сподели датотеката %s со Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Преземи" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Подигни" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Откажи прикачување" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Нема достапно преглед за" diff --git a/l10n/mk/files_trashbin.po b/l10n/mk/files_trashbin.po index 1337bc1892f3c540c6df75f4960dbb278ca4a664..b92b21c1c476d69b990b0aa2e72bbcd0608d8d58 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Грешка" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 папка" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} папки" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 датотека" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} датотеки" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/mk/files_versions.po b/l10n/mk/files_versions.po index 0f4762644949780952c42bddc7d25036f28c8a28..09756a73cd96d164fd896dd6a3a3ba969b14a8d3 100644 --- a/l10n/mk/files_versions.po +++ b/l10n/mk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "Версии" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/mk/lib.po b/l10n/mk/lib.po index 836a3490761fb9829c43276101f579f31fa84cbe..a8128ea681f29f4af5200e6b511472ba2cbb1aed 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-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: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\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 "пред 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 "пред години" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/mk/settings.po b/l10n/mk/settings.po index e1400f297d519cb8ad7bcb8ac8dd05d0b0ef050d..8745b876368a07b6a163bc032aa00275a1fcfb11 100644 --- a/l10n/mk/settings.po +++ b/l10n/mk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Безбедносно предупредување" -#: templates/admin.php:20 +#: 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 "Вашата папка со податоци и датотеките е најверојатно достапна од интернет. .htaccess датотеката што ја овозможува ownCloud не фунционира. Силно препорачуваме да го исконфигурирате вашиот сервер за вашата папка со податоци не е достапна преку интернетт или преместете ја надвор од коренот на веб серверот." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Записник" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Ниво на логирање" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Повеќе" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Помалку" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Верзија" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Имате искористено %s од достапните %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Вашата лозинка беше променета." -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Вашата лозинка неможе да се смени" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Моментална лозинка" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Смени лозинка" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Вашата адреса за е-пошта" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Пополни ја адресата за е-пошта за да може да ја обновуваш лозинката" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Јазик" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Помогни во преводот" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/mk/user_webdavauth.po b/l10n/mk/user_webdavauth.po index 4f39ddca61f626d90ebe55be0dc1dbd77c6f4470..0de649364a4420829a20ace85b89c4a627e4ff05 100644 --- a/l10n/mk/user_webdavauth.po +++ b/l10n/mk/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Macedonian (http://www.transifex.com/projects/p/owncloud/language/mk/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ml_IN/core.po b/l10n/ml_IN/core.po index 11842cfad4696b2a1063bca8e98324b280e98e5f..9cf341368a1003d8bdb37551401c07b28372dc85 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-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -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:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -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:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +225,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +246,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +462,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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_encryption.po b/l10n/ml_IN/files_encryption.po index 788f7259d4f8be447d4e2f7fc054a28dae050549..763878763878f89849947f3d660a2fe76480134a 100644 --- a/l10n/ml_IN/files_encryption.po +++ b/l10n/ml_IN/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\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" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ml_IN/files_sharing.po b/l10n/ml_IN/files_sharing.po index dbf8befe5f96c6b6763704053d0e3ca4e6bbb360..088c381190f8fd809ad0eb7de5c8692b2f28183d 100644 --- a/l10n/ml_IN/files_sharing.po +++ b/l10n/ml_IN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ml_IN/files_trashbin.po b/l10n/ml_IN/files_trashbin.po index 6aae4c873145463fa1debcfec1f98abc471a3598..42c24ca6423edb0e5e6c6f11a0880c5362ca2980 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-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/ml_IN/files_versions.po b/l10n/ml_IN/files_versions.po index 7fbfa21dcc72451d15a9e7704408691c96e4d47c..b760d75242b54c48d656055e4a131beaecbe4686 100644 --- a/l10n/ml_IN/files_versions.po +++ b/l10n/ml_IN/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\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" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ml_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ml_IN/lib.po b/l10n/ml_IN/lib.po index 8590f74b6742294a647f0a4157fde0a362e14cc6..8da360f24d9702501587e21836da9c7bb24a82f5 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/ml_IN/settings.po b/l10n/ml_IN/settings.po index 98dba3aa2351f301cda24952a2b9dd7849b3ace3..e3333f6983a19f61c46b36c4876eecac606d22ce 100644 --- a/l10n/ml_IN/settings.po +++ b/l10n/ml_IN/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ml_IN/user_webdavauth.po b/l10n/ml_IN/user_webdavauth.po index 883156e8a55d34486f363acf5e29385607f7fdb3..143a00ff5ab34de456dc8060e4d0e3dd5d4f8e31 100644 --- a/l10n/ml_IN/user_webdavauth.po +++ b/l10n/ml_IN/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 08:25+0000\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" "Language-Team: Malayalam (India) (http://www.transifex.com/projects/p/owncloud/language/ml_IN/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ms_MY/core.po b/l10n/ms_MY/core.po index a5e260d7fa4d44855e24306af3ce216a02bc2108..12142533623c9f7a8b2c7dd8ec8c75b9576d9162 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Tetapan" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: 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 "" @@ -225,8 +221,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Ralat" @@ -246,123 +242,123 @@ msgstr "" msgid "Share" msgstr "Kongsi" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Kata laluan" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Anda akan menerima pautan untuk menetapkan semula kata laluan anda melalui emel" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nama pengguna" @@ -461,11 +458,11 @@ msgstr "Bantuan" msgid "Access forbidden" msgstr "Larangan akses" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Awan tidak dijumpai" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +491,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "buat akaun admin" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Maju" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Fail data" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfigurasi pangkalan data" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "akan digunakan" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Nama pengguna pangkalan data" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Kata laluan pangkalan data" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nama pangkalan data" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Hos pangkalan data" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Setup selesai" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Log keluar" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +609,7 @@ msgstr "Log masuk" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Kongsi" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Padam" - -#: 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 "Nama" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Saiz" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 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 @@ -285,45 +272,49 @@ msgstr "Folder" 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 "Batal muat naik" -#: 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 "Tiada apa-apa di sini. Muat naik sesuatu!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Muat turun" -#: 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 "Padam" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Muatnaik terlalu besar" -#: 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 "Fail yang cuba dimuat naik melebihi saiz maksimum fail upload server" -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fail sedang diimbas, harap bersabar." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Imbasan semasa" diff --git a/l10n/ms_MY/files_encryption.po b/l10n/ms_MY/files_encryption.po index 80ba103e3db507de265e1ee590c6119905ae80e6..8b66830466a8d3e096fcfc1096a6af1ba5130204 100644 --- a/l10n/ms_MY/files_encryption.po +++ b/l10n/ms_MY/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ms_MY/files_sharing.po b/l10n/ms_MY/files_sharing.po index cbc98cfdb5e1b92ad164a9f7c1181690995090ce..954e77ca28a76e68eabed1636f57a8cb5933052c 100644 --- a/l10n/ms_MY/files_sharing.po +++ b/l10n/ms_MY/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Kata laluan" msgid "Submit" msgstr "Hantar" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Muat turun" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Muat naik" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Batal muat naik" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ms_MY/files_trashbin.po b/l10n/ms_MY/files_trashbin.po index b1db65e4c26857f15848868aead70c3dfc9222b9..cb56fbd7745645e59af9cfbffce4b6a1d93683bf 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,42 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Ralat" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nama" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/ms_MY/files_versions.po b/l10n/ms_MY/files_versions.po index c76d0b2b739466fe46c5c9eba518156382529037..e18c5a6cab02cd5296f33eb7d7de9043e9ebfdb8 100644 --- a/l10n/ms_MY/files_versions.po +++ b/l10n/ms_MY/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ms_MY\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ms_MY/lib.po b/l10n/ms_MY/lib.po index d0deb26d3fa177b41db37b282a6449b5818fcfbd..529c2d96124c21a30aad523a719886af4f9bca7c 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-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: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Perkhidmatan web di bawah kawalan anda" @@ -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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/settings.po b/l10n/ms_MY/settings.po index e5b371c20178d5f26ef203bc10ebba2f745ce905..ea53a0cd7ea5b56f74e71a53dcdb46da7f8b6b4c 100644 --- a/l10n/ms_MY/settings.po +++ b/l10n/ms_MY/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "_nama_bahasa_" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Amaran keselamatan" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Tahap Log" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Lanjutan" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kata laluan" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Gagal mengubah kata laluan anda " -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Kata laluan semasa" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Kata laluan baru" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Ubah kata laluan" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Alamat emel anda" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Isi alamat emel anda untuk membolehkan pemulihan kata laluan" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Bahasa" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Bantu terjemah" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ms_MY/user_webdavauth.po b/l10n/ms_MY/user_webdavauth.po index 57b4d246ca079e9e24fba65b31bec0c2e2c7093c..fb3965289328f903282910c82b41820209581b5d 100644 --- a/l10n/ms_MY/user_webdavauth.po +++ b/l10n/ms_MY/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Malay (Malaysia) (http://www.transifex.com/projects/p/owncloud/language/ms_MY/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/my_MM/core.po b/l10n/my_MM/core.po index 4c8f9b943e6eb7c49b3e0750482346aace1ade45..29ad3b362d782ff0867563bdec567cdb2c11fc39 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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:718 -msgid "1 hour ago" -msgstr "၁ နာရီ အရင်က" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: 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 "နှစ် အရင်က" @@ -225,8 +221,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,123 +242,123 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "စကားဝှက်" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်သတ်မှတ်မည်" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "သက်တမ်းကုန်ဆုံးမည့်ရက်" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "အီးမေးလ်ဖြင့်ဝေမျှမည် -" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "ပြန်လည်ဝေမျှခြင်းခွင့်မပြုပါ" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "ပြင်ဆင်နိုင်" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "ဖန်တီးမည်" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "ဖျက်မည်" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "ဝေမျှမည်" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "စကားဝှက်ဖြင့်ကာကွယ်ထားသည်" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "အီးမေးလ်မှတစ်ဆင့် သင်၏စကားဝှက်ကို ပြန်ဖော်ရန်အတွက် Link တစ်ခုလက်ခံရရှိပါလိမ့်မယ်။" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "သုံးစွဲသူအမည်" @@ -461,11 +458,11 @@ msgstr "အကူအညီ" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "မတွေ့ရှိမိပါ" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +491,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "အက်ဒမင်အကောင့်တစ်ခုဖန်တီးမည်" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "အဆင့်မြင့်" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "အချက်အလက်ဖိုလ်ဒါလ်" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Database သုံးစွဲသူ" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Database စကားဝှက်" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Database အမည်" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "တပ်ဆင်ခြင်းပြီးပါပြီ။" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +609,7 @@ msgstr "ဝင်ရောက်ရန်" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\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/my_MM/files_encryption.po b/l10n/my_MM/files_encryption.po index 3465eb2405ec5931f8228c3bdbc27beb3a6b0ae4..9aedac17d427360d99923b66c7a329ed5ba0754c 100644 --- a/l10n/my_MM/files_encryption.po +++ b/l10n/my_MM/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/my_MM/files_sharing.po b/l10n/my_MM/files_sharing.po index 7cf20920a72606629029c60bc849bcc299df7949..d04bb04647c454557d33b0fae6660ca343f045b4 100644 --- a/l10n/my_MM/files_sharing.po +++ b/l10n/my_MM/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "စကားဝှက်" msgid "Submit" msgstr "ထည့်သွင်းမည်" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ဒေါင်းလုတ်" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/my_MM/files_trashbin.po b/l10n/my_MM/files_trashbin.po index 6c22f6131851e74ad1db201ebe8de1584cabd1bb..0611fe45b555f8ea10a8749fc34243defa93c792 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,42 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/my_MM/files_versions.po b/l10n/my_MM/files_versions.po index 60f265294d1088304633d7c93421429c54cf17ea..9174fddbbc57988df62320a839c37cb6bb41794b 100644 --- a/l10n/my_MM/files_versions.po +++ b/l10n/my_MM/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: my_MM\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/my_MM/lib.po b/l10n/my_MM/lib.po index 5b05b4a9110471f39781331bf315ff467a7515a4..bac9d830bf46ed1821960e3658bd12b0cf398270 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-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: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services" @@ -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 "%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 "နှစ် အရင်က" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/my_MM/settings.po b/l10n/my_MM/settings.po index ff5035c32112b92d0881a0c2bc16bfbbb15696df..903834397b0890f94df6a110c818d8bad91c0fec 100644 --- a/l10n/my_MM/settings.po +++ b/l10n/my_MM/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "လုံခြုံရေးသတိပေးချက်" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "စကားဝှက်" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "စကားဝှက်အသစ်" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/my_MM/user_webdavauth.po b/l10n/my_MM/user_webdavauth.po index f89dd9cd9e7ddd827d9ffa32128cd65ed50630c9..33cf95ca18dd7dbdf8053ba6ab72f7cf6e96802e 100644 --- a/l10n/my_MM/user_webdavauth.po +++ b/l10n/my_MM/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/projects/p/owncloud/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/nb_NO/core.po b/l10n/nb_NO/core.po index 76f78665fa846431251b55ad3d3e757a07b75416..0201469d378301db2d8d4488d15a88f30e9d07db 100644 --- a/l10n/nb_NO/core.po +++ b/l10n/nb_NO/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 21:56+0000\n" -"Last-Translator: Stein-Aksel Basma \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -138,59 +138,59 @@ msgstr "November" msgid "December" msgstr "Desember" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Innstillinger" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekunder siden" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minutt siden" +#: 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 "{minutes} minutter siden" +#: 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 "1 time siden" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} timer siden" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "forrige måned" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "måneder siden" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "forrige år" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "år siden" @@ -227,7 +227,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 "Feil" @@ -247,7 +247,7 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:131 js/share.js:671 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feil under deling" @@ -279,7 +279,7 @@ msgstr "Del med link" msgid "Password protect" msgstr "Passordbeskyttet" -#: js/share.js:193 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Passord" @@ -347,23 +347,23 @@ msgstr "slett" msgid "share" msgstr "del" -#: js/share.js:398 js/share.js:618 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passordbeskyttet" -#: 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 "Kan ikke sette utløpsdato" -#: js/share.js:658 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender..." -#: js/share.js:669 +#: js/share.js:681 msgid "Email sent" msgstr "E-post sendt" @@ -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}" @@ -401,7 +402,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Du burde motta detaljer om å tilbakestille passordet ditt via epost." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Brukernavn" @@ -462,11 +463,11 @@ msgstr "Hjelp" msgid "Access forbidden" msgstr "Tilgang nektet" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Sky ikke funnet" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,7 +496,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -516,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "opprett en administrator-konto" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfigurer databasen" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "vil bli brukt" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Databasebruker" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Databasenavn" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Database tabellområde" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Databasevert" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Fullfør oppsetting" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -608,7 +614,7 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Slett" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Omdøp" @@ -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:457 -msgid "1 file uploading" -msgstr "1 fil lastes opp" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "filer lastes opp" @@ -202,33 +196,29 @@ msgstr "Nedlastingen din klargjøres. Hvis filene er store kan dette ta litt tid msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldig mappenavn. Bruk av \"Shared\" er reservert av ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Navn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Størrelse" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Endret" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -287,45 +277,49 @@ msgstr "Mappe" msgid "From link" msgstr "Fra link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Slettet filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikke skrivetilgang her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last opp noe!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Avslutt deling" -#: templates/index.php:107 +#: 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" -#: 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 "Filene du prøver å laste opp er for store for å laste opp til denne serveren." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skanner etter filer, vennligst vent." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Pågående skanning" diff --git a/l10n/nb_NO/files_encryption.po b/l10n/nb_NO/files_encryption.po index 0daabad1ea72fea27b7059819897c297976900bd..abd3cf2a7a44e43aac713cada9ffc3e20ebbcd08 100644 --- a/l10n/nb_NO/files_encryption.po +++ b/l10n/nb_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/nb_NO/files_sharing.po b/l10n/nb_NO/files_sharing.po index 4e20072c1912fb6d64acb09df084eb504bed1d5d..c3ad85d42b16eaf558dfc79c6a4dc0a5f41e476a 100644 --- a/l10n/nb_NO/files_sharing.po +++ b/l10n/nb_NO/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Stein-Aksel Basma \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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -30,28 +30,52 @@ msgstr "Passord" msgid "Submit" msgstr "Send inn" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappen %s med deg" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte filen %s med deg" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Last ned" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Last opp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Forhåndsvisning ikke tilgjengelig for" diff --git a/l10n/nb_NO/files_trashbin.po b/l10n/nb_NO/files_trashbin.po index 8f6cf04d6ff2da111cb624aa1ff5eb6bc9d4ff44..72e2ce3e7bf9fafb60c810d363bc5722e60cefa0 100644 --- a/l10n/nb_NO/files_trashbin.po +++ b/l10n/nb_NO/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Hans Nesse <>\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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,45 +28,45 @@ msgstr "Kunne ikke slette %s fullstendig" msgid "Couldn't restore %s" msgstr "Kunne ikke gjenopprette %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "utfør gjenopprettings operasjon" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Feil" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "slett filer permanent" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Slett permanent" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Navn" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Slettet" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mappe" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} mapper" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} filer" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/nb_NO/files_versions.po b/l10n/nb_NO/files_versions.po index 0d1e2a829cd212faaee7e5d8c1ead7b573f1daa1..b55d8702d8fa1208bc6995f0fc7115da3cf47680 100644 --- a/l10n/nb_NO/files_versions.po +++ b/l10n/nb_NO/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versjoner" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versjoner" - -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +#: js/versions.js:149 +msgid "Restore" +msgstr "Gjenopprett" diff --git a/l10n/nb_NO/lib.po b/l10n/nb_NO/lib.po index 771095599f9e812235fad31fa43320ee9aeb2e35..5e2ffdb8ffe90cb6eecd618d46894f25ca7f3864 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-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: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "web tjenester du kontrollerer" @@ -210,54 +206,50 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nb_NO/settings.po b/l10n/nb_NO/settings.po index 5ccaeb22b918144b1842f3ff5653684239e3e7da..e812e0ae3278ea41a059d2ce0306660433e578b7 100644 --- a/l10n/nb_NO/settings.po +++ b/l10n/nb_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -171,175 +171,173 @@ msgstr "Oppgi et gyldig passord" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Sikkerhetsadvarsel" -#: templates/admin.php:20 +#: 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 "Ditt data mappe og dine filer er sannsynligvis tilgjengelig fra internet. .htaccess filene som ownCloud bruker virker ikke. Du bør konfigurere din nettserver slik at data mappa ikke lenger er tilgjengelig eller flytt data mappe ut av nettserverens dokumentområde." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Installasjonsadvarsel" -#: templates/admin.php:34 +#: 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 "Din nettservev er ikke konfigurert korrekt for filsynkronisering. WebDAV ser ut til å ikke funkere." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Vennligst dobbelsjekk installasjonsguiden." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modulen 'fileinfo' mangler" -#: templates/admin.php:49 +#: 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 "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Språk virker ikke" -#: templates/admin.php:65 +#: 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 "Denne ownCloud serveren kan ikke sette systemspråk til %s. Det kan være problemer med visse tegn i filnavn. Vi foreslår at du installerer de nødvendige pakkene på ditt system for å støtte %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Ingen internettilkopling" -#: templates/admin.php:80 +#: 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 "Denne ownCloud serveren har ikke tilkopling til internett. Noen funksjoner som f.eks. tilkopling til ekstern lager, melgin om oppdatering og installasjon av tredjeparts apps vil ikke virke. Vi foreslår at du aktivere en internettilkopling til denne serveren hvis du vil bruke alle funksjonene i ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Utfør en oppgave med hver side som blir lastet" -#: templates/admin.php:113 +#: 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 "cron.php er registrert som webcron-tjeneste. Kjør cron.php siden i ownCloud rot hvert minutt vha http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Bruk systemets crontjeneste. Kjør cron.php filen i owncloud mappa vha systemets crontjeneste hver minutt." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Aktiver API for Deling" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Tillat apps å bruke API for Deling" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Tillat lenker" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Tillat brukere å dele filer med lenker" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "TIllat videredeling" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Tillat brukere å dele filer som allerede har blitt delt med dem" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Tillat brukere å dele med alle" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Tillat kun deling med andre brukere i samme gruppe" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Sikkerhet" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Tving HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Tvinger klienter til å bruke ownCloud via kryptert tilkopling." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Vær vennlig, bruk denne ownCloud instansen via HTTPS for å aktivere eller deaktivere tvungen bruk av SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Logg" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Loggnivå" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mer" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versjon" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har brukt %s av tilgjengelig %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Passord har blitt endret" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Kunne ikke endre passordet ditt" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Nåværende passord" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Endre passord" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Visningsnavn" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Epost" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Din e-postadresse" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Oppi epostadressen du vil tilbakestille passordet for" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Språk" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Bidra til oversettelsen" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ msgstr "Bekreft sletting" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Advarsel:Apps user_ldap og user_webdavauth er ikke kompatible. Du kan oppleve uventet atferd fra systemet. Vennligst spør din system-administrator om å deaktivere en av dem." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Slå av SSL-sertifikat validering" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Hvis tilgang kun fungerer med dette alternativet, importer LDAP-tjenerens SSL-sertifikat til din egen ownCloud tjener." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Vis brukerens navnfelt" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP-attributen å bruke for å generere brukers ownCloud navn." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Vis gruppens navnfelt" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP-attributen å bruke for å generere gruppens ownCloud navn." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/nb_NO/user_webdavauth.po b/l10n/nb_NO/user_webdavauth.po index 189cee27197cd9d16d40d48d476494a8229d7e05..89f5f3f24e2af62f3894ddfa0d4b32835fce5419 100644 --- a/l10n/nb_NO/user_webdavauth.po +++ b/l10n/nb_NO/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/owncloud/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ne/core.po b/l10n/ne/core.po index a8062fa9dbdd567aecb7d722756f0e7fe71e3702..d20e5a3d3abd4d2def7c7b4bc2f1cd6b2d31eb8c 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-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -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:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -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:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +225,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +246,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +462,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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_encryption.po b/l10n/ne/files_encryption.po index 53e5a46e0070d6008b2e7991ff3edf2aa3af21b1..a30502e5bbf1c612dc533717bb703da4d0ed0be6 100644 --- a/l10n/ne/files_encryption.po +++ b/l10n/ne/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ne/files_sharing.po b/l10n/ne/files_sharing.po index 4dc2fd5cd44e1c94f0e66f72424add9d515be3e6..8f745e77bbe0250c330cd92d053959172cd6bf2e 100644 --- a/l10n/ne/files_sharing.po +++ b/l10n/ne/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ne/files_trashbin.po b/l10n/ne/files_trashbin.po index 0eebd5d130c7b412c27304bf69c6923767ed05e3..06099b3a416256281e7f18ddf5091d331b9ab54a 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/ne/files_versions.po b/l10n/ne/files_versions.po index 75141cb34f99aeb0088a91ddf17f7aa676d4e518..b18e79867b0264ce0566c604d48e744180de1951 100644 --- a/l10n/ne/files_versions.po +++ b/l10n/ne/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ne/lib.po b/l10n/ne/lib.po index 5445c8e816c572a9e060527e30a73e69ea87adac..4fcfd8bc3ea7101ff1100700c05e93ea21598d18 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/ne/settings.po b/l10n/ne/settings.po index 9f7103ae0743a1d3d37f20ffde5adffb3c0e6de2..20fa4cf7fb4757a6d281bbb18198727973ea18c5 100644 --- a/l10n/ne/settings.po +++ b/l10n/ne/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ne/user_webdavauth.po b/l10n/ne/user_webdavauth.po index c71f7955bdf861d85ed733e622c44f2b711bde4e..b919d04a3645c61b29564cc47f74e011cbd84bfa 100644 --- a/l10n/ne/user_webdavauth.po +++ b/l10n/ne/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Nepali (http://www.transifex.com/projects/p/owncloud/language/ne/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/nl/core.po b/l10n/nl/core.po index 1815325c33ead1ef71c5b083c9defa434284bd21..0502d44098809c57e20772c3b81a19981112ea5a 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Instellingen" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "seconden geleden" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minuut geleden" +#: 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 "{minutes} minuten geleden" +#: 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 "1 uur geleden" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} uren geleden" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "vandaag" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "gisteren" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "vorige maand" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "maanden geleden" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "vorig jaar" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "jaar geleden" @@ -227,8 +228,8 @@ msgstr "Het object type is niet gespecificeerd." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fout" @@ -248,123 +249,123 @@ msgstr "Gedeeld" msgid "Share" msgstr "Delen" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fout tijdens het delen" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Fout tijdens het stoppen met delen" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Fout tijdens het veranderen van permissies" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Gedeeld met u en de groep {group} door {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Gedeeld met u door {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Deel met" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Deel met link" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Wachtwoord beveiligd" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Wachtwoord" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Sta publieke uploads toe" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "E-mail link naar persoon" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Versturen" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Stel vervaldatum in" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Vervaldatum" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Deel via e-mail:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Geen mensen gevonden" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Verder delen is niet toegestaan" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Gedeeld in {item} met {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Stop met delen" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "kan wijzigen" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "toegangscontrole" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "creëer" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "bijwerken" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "verwijderen" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "deel" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Wachtwoord beveiligd" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fout tijdens het verwijderen van de verval datum" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fout tijdens het instellen van de vervaldatum" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Versturen ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail verzonden" @@ -379,9 +380,10 @@ msgstr "De update is niet geslaagd. Meld dit probleem aan bij de Weet je zeker dat je gebruikersnaam en/of wachtwoor msgid "You will receive a link to reset your password via Email." msgstr "Je ontvangt een link om je wachtwoord opnieuw in te stellen via e-mail." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Gebruikersnaam" @@ -463,11 +465,11 @@ msgstr "Help" msgid "Access forbidden" msgstr "Toegang verboden" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud niet gevonden" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +498,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Je PHP-versie is kwetsbaar voor de NULL byte aanval (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Werk je PHP-installatie bij om ownCloud veilig te kunnen gebruiken." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Werk uw PHP installatie bij om %s veilig te kunnen gebruiken." #: templates/installation.php:32 msgid "" @@ -517,68 +520,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Je gegevensdirectory en bestanden zijn vermoedelijk bereikbaar vanaf het internet omdat het .htaccess-bestand niet werkt." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Informatie over het configureren van uw server is hier te vinden." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Bekijk de documentatie voor Informatie over het correct configureren van uw server." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Maak een beheerdersaccount aan" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Geavanceerd" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Gegevensmap" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configureer de database" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "zal gebruikt worden" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Gebruiker database" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Wachtwoord database" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Naam database" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Database tablespace" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Databaseserver" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Installatie afronden" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s is beschikbaar. Verkrijg meer informatie over het bijwerken." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -609,7 +616,7 @@ msgstr "Meld je aan" msgid "Alternative Logins" msgstr "Alternatieve inlogs" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Delen" msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Verwijder" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Hernoem" @@ -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:457 -msgid "1 file uploading" -msgstr "1 bestand wordt ge-upload" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "bestanden aan het uploaden" @@ -201,33 +195,29 @@ msgstr "Uw download wordt voorbereid. Dit kan enige tijd duren bij grote bestand msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ongeldige mapnaam. Gebruik van'Gedeeld' is voorbehouden aan Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Naam" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Grootte" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Aangepast" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 map" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappen" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 bestand" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -286,45 +276,49 @@ msgstr "Map" msgid "From link" msgstr "Vanaf link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Verwijderde bestanden" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "U hebt hier geen schrijfpermissies." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Er bevindt zich hier niets. Upload een bestand!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Downloaden" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Stop met delen" -#: templates/index.php:107 +#: 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" -#: 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 "De bestanden die u probeert te uploaden zijn groter dan de maximaal toegestane bestandsgrootte voor deze server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Bestanden worden gescand, even wachten." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Er wordt gescand" diff --git a/l10n/nl/files_encryption.po b/l10n/nl/files_encryption.po index d69aec2838528de3ef2657c09e78f2e65c930b42..67a24bf1ac1f5c7e3eb58069fb4ba98d9147e2c2 100644 --- a/l10n/nl/files_encryption.po +++ b/l10n/nl/files_encryption.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-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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" @@ -60,18 +61,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 "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." #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Missende benodigdheden." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "" +"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 "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 "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 694d58f3491db6a00494b06000143cfcf5d05aa2..cf2ebc5ccc0358fbb8a11217f6ac576c20dd1007 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: André Koot \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" @@ -30,28 +31,52 @@ msgstr "Wachtwoord" msgid "Submit" msgstr "Verzenden" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Sorry, deze link lijkt niet meer in gebruik te zijn." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Redenen kunnen zijn:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "bestand was verwijderd" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "de link is verlopen" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "delen is uitgeschakeld" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Voor meer informatie, neem contact op met de persoon die u deze link heeft gestuurd." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s deelt de map %s met u" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s deelt het bestand %s met u" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Downloaden" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Uploaden" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Upload afbreken" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Geen voorbeeldweergave beschikbaar voor" diff --git a/l10n/nl/files_trashbin.po b/l10n/nl/files_trashbin.po index 091aa463e7c6eead63081a5bddfb67e38a431d13..9227cb640a505ef1ec032c70e147aed4904dc3fe 100644 --- a/l10n/nl/files_trashbin.po +++ b/l10n/nl/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# André Koot , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +28,45 @@ msgstr "Kon %s niet permanent verwijderen" msgid "Couldn't restore %s" msgstr "Kon %s niet herstellen" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "uitvoeren restore operatie" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Fout" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "verwijder bestanden definitief" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Verwijder definitief" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Naam" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Verwijderd" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 map" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} mappen" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 bestand" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} bestanden" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "hersteld" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/nl/files_versions.po b/l10n/nl/files_versions.po index 83735c7ef761812a8f68dda5cf09728474286af0..8ee2fd95dab202472c137056b9aab02dd7dfd786 100644 --- a/l10n/nl/files_versions.po +++ b/l10n/nl/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Len , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 14: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" @@ -17,41 +18,27 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Kon niet terugdraaien: %s" -#: history.php:40 -msgid "success" -msgstr "succes" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Bestand %s is teruggedraaid naar versie %s" - -#: history.php:49 -msgid "failure" -msgstr "mislukking" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Bestand %s kon niet worden teruggedraaid naar versie %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versies" -#: history.php:69 -msgid "No old versions available" -msgstr "Geen oudere versies beschikbaar" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Kon {file} niet terugdraaien naar revisie {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Geen pad opgegeven" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Meer versies..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versies" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Geen andere versies beschikbaar" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Draai een bestand terug naar een voorgaande versie door te klikken op de terugdraai knop" +#: js/versions.js:149 +msgid "Restore" +msgstr "Herstellen" diff --git a/l10n/nl/lib.po b/l10n/nl/lib.po index 9f001941d0f6a77de98c4d6f9a748f5dd6c960ab..833787fb045af6122472140b8a4be5768aa9e0ad 100644 --- a/l10n/nl/lib.po +++ b/l10n/nl/lib.po @@ -4,12 +4,13 @@ # # 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-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: Dutch (http://www.transifex.com/projects/p/owncloud/language/nl/)\n" "MIME-Version: 1.0\n" @@ -35,26 +36,22 @@ 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 "" +msgstr "Upgrade \"%s\" mislukt." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Webdiensten in eigen beheer" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Kon \"%s\" niet openen" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "De geselecteerde bestanden zijn te groot om een zip bestand te maken." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Download de bestanden in kleinere brokken, appart of vraag uw administrator." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Gekomen door:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/nl/settings.po b/l10n/nl/settings.po index 640ab521f405c48ce7fd390d5fcb6e6d357a7dfd..f2b74b11fb0c719f963d70a98004cc297066ffee 100644 --- a/l10n/nl/settings.po +++ b/l10n/nl/settings.po @@ -5,13 +5,14 @@ # Translators: # André Koot , 2013 # helonaut, 2013 +# Len , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,175 +172,173 @@ msgstr "Er moet een geldig wachtwoord worden opgegeven" msgid "__language_name__" msgstr "Nederlands" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Beveiligingswaarschuwing" -#: templates/admin.php:20 +#: 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 "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Instellingswaarschuwing" -#: templates/admin.php:34 +#: 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 "Uw webserver is nog niet goed ingesteld voor bestandssynchronisatie omdat de WebDAV interface verbroken lijkt." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Controleer de installatiehandleiding goed." +msgid "Please double check the installation guides." +msgstr "Conntroleer de installatie handleiding goed." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Module 'fileinfo' ontbreekt" -#: templates/admin.php:49 +#: 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 "De PHP module 'fileinfo' ontbreekt. We adviseren met klem om deze module te activeren om de beste resultaten te bereiken voor mime-type detectie." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Taalbestand werkt niet" -#: templates/admin.php:65 +#: 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 "Deze ownCloud server kan de systeemtaal niet instellen op %s. Hierdoor kunnen er mogelijk problemen optreden met bepaalde tekens in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren zodat %s ondersteund wordt." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Internet verbinding werkt niet" -#: templates/admin.php:80 +#: 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 "Deze ownCloud server heeft geen actieve internet verbinding. dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internet verbinding voor deze server in te schakelen als u alle functies van ownCloud wilt gebruiken." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Bij laden van elke pagina één taak uitvoeren" -#: templates/admin.php:113 +#: 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 "cron.php is geregistreerd bij een webcron service. Roep eens per minuut de cron.php pagina aan over http in de ownCloud root." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php is geregistreerd bij een webcron service om cron.php eens per minuut aan te roepen via http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Gebruik de systems cron service. Roep eens per minuut de cron.php file in de ownCloud map via een systeem cronjob." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Gebruik de systeem cron service om het bestand cron.php eens per minuut aan te roepen." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Delen" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Activeren Share API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Apps toestaan de Share API te gebruiken" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Toestaan links" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Toestaan dat gebruikers objecten met links delen met anderen" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Sta publieke uploads toe" -#: templates/admin.php:154 +#: 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:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Toestaan opnieuw delen" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Toestaan dat gebruikers objecten die anderen met hun gedeeld hebben zelf ook weer delen met anderen" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Toestaan dat gebruikers met iedereen delen" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Instellen dat gebruikers alleen met leden binnen hun groepen delen" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Beveiliging" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Afdwingen HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Afdwingen dat de clients alleen via versleutelde verbinding contact maken met ownCloud." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Dwingt de clients om een versleutelde verbinding te maken met %s" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Maak via HTTPS verbinding met deze ownCloud inrichting om het afdwingen van gebruik van SSL te activeren of deactiveren." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Maak verbinding naar uw %s via HTTPS om een geforceerde versleutelde verbinding in- of uit te schakelen." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Log niveau" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Meer" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Minder" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versie" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Je hebt %s gebruikt van de beschikbare %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Wachtwoord" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Je wachtwoord is veranderd" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Niet in staat om uw wachtwoord te wijzigen" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Huidig wachtwoord" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nieuw" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Wijzig wachtwoord" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Weergavenaam" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mailadres" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Uw e-mailadres" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Vul een mailadres in om je wachtwoord te kunnen herstellen" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Taal" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Help met vertalen" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 2013 +# Len , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: André Koot \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" @@ -89,7 +90,7 @@ msgstr "Bevestig verwijderen" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." 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." @@ -222,8 +223,8 @@ msgid "Disable Main Server" msgstr "Deactiveren hoofdserver" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Wanneer ingeschakeld, zal ownCloud allen verbinden met de replicaserver." +msgid "Only connect to the replica server." +msgstr "Maak alleen een verbinding met de replica server." #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "Schakel SSL certificaat validatie uit." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Als de connectie alleen werkt met deze optie, importeer dan het LDAP server SSL certificaat naar je ownCloud server." +"certificate in your %s server." +msgstr "Als de connectie alleen werkt met deze optie, importeer dan het LDAP server SSL certificaat naar de %s server." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +270,8 @@ msgid "User Display Name Field" msgstr "Gebruikers Schermnaam Veld" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de gebruikers." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "Het te gebruiken LDAP attribuut voor het genereren van de weergavenaam voor de gebruiker." #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +294,8 @@ msgid "Group Display Name Field" msgstr "Groep Schermnaam Veld" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Het te gebruiken LDAP attribuut voor het genereren van de ownCloud naam voor de groepen." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "Het te gebruiken LDAP attribuut voor het genereren van de weergavenaam voor de groepen." #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +355,13 @@ msgid "" "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 "Standaard wordt de interne gebruikersnaam aangemaakt op basis van de UUID attribuut. Het zorgt ervoor dat de gebruikersnaam uniek is en dat tekens niet hoeven te worden geconverteerd. De interne gebruikersnaam heeft als beperking dat alleen deze tekens zijn toegestaan​​: [a-zA-Z0-9_.@- ]. Andere tekens worden vervangen door hun ASCII vertaling of gewoonweg weggelaten. Bij identieke namen wordt een nummer toegevoegd of verhoogd. De interne gebruikersnaam wordt gebruikt om een ​​gebruiker binnen het systeem te herkennen. Het is ook de standaardnaam voor de standaardmap van de gebruiker in ownCloud. Het is ook een vertaling voor externe URL's, bijvoorbeeld voor alle * DAV diensten. Met deze instelling kan het standaardgedrag worden overschreven. Om een soortgelijk gedrag te bereiken als van voor ownCloud 5, voer het gebruikersweergavenaam attribuut in in het volgende veld. Laat het leeg voor standaard gedrag. Veranderingen worden alleen toegepast op nieuw in kaart gebracht (toegevoegde) LDAP-gebruikers." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +373,14 @@ msgstr "Negeren UUID detectie" #: 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 " +"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 behaviour. " +" 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 "Standaard herkent ownCloud het UUID attribuut automatisch. Het UUID attribuut wordt gebruikt om LDAP-gebruikers en -groepen uniek te identificeren. Ook zal de interne gebruikersnaam worden aangemaakt op basis van het UUID, tenzij dit hierboven anders is aangegeven. U kunt de instelling overschrijven en zelf een waarde voor het attribuut opgeven. U moet ervoor zorgen dat het ingestelde attribuut kan worden opgehaald voor zowel gebruikers als groepen en dat het uniek is. Laat het leeg voor standaard gedrag. Veranderingen worden alleen doorgevoerd op nieuw in kaart gebrachte (toegevoegde) LDAP-gebruikers en-groepen." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +392,17 @@ msgstr "Gebruikersnaam-LDAP gebruikers vertaling" #: 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 "ownCloud maakt gebruik van gebruikersnamen om (meta) data op te slaan en toe te wijzen. Om gebruikers uniek te identificeren, zal elke LDAP-gebruiker ook een interne gebruikersnaam krijgen. Dit vereist een mapping van de ownCloud gebruikersnaam naar een ​​LDAP-gebruiker. De gecreëerde gebruikersnaam is gekoppeld aan de UUID van de LDAP-gebruiker. Ook de 'DN' wordt gecached om het aantal LDAP transacties te verminderen, maar deze wordt niet gebruikt voor identificatie. Als de DN verandert, zullen de veranderingen worden gevonden door ownCloud. De interne ownCloud naam wordt overal in ownCloud gebruikt. Wissen van de koppeling zal overal overblijfsel laten staan. Het wissen van Mappings is niet configuratiegevoelig, maar het raakt wel alle LDAP instellingen! Zorg ervoor dat deze Mappings nooit in een productieomgeving plaatsvinden. Maak ze alleen leeg in een test-of ontwikkelomgeving." +"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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/nl/user_webdavauth.po b/l10n/nl/user_webdavauth.po index 16a063e349f5e38a2389d21c3d3ceaec4a29d0d5..30a7602c67d17ddb10f55b233550190a049982d3 100644 --- a/l10n/nl/user_webdavauth.po +++ b/l10n/nl/user_webdavauth.po @@ -4,14 +4,15 @@ # # Translators: # André Koot , 2012-2013 +# Len , 2013 # Richard Bos , 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 21:40+0000\n" -"Last-Translator: André Koot \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 14:50+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" @@ -24,12 +25,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV authenticatie" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "Adres:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud stuurt de inloggegevens naar deze URL. Deze plugin controleert het antwoord en interpreteert de HTTP statuscodes 401 als 403 als ongeldige inloggegevens, maar alle andere antwoorden als geldige inloggegevens." +msgstr "De ingloggegevens worden opgestuurd naar dit adres. Deze plugin controleert de terugkoppeling en interpreteert de HTTP statuscodes 401 en 403 als invalide inloggegevens, en alle andere terugkoppelingen als valide inloggegevens." diff --git a/l10n/nn_NO/core.po b/l10n/nn_NO/core.po index cf0d8b1d8ce0954b5cfd39a25c90bfd60e8fe510..29908b4d1b907c530766842ed27cad449d1f1e76 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Innstillingar" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekund sidan" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minutt sidan" +#: 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 "{minutes} minutt sidan" +#: 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 "1 time sidan" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} timar sidan" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "førre månad" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "månadar sidan" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "i fjor" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "år sidan" @@ -227,8 +227,8 @@ msgstr "Objekttypen er ikkje spesifisert." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Feil" @@ -248,123 +248,123 @@ msgstr "Delt" msgid "Share" msgstr "Del" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Feil ved deling" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Feil ved udeling" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Feil ved endring av tillatingar" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Delt med deg og gruppa {group} av {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Delt med deg av {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Del med" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Del med lenkje" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Passordvern" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Passord" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Send lenkja over e-post" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Send" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Set utløpsdato" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Utløpsdato" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Del over e-post:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Fann ingen personar" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Vidaredeling er ikkje tillate" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Delt i {item} med {brukar}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Udel" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "kan endra" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "tilgangskontroll" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "lag" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "oppdater" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "slett" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "del" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Passordverna" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Klarte ikkje fjerna utløpsdato" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Klarte ikkje setja utløpsdato" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Sender …" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-post sendt" @@ -379,9 +379,10 @@ msgstr "Oppdateringa feila. Ver venleg og rapporter feilen til Er du viss på at du skreiv inn rett e-post/bru msgid "You will receive a link to reset your password via Email." msgstr "Du vil få ein e-post med ei lenkje for å nullstilla passordet." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Brukarnamn" @@ -463,11 +464,11 @@ msgstr "Hjelp" msgid "Access forbidden" msgstr "Tilgang forbudt" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Fann ikkje skyen" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "PHP-utgåva di er sårbar for NULL-byteåtaket (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Ver venleg og oppdater PHP-installasjonen din så han køyrer ownCloud på ein trygg måte." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -517,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett sidan .htaccess-fila ikkje fungerer." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Ver venleg og les dokumentasjonen for å læra korleis du set opp tenaren din på rett måte." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Lag ein admin-konto" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avansert" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datamappe" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Set opp databasen" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "vil verta nytta" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Databasebrukar" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Databasepassord" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Databasenamn" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tabellnamnrom for database" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Databasetenar" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Fullfør oppsettet" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s er tilgjengeleg. Få meir informasjon om korleis du oppdaterer." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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 innlogging avvist!" @@ -609,7 +615,7 @@ msgstr "Logg inn" msgid "Alternative Logins" msgstr "Alternative innloggingar" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Del" msgid "Delete permanently" msgstr "Slett for godt" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Slett" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Endra namn" @@ -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:457 -msgid "1 file uploading" -msgstr "1 fil lastar opp" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "filer lastar opp" @@ -202,33 +196,29 @@ msgstr "Gjer klar nedlastinga di. Dette kan ta ei stund viss filene er store." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ugyldig mappenamn. Mappa «Shared» er reservert av ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Storleik" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Endra" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mappe" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mapper" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -287,45 +277,49 @@ msgstr "Mappe" msgid "From link" msgstr "Frå lenkje" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sletta filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du har ikkje skriverettar her." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting her. Last noko opp!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Last ned" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Udel" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Slett" + +#: templates/index.php:105 msgid "Upload too large" msgstr "For stor opplasting" -#: 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 "Filene du prøver å lasta opp er større enn maksgrensa til denne tenaren." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skannar filer, ver venleg og vent." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Køyrande skanning" diff --git a/l10n/nn_NO/files_encryption.po b/l10n/nn_NO/files_encryption.po index c8ba72ef42d8f01971a26bbe0033e401c76b1432..f1295711ff8aa1c023811d6ac517b366a8c6ca9b 100644 --- a/l10n/nn_NO/files_encryption.po +++ b/l10n/nn_NO/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/nn_NO/files_sharing.po b/l10n/nn_NO/files_sharing.po index 636d57bd68997ffe422f1da2a86e852034ef173c..4b2ff875d133a7f1ffa38e1e28e44a78bc2f18ff 100644 --- a/l10n/nn_NO/files_sharing.po +++ b/l10n/nn_NO/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "Passord" msgid "Submit" msgstr "Send" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delte mappa %s med deg" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delte fila %s med deg" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Last ned" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Last opp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt opplasting" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Inga førehandsvising tilgjengeleg for" diff --git a/l10n/nn_NO/files_trashbin.po b/l10n/nn_NO/files_trashbin.po index d3de7e5092e0758bad619317639fbfedbe65ba78..c10ee6cd50721a6edd112bfa9c773292c32beedd 100644 --- a/l10n/nn_NO/files_trashbin.po +++ b/l10n/nn_NO/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: unhammer \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,45 +28,45 @@ msgstr "Klarte ikkje sletta %s for godt" msgid "Couldn't restore %s" msgstr "Klarte ikkje gjenoppretta %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "utfør gjenoppretting" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Feil" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "slett fila for godt" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Slett for godt" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Sletta" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mappe" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} mapper" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} filer" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/nn_NO/files_versions.po b/l10n/nn_NO/files_versions.po index 4de20b084400d38ed5170b3112e6cb7ffda70f13..a6e633a4c28456595ec253f4c497cb459384e5a0 100644 --- a/l10n/nn_NO/files_versions.po +++ b/l10n/nn_NO/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: unhammer \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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,41 +18,27 @@ msgstr "" "Language: nn_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Klarte ikkje å tilbakestilla: %s" -#: history.php:40 -msgid "success" -msgstr "vellukka" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Tilbakestilte fila %s til utgåva %s" - -#: history.php:49 -msgid "failure" -msgstr "feil" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Klarte ikkje tilbakestilla fila %s til utgåva %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Utgåver" -#: history.php:69 -msgid "No old versions available" -msgstr "Ingen eldre utgåver tilgjengelege" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Ingen sti gjeve" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Utgåver" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Tilbakestill ei fil til ei tidlegare utgåve ved å klikka tilbakestill-knappen" +#: js/versions.js:149 +msgid "Restore" +msgstr "Gjenopprett" diff --git a/l10n/nn_NO/lib.po b/l10n/nn_NO/lib.po index 3ca8a975f7a5ac5c648d81d21996d663d14d69b5..a344f828b7b02d5c4e7f5bee19b8ae98ae6a8c23 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-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: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Vev tjenester under din kontroll" @@ -211,54 +207,50 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/nn_NO/settings.po b/l10n/nn_NO/settings.po index 11db1a7f9d1af8ff39b6b01f0c9583805abc7328..b451c6fb503dd8b2cdf4625ef699b2f91b790a28 100644 --- a/l10n/nn_NO/settings.po +++ b/l10n/nn_NO/settings.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -171,175 +171,173 @@ msgstr "Du må oppgje eit gyldig passord" msgid "__language_name__" msgstr "Nynorsk" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Tryggleiksåtvaring" -#: templates/admin.php:20 +#: 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 "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett. Fila .htaccess som ownCloud tilbyr fungerer ikkje. Me rår sterkt til at du set opp tenaren din slik at datamappa ikkje lenger er tilgjengeleg, eller at du flyttar datamappa vekk frå dokumentrota til tenaren." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Oppsettsåtvaring" -#: templates/admin.php:34 +#: 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 "Tenaren din er ikkje enno rett innstilt til å tilby filsynkronisering sidan WebDAV-grensesnittet ser ut til å vera øydelagt." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Ver venleg og dobbeltsjekk installasjonsrettleiinga." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modulen «fileinfo» manglar" -#: templates/admin.php:49 +#: 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 "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Regionaldata fungerer ikkje" -#: templates/admin.php:65 +#: 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 "Denne ownCloud-tenaren kan ikkje stilla regionen til %s. Dette tyder at det kan vera problem med visse teikn i filnamn. Me rår sterkt til å installera systempakkane som trengst for å støtta %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Nettilkoplinga fungerer ikkje" -#: templates/admin.php:80 +#: 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 "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsprogram ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du slå på nettilkoplinga til denne tenaren viss du vil nytta alle funksjonane til ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Utfør éi oppgåve for kvar sidelasting" -#: templates/admin.php:113 +#: 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 "cron.php er registrert ved ei webcron-teneste. Last sida cron.php i ownCloud-rota ein gong i minuttet over http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Bruk cron-tenesta til systemet. Køyr fila cron.php i ownCloud-mappa frå ein cron-jobb på systemet ein gong i minuttet." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Deling" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Slå på API-et for deling" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "La app-ar bruka API-et til deling" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Tillat lenkjer" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "La brukarar dela ting offentleg med lenkjer" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Tillat vidaredeling" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "La brukarar vidaredela delte ting" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "La brukarar dela med kven som helst" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "La brukarar dela berre med brukarar i deira grupper" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Tryggleik" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Krev HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Krev at klientar koplar til ownCloud med ei kryptert tilkopling." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Ver venleg og kopla denne ownCloud-instansen til via HTTPS for å slå av/på SSL-handhevinga." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Logg" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Log nivå" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Meir" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Utgåve" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "Du har brukt %s av dine tilgjengelege %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Passord" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Passordet ditt er endra" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Klarte ikkje endra passordet" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Passord" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nytt passord" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Endra passord" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Visingsnamn" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-post" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Di epost-adresse" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Fyll inn e-postadressa di for å gjera passordgjenoppretting mogleg" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Språk" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Hjelp oss å omsetja" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/nn_NO/user_webdavauth.po b/l10n/nn_NO/user_webdavauth.po index b281d34b07ebe9b3e684f83477f9e43a6ea6be64..05d3c32b03d66dd889d700e02ee579bde2bfeed8 100644 --- a/l10n/nn_NO/user_webdavauth.po +++ b/l10n/nn_NO/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Norwegian Nynorsk (Norway) (http://www.transifex.com/projects/p/owncloud/language/nn_NO/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV-autentisering" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud sender brukarakkreditiv til denne nettadressa. Dette programtillegget kontrollerer svaret og tolkar HTTP-statuskodane 401 og 403 som ugyldige, og alle andre svar som gyldige." +msgstr "" diff --git a/l10n/oc/core.po b/l10n/oc/core.po index 3a1b19996f011459057bd3207487ccc3574ded7d..33d3488ee96c2911834916664c2e9f49dc5b6a51 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Configuracion" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "segonda a" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minuta a" +#: 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:718 -msgid "1 hour ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "uèi" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "ièr" -#: 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 "mes passat" -#: 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 "meses a" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "an passat" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "ans a" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Error" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "Parteja" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Error al partejar" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Error al non partejar" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Error al cambiar permissions" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Parteja amb" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Parteja amb lo ligam" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Parat per senhal" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Senhal" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Met la data d'expiracion" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data d'expiracion" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Parteja tras corrièl :" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Deguns trobat" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Tornar partejar es pas permis" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Pas partejador" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "pòt modificar" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "Contraròtle d'acces" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "crea" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "met a jorn" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "escafa" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "parteja" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Parat per senhal" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Error al metre de la data d'expiracion" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Error setting expiration date" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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 "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}" @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Reçaupràs un ligam per tornar botar ton senhal via corrièl." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Non d'usancièr" @@ -461,11 +462,11 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acces enebit" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nívol pas trobada" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crea un compte admin" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avançat" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Dorsièr de donadas" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configura la basa de donadas" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "serà utilizat" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Usancièr de la basa de donadas" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Senhal de la basa de donadas" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nom de la basa de donadas" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Espandi de taula de basa de donadas" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Òste de basa de donadas" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Configuracion acabada" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Sortida" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "Dintrada" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Parteja" msgid "Delete permanently" msgstr "" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Escafa" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Torna nomenar" @@ -156,15 +152,13 @@ msgstr "" msgid "undo" msgstr "defar" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "1 fichièr al amontcargar" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "fichièrs al amontcargar" @@ -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 "Nom" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Talha" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +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 @@ -285,45 +275,49 @@ msgstr "Dorsièr" 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 " Anulla l'amontcargar" -#: 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 "Pas res dedins. Amontcarga qualquaren" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Avalcarga" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Pas partejador" -#: templates/index.php:107 +#: 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" -#: 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 "Los fichièrs que sias a amontcargar son tròp pesucs per la talha maxi pel servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Los fiichièrs son a èsser explorats, " -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Exploracion en cors" diff --git a/l10n/oc/files_encryption.po b/l10n/oc/files_encryption.po index a9474224b7bdcf16549dbe97b4e5ec23dad58d5e..eba3e13368c22a279d5517c77287e9e7e68c0981 100644 --- a/l10n/oc/files_encryption.po +++ b/l10n/oc/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/oc/files_sharing.po b/l10n/oc/files_sharing.po index aff7086e917c5b6da961da390c55f5f8e264cba7..48225563d0e6465c0508949fb8c4d7bdd4159e93 100644 --- a/l10n/oc/files_sharing.po +++ b/l10n/oc/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Senhal" msgid "Submit" msgstr "Sosmetre" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Avalcarga" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Amontcarga" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr " Anulla l'amontcargar" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/oc/files_trashbin.po b/l10n/oc/files_trashbin.po index e426248ab713a2ebe207165c448bd4cc981ae672..1f47311fecd9ed25ecbf0138d0eba5ea562acc08 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Error" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nom" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/oc/files_versions.po b/l10n/oc/files_versions.po index d1964f5cfaa8019f23fe402475e70067c8bbb1f1..aa42ae8a125a4f7f2e9ffdde02dc31f333277c91 100644 --- a/l10n/oc/files_versions.po +++ b/l10n/oc/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: oc\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/oc/lib.po b/l10n/oc/lib.po index 9fd1bfbc3437aaea617023247d8449c623729406..7624e587690da30d38919c666204dd2a925396cd 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-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: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Services web jos ton contraròtle" @@ -210,54 +206,50 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/oc/settings.po b/l10n/oc/settings.po index c998bc8b55f7acf4cbcce8176be9f69637d7bf19..9cdc67cd70f34cf01022d5c5fbb764ce8c630c91 100644 --- a/l10n/oc/settings.po +++ b/l10n/oc/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Avertiment de securitat" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Executa un prètfach amb cada pagina cargada" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Al partejar" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Activa API partejada" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Jornal" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mai d'aquò" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senhal" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Ton senhal a cambiat" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Pas possible de cambiar ton senhal" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Senhal en cors" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Senhal novèl" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Cambia lo senhal" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Corrièl" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Ton adreiça de corrièl" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Emplena una adreiça de corrièl per permetre lo mandadís del senhal perdut" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Lenga" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Ajuda a la revirada" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/oc/user_webdavauth.po b/l10n/oc/user_webdavauth.po index 72a127406ac1085d2a700f0a91f101987babebe1..1717d6805c09f21c9dc600cd6679c56731cd58c4 100644 --- a/l10n/oc/user_webdavauth.po +++ b/l10n/oc/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Occitan (post 1500) (http://www.transifex.com/projects/p/owncloud/language/oc/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/pl/core.po b/l10n/pl/core.po index e50c775b7b335d280ed5362661852274f93cbc79..5f7f67f6df2a54fc0bad9a2c6088466fcc79b20d 100644 --- a/l10n/pl/core.po +++ b/l10n/pl/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -139,59 +139,63 @@ msgstr "Listopad" msgid "December" msgstr "Grudzień" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Ustawienia" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekund temu" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minutę temu" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} minut temu" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 godzinę temu" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} godzin temu" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:818 msgid "today" msgstr "dziś" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "wczoraj" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "w zeszłym miesiącu" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "miesięcy temu" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "w zeszłym roku" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "lat temu" @@ -227,8 +231,8 @@ msgstr "Nie określono typu obiektu." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Błąd" @@ -248,123 +252,123 @@ msgstr "Udostępniono" msgid "Share" msgstr "Udostępnij" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Błąd podczas współdzielenia" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Błąd podczas zatrzymywania współdzielenia" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Błąd przy zmianie uprawnień" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Udostępnione tobie i grupie {group} przez {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Udostępnione tobie przez {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Współdziel z" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Współdziel wraz z odnośnikiem" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Zabezpiecz hasłem" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Hasło" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Pozwól na publiczne wczytywanie" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Wyślij osobie odnośnik poprzez e-mail" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Wyślij" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Ustaw datę wygaśnięcia" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data wygaśnięcia" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Współdziel poprzez e-mail:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Nie znaleziono ludzi" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Współdzielenie nie jest możliwe" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Współdzielone w {item} z {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "może edytować" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "kontrola dostępu" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "utwórz" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "uaktualnij" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "usuń" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "współdziel" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zabezpieczone hasłem" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Błąd podczas usuwania daty wygaśnięcia" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Błąd podczas ustawiania daty wygaśnięcia" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Wysyłanie..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail wysłany" @@ -379,9 +383,10 @@ msgstr "Aktualizacja zakończyła się niepowodzeniem. Zgłoś ten problem Czy Twój email/nazwa użytkownika są p msgid "You will receive a link to reset your password via Email." msgstr "Odnośnik służący do resetowania hasła zostanie wysłany na adres e-mail." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nazwa użytkownika" @@ -413,7 +418,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 "Pliki są szyfrowane. Jeśli nie włączono klucza odzyskiwania, nie będzie możliwe odzyskać dane z powrotem po zresetowaniu hasła. Jeśli nie masz pewności, co zrobić, prosimy o kontakt z administratorem, przed kontynuowaniem. Czy chcesz kontynuować?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" @@ -463,11 +468,11 @@ msgstr "Pomoc" msgid "Access forbidden" msgstr "Dostęp zabroniony" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nie odnaleziono chmury" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -476,7 +481,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Cześć,\n\nInformuję cię że %s udostępnia ci %s.\nZobacz na: %s\n\nPozdrawiam!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -496,8 +501,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Twója wersja PHP jest narażona na NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Proszę uaktualnij swoją instalacje PHP, aby używać ownCloud bezpiecznie." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Proszę uaktualnij swoją instalacje PHP aby używać %s bezpiecznie." #: templates/installation.php:32 msgid "" @@ -517,68 +523,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Twój katalog danych i pliki są prawdopodobnie dostępne z poziomu internetu, ponieważ plik .htaccess nie działa." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Aby uzyskać informacje dotyczące prawidłowej konfiguracji serwera, sięgnij do dokumentacji." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Aby uzyskać informacje jak poprawnie skonfigurować swój serwer, zapoznaj się z dokumentacją." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Utwórz konta administratora" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Zaawansowane" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Katalog danych" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Skonfiguruj bazę danych" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "zostanie użyte" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Użytkownik bazy danych" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Hasło do bazy danych" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nazwa bazy danych" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Obszar tabel bazy danych" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Komputer bazy danych" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Zakończ konfigurowanie" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s jest dostępna. Dowiedz się więcej na temat aktualizacji." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Wyloguj" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Więcej aplikacji" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatyczne logowanie odrzucone!" @@ -609,12 +619,12 @@ msgstr "Zaloguj" msgid "Alternative Logins" msgstr "Alternatywne loginy" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "Cześć,

Informuję cię że %s udostępnia ci »%s«.\n
Zobacz

Pozdrawiam!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/pl/files.po b/l10n/pl/files.po index 3d1c0da649d28e588c91f7d4a09e79afb738aab2..6a873b2103e32736d523e6978e3faa8c6716385b 100644 --- a/l10n/pl/files.po +++ b/l10n/pl/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Udostępnij" msgid "Delete permanently" msgstr "Trwale usuń" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Usuń" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Zmień nazwę" @@ -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:457 -msgid "1 file uploading" -msgstr "1 plik wczytywany" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "pliki wczytane" @@ -202,33 +197,31 @@ msgstr "Pobieranie jest przygotowywane. Może to zająć trochę czasu jeśli pl msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nieprawidłowa nazwa folderu. Korzystanie z nazwy „Shared” jest zarezerwowane dla ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nazwa" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Rozmiar" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modyfikacja" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" - -#: 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:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 @@ -287,45 +280,49 @@ msgstr "Folder" msgid "From link" msgstr "Z odnośnika" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Pliki usunięte" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nie masz uprawnień do zapisu w tym miejscu." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Pusto. Wyślij coś!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Pobierz" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Zatrzymaj współdzielenie" -#: templates/index.php:107 +#: 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" -#: 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 "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skanowanie plików, proszę czekać." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Aktualnie skanowane" diff --git a/l10n/pl/files_encryption.po b/l10n/pl/files_encryption.po index 8342d627db94e89bb7b38a5613d283d22a0ab910..4c116aa680092cc62a832869dd3b849926477cd4 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-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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,18 +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 the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "" +"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 "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 "Następujący użytkownicy nie mają skonfigurowanego szyfrowania:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/pl/files_sharing.po b/l10n/pl/files_sharing.po index fd067dfc86da4ba3185e8152df892a75c1c22b5b..1a6992cd4b68d12a499ba3b195fbff02c4e6b8ff 100644 --- a/l10n/pl/files_sharing.po +++ b/l10n/pl/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+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" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "To hasło jest niewłaściwe. Spróbuj ponownie." #: templates/authenticate.php:7 msgid "Password" @@ -29,28 +30,52 @@ msgstr "Hasło" msgid "Submit" msgstr "Wyślij" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Przepraszamy ale wygląda na to, że ten link już nie działa." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Możliwe powody:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "element został usunięty" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "link wygasł" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "Udostępnianie jest wyłączone" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s współdzieli folder z tobą %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s współdzieli z tobą plik %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Pobierz" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Wyślij" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anuluj wysyłanie" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Podgląd nie jest dostępny dla" diff --git a/l10n/pl/files_trashbin.po b/l10n/pl/files_trashbin.po index d567ecae4c58b584ee5eec4fce1af6b6b62d015c..fd82c9bdd6ddd777e02399adbd5d31fdcf35458c 100644 --- a/l10n/pl/files_trashbin.po +++ b/l10n/pl/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,47 @@ msgstr "Nie można trwale usunąć %s" msgid "Couldn't restore %s" msgstr "Nie można przywrócić %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "wykonywanie operacji przywracania" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Błąd" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "trwale usuń plik" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Trwale usuń" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nazwa" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Usunięte" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 folder" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "Ilość folderów: {count}" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 plik" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "Ilość plików: {count}" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "przywrócony" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/pl/files_versions.po b/l10n/pl/files_versions.po index 897cae06adf82179d4d7a705e7c7ab4175eeac3d..d9898916d8645ab69a2ceff9c1af6fdff8918892 100644 --- a/l10n/pl/files_versions.po +++ b/l10n/pl/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Cyryl Sochacki , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+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" @@ -17,41 +18,27 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Nie można było przywrócić: %s" -#: history.php:40 -msgid "success" -msgstr "sukces" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Plik %s został przywrócony do wersji %s" - -#: history.php:49 -msgid "failure" -msgstr "porażka" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Plik %s nie mógł być przywrócony do wersji %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Wersje" -#: history.php:69 -msgid "No old versions available" -msgstr "Nie są dostępne żadne starsze wersje" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Nie udało się przywrócić zmiany {sygnatura czasowa} {plik}." -#: history.php:74 -msgid "No path specified" -msgstr "Nie podano ścieżki" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Więcej wersji..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Wersje" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Nie są dostępne żadne inne wersje" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Przywróć plik do poprzedniej wersji klikając w jego przycisk przywrócenia" +#: js/versions.js:149 +msgid "Restore" +msgstr "Przywróć" diff --git a/l10n/pl/lib.po b/l10n/pl/lib.po index 69554bc77cf01fa0b1af82463eab2beb9fe2904c..6cdef8fb4791c3d39fc03664a1cdd1ec074b0b57 100644 --- a/l10n/pl/lib.po +++ b/l10n/pl/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-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: Polish (http://www.transifex.com/projects/p/owncloud/language/pl/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "Błąd przy aktualizacji \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "Kontrolowane serwisy" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Nie można otworzyć \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Wybrane pliki są zbyt duże, aby wygenerować plik zip." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,56 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Spowodowane przez:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/pl/settings.po b/l10n/pl/settings.po index 697ae5d0a0edf0148ab1b9ce939fbc43ed3827a4..66939daefc5d70a05ffe01c7fbf5952ee8a160d1 100644 --- a/l10n/pl/settings.po +++ b/l10n/pl/settings.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -171,175 +171,173 @@ msgstr "Należy podać prawidłowe hasło" msgid "__language_name__" msgstr "polski" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Ostrzeżenie o zabezpieczeniach" -#: templates/admin.php:20 +#: 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 "Katalog danych i twoje pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess dostarczony przez ownCloud nie działa. Zalecamy skonfigurowanie serwera internetowego w taki sposób, aby katalog z danymi nie był dostępny lub przeniesienie katalogu z danymi poza katalog główny serwera internetowego." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Ostrzeżenia konfiguracji" -#: templates/admin.php:34 +#: 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 "Serwer internetowy nie jest jeszcze poprawnie skonfigurowany, aby umożliwić synchronizację plików, ponieważ interfejs WebDAV wydaje się być uszkodzony." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Sprawdź ponownie przewodniki instalacji." +msgid "Please double check the installation guides." +msgstr "Proszę sprawdź ponownie przewodnik instalacji." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Brak modułu „fileinfo”" -#: templates/admin.php:49 +#: 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 "Brak modułu PHP „fileinfo”. Zalecamy włączenie tego modułu, aby uzyskać najlepsze wyniki podczas wykrywania typów MIME." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Lokalizacja nie działa" -#: templates/admin.php:65 +#: 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 "Ten serwer ownCloud nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Połączenie internetowe nie działa" -#: templates/admin.php:80 +#: 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 "Ten serwer OwnCloud nie ma działającego połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub instalacja dodatkowych aplikacji nie będą działać. Dostęp do plików z zewnątrz i wysyłanie powiadomień e-mail może również nie działać. Sugerujemy, aby włączyć połączenie internetowe dla tego serwera, jeśli chcesz korzystać ze wszystkich funkcji ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Wykonuj jedno zadanie wraz z każdą wczytaną stroną" -#: templates/admin.php:113 +#: 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 "cron.php jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym ownCloud raz na minutę przez http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Użyj systemowej usługi cron. Przywołaj plik cron.php z katalogu ownCloud przez systemowy cronjob raz na minutę." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Udostępnianie" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Włącz API udostępniania" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Zezwalaj aplikacjom na korzystanie z API udostępniania" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Zezwalaj na odnośniki" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Pozwól na publiczne wczytywanie" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Zezwalaj na ponowne udostępnianie" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Zezwalaj użytkownikom na współdzielenie z kimkolwiek" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Zezwalaj użytkownikom współdzielić z użytkownikami ze swoich grup" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Bezpieczeństwo" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Wymuś HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Wymusza na klientach na łączenie się ownCloud za pośrednictwem połączenia szyfrowanego." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Wymusza na klientach na łączenie się %s za pośrednictwem połączenia szyfrowanego." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Proszę połącz się do tej instancji ownCloud za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Logi" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Poziom logów" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Więcej" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mniej" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Wersja" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Wykorzystujesz %s z dostępnych %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Hasło" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Twoje hasło zostało zmienione" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Nie można zmienić hasła" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Bieżące hasło" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nowe hasło" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Zmień hasło" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Wyświetlana nazwa" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Twój adres e-mail" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Podaj adres e-mail, aby uzyskać możliwość odzyskania hasła" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Język" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Pomóż w tłumaczeniu" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "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" @@ -90,9 +90,9 @@ msgstr "Potwierdź usunięcie" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Ostrzeżenie: Aplikacje user_ldap i user_webdavauth nie są kompatybilne. Mogą powodować nieoczekiwane zachowanie. Poproś administratora o wyłączenie jednej z nich." +msgstr "" #: templates/settings.php:12 msgid "" @@ -223,8 +223,8 @@ msgid "Disable Main Server" msgstr "Wyłącz serwer główny" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Po włączeniu, ownCloud tylko połączy się z serwerem repliki." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -243,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "Wyłączyć sprawdzanie poprawności certyfikatu SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Jeśli połączenie działa tylko z tą opcją, zaimportuj certyfikat SSL serwera LDAP w serwerze ownCloud." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -269,8 +270,8 @@ msgid "User Display Name Field" msgstr "Pole wyświetlanej nazwy użytkownika" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atrybut LDAP służy do generowania nazwy użytkownika ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -293,8 +294,8 @@ msgid "Group Display Name Field" msgstr "Pole wyświetlanej nazwy grupy" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atrybut LDAP służy do generowania nazwy grup ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -354,13 +355,13 @@ msgid "" "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 "Domyślnie, wewnętrzna nazwa użytkownika zostanie utworzona z atrybutu UUID, ang. Universally unique identifier - Unikalny identyfikator użytkownika. To daje pewność, że nazwa użytkownika jest niepowtarzalna a znaki nie muszą być konwertowane. Wewnętrzna nazwa użytkownika dopuszcza jedynie znaki: [ a-zA-Z0-9_.@- ]. Pozostałe znaki zamieniane są na ich odpowiedniki ASCII lub po prostu pomijane. W przypadku, gdy nazwa się powtarza na końcu dodawana / zwiększana jest cyfra. Wewnętrzna nazwa użytkownika służy do wewnętrznej identyfikacji użytkownika. Jest to również domyślna nazwa głównego folderu w ownCloud. Jest to również klucz zdalnego URL, na przykład dla wszystkich usług *DAV. Dzięki temu ustawieniu można modyfikować domyślne zachowania. Aby osiągnąć podobny efekt jak w ownCloud 5 wpisz atrybut nazwy użytkownika w poniższym polu. Pozostaw puste dla domyślnego zachowania. Zmiany będą miały wpływ tylko na nowo stworzonych (dodane) użytkowników LDAP." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -372,12 +373,12 @@ msgstr "Zastąp wykrywanie UUID" #: 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 " +"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 behaviour. " +" 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 "" @@ -391,17 +392,16 @@ msgstr "Mapowanie użytkownika LDAP" #: 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/pl/user_webdavauth.po b/l10n/pl/user_webdavauth.po index 2df6fe576de2f9469a2e781b072dfc472f8a0adf..7c11b63e14a9237c86f9901f60cc429be93df6d7 100644 --- a/l10n/pl/user_webdavauth.po +++ b/l10n/pl/user_webdavauth.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-06-18 02:04+0200\n" -"PO-Revision-Date: 2013-06-17 09:50+0000\n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 07:38+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" @@ -25,12 +25,12 @@ msgid "WebDAV Authentication" msgstr "Uwierzytelnienie WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "Adres:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud wyśle dane uwierzytelniające do tego URL. Ten plugin sprawdza odpowiedź i zinterpretuje kody HTTP 401 oraz 403 jako nieprawidłowe dane uwierzytelniające, a każdy inny kod odpowiedzi jako poprawne dane." +msgstr "Dane uwierzytelniające użytkownika zostaną wysłane na ten adres. Wtyczka sprawdza odpowiedź i będzie interpretował status HTTP 401 i 403 jako nieprawidłowe dane uwierzytelniające i wszystkie inne odpowiedzi jako prawidłowe uwierzytelnienie." diff --git a/l10n/pt_BR/core.po b/l10n/pt_BR/core.po index 6a8d13bee2789f6193199b3125bd26853fb4debb..d1f5964e4b14b1259df57c5a269c09130436ec4a 100644 --- a/l10n/pt_BR/core.po +++ b/l10n/pt_BR/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: I Robot \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,59 +139,59 @@ msgstr "novembro" msgid "December" msgstr "dezembro" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Ajustes" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "segundos atrás" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minuto atrás" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} minutos atrás" +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 hora atrás" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} horas atrás" - -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "hoje" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "ontem" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "último mês" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "último ano" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "anos atrás" @@ -227,8 +227,8 @@ msgstr "O tipo de objeto não foi especificado." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -248,123 +248,123 @@ msgstr "Compartilhados" msgid "Share" msgstr "Compartilhar" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erro ao compartilhar" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Erro ao descompartilhar" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Compartilhado com você e com o grupo {group} por {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Compartilhado com você por {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Compartilhar com" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Compartilhar com link" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Proteger com senha" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Senha" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Permitir upload público" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Enviar link por e-mail" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Enviar" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Definir data de expiração" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Compartilhar via e-mail:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Nenhuma pessoa encontrada" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Não é permitido re-compartilhar" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Compartilhado em {item} com {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Descompartilhar" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "pode editar" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "controle de acesso" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "criar" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "atualizar" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "remover" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "compartilhar" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido com senha" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Erro ao remover data de expiração" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erro ao definir data de expiração" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Enviando ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail enviado" @@ -379,9 +379,10 @@ msgstr "A atualização falhou. Por favor, relate este problema para a Certifique-se que seu e-mail/username estavam corre msgid "You will receive a link to reset your password via Email." msgstr "Você receberá um link para redefinir sua senha por e-mail." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nome de usuário" @@ -463,11 +464,11 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acesso proibido" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud não encontrado" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Sua versão do PHP está vulnerável ao ataque NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Por favor atualize sua instalação do PHP para utilizar o ownCloud de forma segura." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Por favor, atualize sua instalação PHP para usar %s segurança." #: templates/installation.php:32 msgid "" @@ -517,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Seu diretório de dados e arquivos são provavelmente acessíveis pela internet, porque o .htaccess não funciona." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Para obter informações sobre como configurar corretamente o seu servidor, consulte a documentação." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Para obter informações sobre como configurar corretamente o seu servidor, consulte a documentação." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Criar uma conta de administrador" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configurar o banco de dados" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "será usado" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Usuário do banco de dados" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Senha do banco de dados" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nome do banco de dados" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Espaço de tabela do banco de dados" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Host do banco de dados" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Concluir configuração" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Obtenha mais informações sobre como atualizar." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Sair" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "Mais aplicativos" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Entrada Automática no Sistema Rejeitada!" @@ -609,7 +615,7 @@ msgstr "Fazer login" msgid "Alternative Logins" msgstr "Logins alternativos" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -123,11 +123,7 @@ msgstr "Compartilhar" msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Excluir" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renomear" @@ -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:457 -msgid "1 file uploading" -msgstr "enviando 1 arquivo" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "enviando arquivos" @@ -203,33 +197,29 @@ msgstr "Seu download está sendo preparado. Isto pode levar algum tempo se os ar msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O uso de 'Shared' é reservado para o Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 pasta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 arquivo" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -288,45 +278,49 @@ msgstr "Pasta" msgid "From link" msgstr "Do link" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Arquivos apagados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Você não possui permissão de escrita aqui." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nada aqui.Carrege alguma coisa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Baixar" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Descompartilhar" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Excluir" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" -#: 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 "Os arquivos que você está tentando carregar excedeu o tamanho máximo para arquivos no servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Arquivos sendo escaneados, por favor aguarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Scanning atual" diff --git a/l10n/pt_BR/files_encryption.po b/l10n/pt_BR/files_encryption.po index 907be4d30a22d6c6fbaf78853a19229c6427f699..6b636c6d004d58a70723c8eb83b23123f030bdd6 100644 --- a/l10n/pt_BR/files_encryption.po +++ b/l10n/pt_BR/files_encryption.po @@ -5,12 +5,13 @@ # Translators: # bjamalaro , 2013 # Flávio Veras , 2013 +# wcavassin , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-06 02:01+0200\n" -"PO-Revision-Date: 2013-07-05 23:10+0000\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" @@ -65,15 +66,19 @@ msgstr "Sua chave privada não é válida! Provavelmente sua senha foi alterada #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "Requisitos em falta." +msgstr "Requisitos não encontrados." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "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:" +msgstr "Seguintes usuários não estão configurados para criptografia:" + #: js/settings-admin.js:11 msgid "Saving..." msgstr "Salvando..." @@ -107,7 +112,7 @@ msgstr "Senha da chave de recuperação" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" -msgstr "Habilidado" +msgstr "Habilitado" #: templates/settings-admin.php:29 templates/settings-personal.php:62 msgid "Disabled" @@ -149,7 +154,7 @@ msgstr "Senha antiga de login" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "Atual senha de login" +msgstr "Senha de login atual" #: templates/settings-personal.php:35 msgid "Update Private Key Password" diff --git a/l10n/pt_BR/files_sharing.po b/l10n/pt_BR/files_sharing.po index e4acbc625bbd2bce0b5c5cbe43ded496acd8c498..453ca120b6fe6cd897403da06509203d8627f145 100644 --- a/l10n/pt_BR/files_sharing.po +++ b/l10n/pt_BR/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+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" @@ -30,28 +30,52 @@ msgstr "Senha" msgid "Submit" msgstr "Submeter" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Desculpe, este link parece não mais funcionar." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "As razões podem ser:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "o item foi removido" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "o link expirou" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "compartilhamento está desativada" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Para mais informações, por favor, pergunte a pessoa que enviou este link." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s compartilhou a pasta %s com você" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s compartilhou o arquivo %s com você" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Baixar" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Upload" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nenhuma visualização disponível para" diff --git a/l10n/pt_BR/files_trashbin.po b/l10n/pt_BR/files_trashbin.po index 6878b84290beddfdabad1224bcb19028fefdf6d8..3464db7a91185e6c94b42ccbafd79b6076f7c718 100644 --- a/l10n/pt_BR/files_trashbin.po +++ b/l10n/pt_BR/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Flávio Veras , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,45 @@ msgstr "Não foi possível excluir %s permanentemente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "realizar operação de restauração" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Erro" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "excluir arquivo permanentemente" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Excluir permanentemente" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Excluído" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 pasta" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 arquivo" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} arquivos" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/pt_BR/files_versions.po b/l10n/pt_BR/files_versions.po index 8da66a76aac450bbdf6b5921e6127be4c4c99ba2..a766e6df9904694c7b47925db3a7e2a8c1fbf021 100644 --- a/l10n/pt_BR/files_versions.po +++ b/l10n/pt_BR/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# tuliouel, 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 11:40+0000\n" +"Last-Translator: tuliouel\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" @@ -17,41 +18,27 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Impossível reverter: %s" -#: history.php:40 -msgid "success" -msgstr "sucesso" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Arquivo %s revertido à versão %s" - -#: history.php:49 -msgid "failure" -msgstr "falha" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Arquivo %s não pôde ser revertido à versão %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versões" -#: history.php:69 -msgid "No old versions available" -msgstr "Nenhuma versão antiga disponível" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Falha ao reverter {file} para a revisão {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Nenhum caminho especificado" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Mais versões..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versões" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Nenhuma outra versão disponível" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverta um arquivo a uma versão anterior clicando no botão reverter" +#: js/versions.js:149 +msgid "Restore" +msgstr "Restaurar" diff --git a/l10n/pt_BR/lib.po b/l10n/pt_BR/lib.po index 15f63ba0d35f8fc45e2878b49aa8f2aba2e774c1..b8ce85263af5311c3b7d6b34483cb8006c33b61d 100644 --- a/l10n/pt_BR/lib.po +++ b/l10n/pt_BR/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-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: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "Falha na atualização de \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "serviços web sob seu controle" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "não pode abrir \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Arquivos selecionados são muito grandes para gerar arquivo zip." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Causados ​​por:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/pt_BR/settings.po b/l10n/pt_BR/settings.po index d970d4b2083bfd9fbc79587a0e47cd8029f70ff0..4fefbdfdef387383e316789c27059f9529e2499e 100644 --- a/l10n/pt_BR/settings.po +++ b/l10n/pt_BR/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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 11:20+0000\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" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -171,175 +171,173 @@ msgstr "Forneça uma senha válida" msgid "__language_name__" msgstr "Português (Brasil)" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:20 +#: 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 "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web." +"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." +msgstr "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Aviso de Configuração" -#: templates/admin.php:34 +#: 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 "Seu servidor web não está configurado corretamente para permitir sincronização de arquivos porque a interface WebDAV parece não estar funcionando." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Por favor, confira o guia de instalação." +msgid "Please double check the installation guides." +msgstr "Por favor, verifique os guias de instalação." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Módulo 'fileinfo' faltando" -#: templates/admin.php:49 +#: 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 "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type)." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Localização não funcionando" -#: templates/admin.php:65 +#: 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 "Este servidor ownCloud não pode configurar a localização do sistema para %s. Isto significa que pode haver problema com alguns caracteres nos nomes de arquivos. Nós recomendamos fortemente que você instale os pacotes requeridos em seu sistema para suportar %s." +"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 "A localidade do sistema não pode ser definida para %s. Isso significa que pode haver problemas com certos caracteres em nomes de arquivos. Nós sugerimos instalar os pacotes necessários no seu sistema para suportar %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Sem conexão com a internet" -#: templates/admin.php:80 +#: 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 "Este servidor ownCloud não tem conexão com a internet. Isto significa que alguns dos recursos como montar armazenamento externo, notificar atualizações ou instalar aplicativos de terceiros não funcionam. Acesso remoto a arquivos e envio de e-mails de notificação podem também não funcionar. Sugerimos que habilite a conexão com a internet neste servidor se quiser usufruir de todos os recursos do ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Execute uma tarefa com cada página carregada" -#: templates/admin.php:113 +#: 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 "cron.php está registrado no serviço webcron. Chame a página cron.php na raíz do owncloud a cada minuto por http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php está registrado em um serviço webcron chamar cron.php uma vez por minuto usando http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Usar serviço de cron do sistema. Chama o arquivo cron.php na pasta owncloud via cronjob do sistema a cada minuto." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Utilizar sistema de serviços cron para chamar o arquivo cron.php uma vez por minuto." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Compartilhamento" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Habilitar API de Compartilhamento" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Permitir que aplicativos usem a API de Compartilhamento" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Permitir que usuários compartilhem itens com o público usando links" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "Permitir envio público" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "Permitir que usuários deem permissão a outros para enviarem arquivios para suas pastas compartilhadas publicamente" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Permitir recompartilhamento" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Permitir que usuários compartilhem novamente itens compartilhados com eles" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Permitir que usuários compartilhem com qualquer um" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Permitir que usuários compartilhem somente com usuários em seus grupos" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Segurança" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Força o cliente a conectar-se ao ownCloud por uma conexão criptografada." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Obrigar os clientes que se conectem a %s através de uma conexão criptografada." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Por favor, conecte-se a esta instância do ownCloud via HTTPS para habilitar ou desabilitar 'Forçar SSL'." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Registro" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nível de registro" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mais" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versão" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Você usou %s do seu espaço de %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Senha" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Sua senha foi alterada" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Não é possivel alterar a sua senha" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Senha atual" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nova senha" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Alterar senha" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nome de Exibição" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Seu endereço de e-mail" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Preencha um endereço de e-mail para habilitar a recuperação de senha" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Idioma" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 2013 +# tuliouel, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Flávio Veras \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+0000\n" +"Last-Translator: tuliouel\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" @@ -89,9 +90,9 @@ msgstr "Confirmar Exclusão" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis. Você deverá experienciar comportamento inesperado. Por favor, peça ao seu administrador do sistema para desabilitar um deles." +msgstr "Aviso: Os aplicativos user_ldap e user_webdavauth são incompatíveis. Você pode experimentar comportamento inesperado. Por favor, peça ao seu administrador do sistema para desabilitar um deles." #: templates/settings.php:12 msgid "" @@ -222,8 +223,8 @@ msgid "Disable Main Server" msgstr "Desativar Servidor Principal" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Quando ativado, ownCloud somente se conectará ao servidor de réplica." +msgid "Only connect to the replica server." +msgstr "Conectar-se somente ao servidor de réplica." #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "Desligar validação de certificado SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Se a conexão só funciona com essa opção, importe o certificado SSL do servidor LDAP no seu servidor ownCloud." +"certificate in your %s server." +msgstr "Se a conexão só funciona com esta opção, importe o certificado SSL do servidor LDAP no seu servidor %s." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +270,8 @@ msgid "User Display Name Field" msgstr "Campo Nome de Exibição de Usuário" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "O atributo LDAP para usar para gerar nome ownCloud do usuário." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "O atributo LDAP para usar para gerar o nome de exibição do usuário." #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +294,8 @@ msgid "Group Display Name Field" msgstr "Campo Nome de Exibição de Grupo" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "O atributo LDAP para usar para gerar nome ownCloud do grupo." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "O atributo LDAP para usar para gerar o nome de apresentação do grupo." #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +355,13 @@ msgid "" "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 "Por padrão, o nome de usuário interno será criado a partir do atributo UUID. Ele garante que o nome de usuário é única e personagens não precisam ser convertidos. O nome de usuário interno tem a restrição de que apenas estes caracteres são permitidos: [a-zA-Z0-9_ @ -.]. Outros caracteres são substituídas por seu correspondente ASCII ou simplesmente serão omitidos. Em colisões um número será adicionado/aumentado. O nome de utilizador interna é usada para identificar um utilizador internamente. É também o nome padrão para a pasta home do usuário em ownCloud. É também um porto de URLs remoto, por exemplo, para todos os serviços de *DAV. Com esta definição, o comportamento padrão pode ser anulado. Para conseguir um comportamento semelhante como antes ownCloud 5 entrar na tela atributo nome de usuário no campo seguinte. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas no recém mapeados (adicionado) de usuários LDAP. " +"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." +msgstr "Por padrão, o nome de usuário interno será criado a partir do atributo UUID. Ele garante que o nome de usuário é único e que caracteres não precisam ser convertidos. O nome de usuário interno tem a restrição de que apenas estes caracteres são permitidos: [a-zA-Z0-9_.@- ]. Outros caracteres são substituídos por seus correspondentes em ASCII ou simplesmente serão omitidos. Em caso de colisão um número será adicionado/aumentado. O nome de usuário interno é usado para identificar um usuário internamente. É também o nome padrão da pasta \"home\" do usuário. É também parte de URLs remotas, por exemplo, para todos as instâncias *DAV. Com esta definição, o comportamento padrão pode ser sobrescrito. Para alcançar um comportamento semelhante ao de antes do ownCloud 5, forneça o atributo do nome de exibição do usuário no campo seguinte. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários LDAP recém mapeados (adicionados)." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +373,14 @@ msgstr "Substituir detecção UUID" #: 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 " +"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 behaviour. " +" 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 "Por padrão, ownCloud detecta automaticamente o atributo UUID. O atributo UUID é usado para identificar, sem dúvida, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificada acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser obtida tanto para usuários e grupos e é único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas no recém mapeados (adicionado) de usuários e grupos LDAP." +msgstr "Por padrão, o atributo UUID é detectado automaticamente. O atributo UUID é usado para identificar, sem dúvidas, os usuários e grupos LDAP. Além disso, o nome de usuário interno será criado com base no UUID, se não especificado acima. Você pode substituir a configuração e passar um atributo de sua escolha. Você deve certificar-se de que o atributo de sua escolha pode ser lido tanto para usuários como para grupos, e que seja único. Deixe-o vazio para o comportamento padrão. As alterações terão efeito apenas para usuários e grupos LDAP recém mapeados (adicionados)." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +392,17 @@ msgstr "Usuário-LDAP Mapeamento de Usuário" #: 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 "ownCloud usa nomes de usuários para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento de ownCloud do nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Além disso, o DN está em cache, assim como para reduzir a interação LDAP, mas que não é utilizado para a identificação. Se a DN muda, as mudanças serão encontradas pelo ownCloud. O nome ownCloud interno é utilizado em todo ownCloud. Limpando os mapeamentos terá sobras em todos os lugares. Limpeza dos mapeamentos não são sensíveis a configuração, isso afeta todas as configurações LDAP! Nunca limpar os mapeamentos em um ambiente de produção. Somente limpe os mapeamentos em uma fase de testes ou experimental." +"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." +msgstr "Nomes de usuários sãi usados para armazenar e atribuir (meta) dados. A fim de identificar com precisão e reconhecer usuários, cada usuário LDAP terá um nome de usuário interno. Isso requer um mapeamento nome de usuário para usuário LDAP. O nome de usuário criado é mapeado para o UUID do usuário LDAP. Adicionalmente, o DN fica em cache, assim como para reduzir a interação LDAP, mas não é utilizado para a identificação. Se o DN muda, as mudanças serão encontradas. O nome de usuário interno é utilizado em todo lugar. Limpar os mapeamentos não influencia a configuração. Limpar os mapeamentos deixará rastros em todo lugar. Limpar os mapeamentos não influencia a configuração, mas afeta as configurações LDAP! Somente limpe os mapeamentos em embiente de testes ou em estágio experimental." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/pt_BR/user_webdavauth.po b/l10n/pt_BR/user_webdavauth.po index c62680557cd8b348da5f9ef6b88faa1297790fae..04e4f7ff71c41f63e55c85aa02ad0887ae6afac2 100644 --- a/l10n/pt_BR/user_webdavauth.po +++ b/l10n/pt_BR/user_webdavauth.po @@ -6,13 +6,14 @@ # bjamalaro , 2013 # Rodrigo Tavares , 2013 # thoriumbr , 2012 +# tuliouel, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-21 08:49+0200\n" -"PO-Revision-Date: 2013-06-20 21:50+0000\n" -"Last-Translator: bjamalaro \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 11:40+0000\n" +"Last-Translator: tuliouel\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/owncloud/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,12 +26,12 @@ msgid "WebDAV Authentication" msgstr "Autenticação WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Endereço:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "O ownCloud enviará as credenciais do usuário para esta URL. Este plugin verifica a resposta e interpreta o os códigos de status do HTTP 401 e 403 como credenciais inválidas, e todas as outras respostas como credenciais válidas." +msgstr "As credenciais de usuário serão enviadas para este endereço. Este plugin verifica a resposta e interpretará os códigos de status HTTP 401 e 403 como \"credenciais inválidas\", e todas as outras respostas como \"credenciais válidas\"." diff --git a/l10n/pt_PT/core.po b/l10n/pt_PT/core.po index 4c66538ecea1947ad68d99fafce8eca8bf261a16..7b568baecacfb60a54201f05d601cb9626568fe7 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Configurações" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "Minutos atrás" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "Há 1 minuto" +#: 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 "{minutes} minutos atrás" +#: 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 "Há 1 horas" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "Há {hours} horas atrás" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "hoje" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "ontem" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "ultímo mês" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "meses atrás" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "ano passado" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "anos atrás" @@ -229,8 +229,8 @@ msgstr "O tipo de objecto não foi especificado" #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Erro" @@ -250,123 +250,123 @@ msgstr "Partilhado" msgid "Share" msgstr "Partilhar" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Erro ao partilhar" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Erro ao deixar de partilhar" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Erro ao mudar permissões" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Partilhado consigo e com o grupo {group} por {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Partilhado consigo por {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Partilhar com" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Partilhar com link" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Proteger com palavra-passe" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Password" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Permitir Envios Públicos" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Enviar o link por e-mail" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Enviar" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Especificar data de expiração" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data de expiração" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Partilhar via email:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Não foi encontrado ninguém" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Não é permitido partilhar de novo" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Partilhado em {item} com {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Deixar de partilhar" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "pode editar" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "Controlo de acesso" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "criar" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "actualizar" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "apagar" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "partilhar" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protegido com palavra-passe" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Erro ao retirar a data de expiração" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Erro ao aplicar a data de expiração" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "A Enviar..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-mail enviado" @@ -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}" @@ -404,7 +405,7 @@ msgstr "O pedido falhou!
Tem a certeza que introduziu o seu email/username msgid "You will receive a link to reset your password via Email." msgstr "Vai receber um endereço para repor a sua password" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nome de utilizador" @@ -465,11 +466,11 @@ msgstr "Ajuda" msgid "Access forbidden" msgstr "Acesso interdito" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud nao encontrada" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -498,8 +499,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "A sua versão do PHP é vulnerável ao ataque Byte Null (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Por favor atualize a sua versão PHP instalada para usar o ownCloud com segurança." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Por favor atualize a sua versão PHP instalada para usar o %s com segurança." #: templates/installation.php:32 msgid "" @@ -519,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "A pasta de dados do ownCloud e os respectivos ficheiros, estarão provavelmente acessíveis a partir da internet, pois o ficheiros .htaccess não funciona." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "Para obter informações de como configurar correctamente o servidor, veja em: documentation." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Para obter informações de como configurar correctamente o servidor, veja em: documentação." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Criar uma conta administrativa" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avançado" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Pasta de dados" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configure a base de dados" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "vai ser usada" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Utilizador da base de dados" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Password da base de dados" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Nome da base de dados" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tablespace da base de dados" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Anfitrião da base de dados" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Acabar instalação" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s está disponível. Tenha mais informações como actualizar." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -611,7 +617,7 @@ msgstr "Entrar" msgid "Alternative Logins" msgstr "Contas de acesso alternativas" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -122,11 +122,7 @@ msgstr "Partilhar" msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Eliminar" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Renomear" @@ -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:457 -msgid "1 file uploading" -msgstr "A enviar 1 ficheiro" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "A enviar os ficheiros" @@ -202,33 +196,29 @@ msgstr "O seu download está a ser preparado. Este processo pode demorar algum t msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Nome de pasta inválido. O Uso de 'shared' é reservado para o ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nome" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Tamanho" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificado" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 pasta" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ficheiro" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -287,45 +277,49 @@ msgstr "Pasta" msgid "From link" msgstr "Da ligação" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Ficheiros eliminados" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Não tem permissões de escrita aqui." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Vazio. Envie alguma coisa!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Transferir" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Deixar de partilhar" -#: templates/index.php:107 +#: templates/index.php:91 templates/index.php:92 +msgid "Delete" +msgstr "Eliminar" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Upload muito grande" -#: 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 "Os ficheiro que está a tentar enviar excedem o tamanho máximo de envio neste servidor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Os ficheiros estão a ser analisados, por favor aguarde." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Análise actual" diff --git a/l10n/pt_PT/files_encryption.po b/l10n/pt_PT/files_encryption.po index b9a5089858ad4cb7098269bdca471b244864fa7d..7f8803616a8ac3ab721810f722eb2c5009ddde0c 100644 --- a/l10n/pt_PT/files_encryption.po +++ b/l10n/pt_PT/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-22 15:30+0000\n" -"Last-Translator: moura232 \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" "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" @@ -54,7 +54,7 @@ msgstr "" msgid "" "Could not update the private key password. Maybe the old password was not " "correct." -msgstr "" +msgstr "Não foi possível alterar a chave. Possivelmente a password antiga não está correcta." #: files/error.php:7 msgid "" @@ -66,14 +66,18 @@ msgstr "Chave privada não é válida! Provavelmente senha foi alterada fora do #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Faltam alguns requisitos." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Por favor, certifique-se que PHP 5.3.3 ou mais recente está instalado e que a extensão PHP OpenSSL está ativada e corretamente configurada. Por agora, a encripitação está desativado." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." @@ -100,11 +104,11 @@ msgstr "Encriptação" #: templates/settings-admin.php:10 msgid "" "Enable recovery key (allow to recover users files in case of password loss):" -msgstr "" +msgstr "Active a chave de recuperação (permite recuperar os ficheiros no caso de perda da password):" #: templates/settings-admin.php:14 msgid "Recovery key password" -msgstr "" +msgstr "Chave de recuperação da conta" #: templates/settings-admin.php:21 templates/settings-personal.php:54 msgid "Enabled" @@ -116,15 +120,15 @@ msgstr "Desactivado" #: templates/settings-admin.php:34 msgid "Change recovery key password:" -msgstr "" +msgstr "Alterar a chave de recuperação:" #: templates/settings-admin.php:41 msgid "Old Recovery key password" -msgstr "" +msgstr "Chave anterior de recuperação da conta" #: templates/settings-admin.php:48 msgid "New Recovery key password" -msgstr "" +msgstr "Nova chave de recuperação da conta" #: templates/settings-admin.php:53 msgid "Change Password" @@ -146,11 +150,11 @@ msgstr "" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "Password anterior da conta" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "Password actual da conta" #: templates/settings-personal.php:35 msgid "Update Private Key Password" @@ -164,7 +168,7 @@ msgstr "ativar recuperação do password:" msgid "" "Enabling this option will allow you to reobtain access to your encrypted " "files in case of password loss" -msgstr "" +msgstr "Ao activar esta opção, tornar-lhe-a possível a obtenção de acesso aos seus ficheiros encriptados caso perca a password." #: templates/settings-personal.php:63 msgid "File recovery settings updated" diff --git a/l10n/pt_PT/files_sharing.po b/l10n/pt_PT/files_sharing.po index efa7e06de16594384a26f46d2cb9e69c6240bd4f..b69a517b10a29b82233c3090a6e441cf467a8cdc 100644 --- a/l10n/pt_PT/files_sharing.po +++ b/l10n/pt_PT/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Helder Meneses , 2013 # moliveira , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: moliveira \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-08 11:00+0000\n" +"Last-Translator: Helder Meneses \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" @@ -30,28 +31,52 @@ msgstr "Password" msgid "Submit" msgstr "Submeter" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Desculpe, mas este link parece não estar a funcionar." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "As razões poderão ser:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "O item foi removido" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "O link expirou" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "A partilha está desativada" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Para mais informações, por favor questione a pessoa que lhe enviou este link" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s partilhou a pasta %s consigo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s partilhou o ficheiro %s consigo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Transferir" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Carregar" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Cancelar envio" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Não há pré-visualização para" diff --git a/l10n/pt_PT/files_trashbin.po b/l10n/pt_PT/files_trashbin.po index 3d1e245afb2cf6c2dcae79834875a5bf7ace105e..e23fb508d18da523cbf0f46542e76830bb7d8575 100644 --- a/l10n/pt_PT/files_trashbin.po +++ b/l10n/pt_PT/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Helder Meneses , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,45 @@ msgstr "Não foi possível eliminar %s de forma permanente" msgid "Couldn't restore %s" msgstr "Não foi possível restaurar %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "executar a operação de restauro" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Erro" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "Eliminar permanentemente o(s) ficheiro(s)" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Eliminar permanentemente" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nome" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Apagado" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 pasta" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} pastas" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ficheiro" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ficheiros" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "Restaurado" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/pt_PT/files_versions.po b/l10n/pt_PT/files_versions.po index 07264486f6a61883791e758a7bd875c89dba70a1..d7bba2e218b1c902ebbde04e261440ce990e6d43 100644 --- a/l10n/pt_PT/files_versions.po +++ b/l10n/pt_PT/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Helder Meneses , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"PO-Revision-Date: 2013-07-29 15:40+0000\n" +"Last-Translator: Helder Meneses \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" @@ -17,41 +18,27 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Não foi possível reverter: %s" -#: history.php:40 -msgid "success" -msgstr "Sucesso" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "O ficheiro %s foi revertido para a versão %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versões" -#: history.php:49 -msgid "failure" -msgstr "Falha" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Falhou a recuperação do ficheiro {file} para a revisão {timestamp}." -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Não foi possível reverter o ficheiro %s para a versão %s" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Mais versões..." -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:116 +msgid "No other versions available" msgstr "Não existem versões mais antigas" -#: history.php:74 -msgid "No path specified" -msgstr "Nenhum caminho especificado" - -#: js/versions.js:6 -msgid "Versions" -msgstr "Versões" - -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Reverter um ficheiro para uma versão anterior clicando no seu botão reverter." +#: js/versions.js:149 +msgid "Restore" +msgstr "Restaurar" diff --git a/l10n/pt_PT/lib.po b/l10n/pt_PT/lib.po index 9e69e8e33c952adacf4f99c01c98870e104900b3..890855582cf895c0af9633ab1d9cb2f84737291c 100644 --- a/l10n/pt_PT/lib.po +++ b/l10n/pt_PT/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-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: Portuguese (Portugal) (http://www.transifex.com/projects/p/owncloud/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "A actualização \"%s\" falhou." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "serviços web sob o seu controlo" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Não foi possível abrir \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zi msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Causado por:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/pt_PT/settings.po b/l10n/pt_PT/settings.po index 5e3dd2902285869fb396e812350f1a9c6fed47cb..b367d9ee7e481344c8681de446f5483eae3fcf31 100644 --- a/l10n/pt_PT/settings.po +++ b/l10n/pt_PT/settings.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -173,175 +173,173 @@ msgstr "Uma password válida deve ser fornecida" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Aviso de Segurança" -#: templates/admin.php:20 +#: 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 "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." +"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." +msgstr "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. O seu ficheiro .htaccess não está a funcionar corretamente. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Aviso de setup" -#: templates/admin.php:34 +#: 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 "O seu servidor web não está configurado correctamente para autorizar sincronização de ficheiros, pois o interface WebDAV parece estar com problemas." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Por favor verifique installation guides." +msgid "Please double check the installation guides." +msgstr "Por favor verifique oGuia de instalação." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Falta o módulo 'fileinfo'" -#: templates/admin.php:49 +#: 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 "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Internacionalização não está a funcionar" -#: templates/admin.php:65 +#: 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." +"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 "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "A ligação à internet não está a funcionar" -#: templates/admin.php:80 +#: 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 "Este servidor ownCloud não tem uma ligação de internet funcional. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretende obter todas as funcionalidades do ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Executar uma tarefa com cada página carregada" -#: templates/admin.php:113 +#: 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 "cron.php está registado como um serviço webcron. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php está registado num serviço webcron para chamar a página cron.php por http uma vez por minuto." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Usar o serviço cron do sistema. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Use o serviço cron do sistema para chamar o ficheiro cron.php uma vez por minuto." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Partilha" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Activar a API de partilha" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Permitir que os utilizadores usem a API de partilha" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Permitir links" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Permitir que os utilizadores partilhem itens com o público utilizando um link." -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Permitir Envios Públicos" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Permitir aos utilizadores que possam definir outros utilizadores para carregar ficheiros para as suas pastas publicas" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Permitir repartilha" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Permitir que os utilizadores partilhem itens partilhados com eles" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Permitir que os utilizadores partilhem com todos" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Segurança" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Forçar HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Forçar clientes a ligar através de uma ligação encriptada" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Forçar os clientes a ligar a %s através de uma ligação encriptada" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Por favor ligue-se ao ownCloud através de uma ligação HTTPS para ligar/desligar o forçar da ligação por SSL" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Registo" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nível do registo" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mais" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Menos" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versão" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Usou %s do disponivel %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Password" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "A sua palavra-passe foi alterada" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Não foi possivel alterar a sua palavra-chave" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Palavra-chave actual" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nova palavra-chave" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Alterar palavra-chave" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Nome público" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "O seu endereço de email" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Preencha com o seu endereço de email para ativar a recuperação da palavra-chave" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Idioma" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Ajude a traduzir" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "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" @@ -91,9 +91,9 @@ msgstr "Confirmar a operação de apagar" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Aviso: A aplicação user_ldap e user_webdavauth são incompativeis. A aplicação pode tornar-se instável. Por favor, peça ao seu administrador para desactivar uma das aplicações." +msgstr "" #: templates/settings.php:12 msgid "" @@ -224,8 +224,8 @@ msgid "Disable Main Server" msgstr "Desactivar servidor principal" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Se estiver ligado, o ownCloud vai somente ligar-se a este servidor de réplicas." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -244,10 +244,11 @@ msgid "Turn off SSL certificate validation." msgstr "Desligar a validação de certificado SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Se a ligação apenas funcionar com está opção, importe o certificado SSL do servidor LDAP para o seu servidor do ownCloud." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -270,8 +271,8 @@ msgid "User Display Name Field" msgstr "Mostrador do nome de utilizador." #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atributo LDAP para gerar o nome de utilizador do ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -294,8 +295,8 @@ msgid "Group Display Name Field" msgstr "Mostrador do nome do grupo." #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atributo LDAP para gerar o nome do grupo do ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -355,13 +356,13 @@ msgid "" "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 "Por padrão o nome de utilizador interno vai ser criado através do atributo UUID. Desta forma é assegurado que o nome é único e os caracteres nao necessitam de serem convertidos. O nome interno tem a restrição de que apenas estes caracteres são permitidos: [ a-zA-Z0-9_.@- ]. Outros caracteres são substituidos pela sua correspondência ASCII ou simplesmente omitidos. Mesmo assim, quando for detetado uma colisão irá ser acrescentado um número. O nome interno é usado para identificar o utilizador internamente. É também o nome utilizado para a pasta inicial no ownCloud. É também parte de URLs remotos, como por exemplo os serviços *DAV. Com esta definição, o comportamento padrão é pode ser sobreposto. Para obter o mesmo comportamento antes do ownCloud 5 introduza o atributo do nome no campo seguinte. Deixe vazio para obter o comportamento padrão. As alterações apenas serão feitas para novos utilizadores LDAP." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -373,14 +374,14 @@ msgstr "Passar a detecção do UUID" #: 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 " +"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 behaviour. " +" 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 "Por defeito, o ownCloud deteta automaticamente o atributo UUID. Este atributo é usado para identificar inequivocamente grupos e utilizadores LDAP. Igualmente, o nome de utilizador interno é criado com base no UUID, se o contrário não for especificado. Pode sobrepor esta definição colocando um atributo à sua escolha. Tenha em atenção que esse atributo deve ser válido tanto para grupos como para utilizadores, e que é único. Deixe em branco para optar pelo comportamento por defeito. Estas alteração apenas terão efeito em novos utilizadores e grupos mapeados (adicionados)." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -392,18 +393,17 @@ msgstr "Mapeamento do utilizador LDAP" #: 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 "O ownCloud usa nomes de utilizadores para guardar e atribuir (meta) dados. Para identificar com precisão os utilizadores, cada utilizador de LDAP tem um nome de utilizador interno. Isto requer um mapeamento entre o utilizador LDAP e o utilizador ownCloud. Adicionalmente, o DN é colocado em cache para reduzir a interação com LDAP, porém não é usado para identificação. Se o DN muda, essas alterações serão vistas pelo ownCloud. O nome interno do ownCloud é usado em todo o lado, no ownCloud. Limpar os mapeamentos deixará vestígios em todo o lado. A limpeza dos mapeamentos não é sensível à configuração, pois afeta todas as configurações de LDAP! Nunca limpe os mapeamentos num ambiente de produção, apenas o faça numa fase de testes ou experimental." +"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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/pt_PT/user_webdavauth.po b/l10n/pt_PT/user_webdavauth.po index bee54e46dab1e05d77669bea1856f26415b5fbe2..34a04dacb0d7b342b01f4ac1c5a130eed2e32f3f 100644 --- a/l10n/pt_PT/user_webdavauth.po +++ b/l10n/pt_PT/user_webdavauth.po @@ -4,14 +4,14 @@ # # Translators: # Mouxy , 2012-2013 -# Helder Meneses , 2012 +# Helder Meneses , 2012-2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"PO-Revision-Date: 2013-07-29 15:30+0000\n" +"Last-Translator: Helder Meneses \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" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "Autenticação WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "" +msgid "Address: " +msgstr "Endereço:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "O ownCloud vai enviar as credenciais do utilizador através deste URL. Este plugin verifica a resposta e vai interpretar os códigos de estado HTTP 401 e 403 como credenciais inválidas, e todas as outras como válidas." +msgstr "As credenciais do utilizador vão ser enviadas para endereço URL. Este plugin verifica a resposta e vai interpretar os códigos de estado HTTP 401 e 403 como credenciais inválidas, e todas as outras respostas como válidas." diff --git a/l10n/ro/core.po b/l10n/ro/core.po index 092e28be3634f1ea89f0e8fbe6cbaa8bc1f6e5b0..39cd512c1a51c562460e9856cd29dfcfc9fb66d3 100644 --- a/l10n/ro/core.po +++ b/l10n/ro/core.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# corneliu.e , 2013 # dimaursu16 , 2013 # ripkid666 , 2013 # sergiu_sechel , 2013 @@ -10,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -42,7 +43,7 @@ msgstr "Această categorie deja există: %s" #: ajax/vcategories/favorites.php:24 #: ajax/vcategories/removeFromFavorites.php:26 msgid "Object type not provided." -msgstr "Tipul obiectului nu este prevazut" +msgstr "Tipul obiectului nu este prevăzut" #: ajax/vcategories/addToFavorites.php:30 #: ajax/vcategories/removeFromFavorites.php:30 @@ -53,16 +54,16 @@ msgstr "ID-ul %s nu a fost introdus" #: ajax/vcategories/addToFavorites.php:35 #, php-format msgid "Error adding %s to favorites." -msgstr "Eroare la adăugarea %s la favorite" +msgstr "Eroare la adăugarea %s la favorite." #: ajax/vcategories/delete.php:35 js/oc-vcategories.js:136 msgid "No categories selected for deletion." -msgstr "Nici o categorie selectată pentru ștergere." +msgstr "Nicio categorie selectată pentru ștergere." #: ajax/vcategories/removeFromFavorites.php:35 #, php-format msgid "Error removing %s from favorites." -msgstr "Eroare la ștergerea %s din favorite" +msgstr "Eroare la ștergerea %s din favorite." #: js/config.php:32 msgid "Sunday" @@ -140,59 +141,63 @@ msgstr "Noiembrie" msgid "December" msgstr "Decembrie" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Setări" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "secunde în urmă" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minut în urmă" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} minute in urma" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "Acum o ora" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} ore în urmă" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:818 msgid "today" msgstr "astăzi" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "ieri" -#: js/js.js:722 -msgid "{days} days ago" -msgstr "{days} zile in urma" +#: 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 "ultima lună" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "luni în urmă" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "ultimul an" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "ani în urmă" @@ -223,19 +228,19 @@ msgstr "Ok" #: js/oc-vcategories.js:5 js/oc-vcategories.js:85 js/oc-vcategories.js:102 #: js/oc-vcategories.js:117 js/oc-vcategories.js:132 js/oc-vcategories.js:162 msgid "The object type is not specified." -msgstr "Tipul obiectului nu a fost specificat" +msgstr "Tipul obiectului nu este specificat." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Eroare" #: js/oc-vcategories.js:179 msgid "The app name is not specified." -msgstr "Numele aplicației nu a fost specificat" +msgstr "Numele aplicației nu este specificat." #: js/oc-vcategories.js:194 msgid "The required file {file} is not installed!" @@ -249,123 +254,123 @@ msgstr "Partajat" msgid "Share" msgstr "Partajează" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Eroare la partajare" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Eroare la anularea partajării" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Eroare la modificarea permisiunilor" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Distribuie cu tine si grupul {group} de {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Distribuie cu tine de {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Partajat cu" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Partajare cu legătură" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Protejare cu parolă" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Parolă" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Permiteţi încărcarea publică." -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Expediază legătura prin poșta electronică" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Expediază" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Specifică data expirării" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data expirării" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Distribuie prin email:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Nici o persoană găsită" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Repartajarea nu este permisă" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Distribuie in {item} si {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Anulare partajare" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "poate edita" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "control acces" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "creare" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "actualizare" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "ștergere" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "partajare" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Protejare cu parolă" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Eroare la anularea datei de expirare" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Eroare la specificarea datei de expirare" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Se expediază..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Mesajul a fost expediat" @@ -374,15 +379,16 @@ msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." -msgstr "Modernizarea a eșuat! Te rugam sa raportezi problema aici.." +msgstr "Actualizarea a eșuat! Raportați problema către comunitatea ownCloud." #: js/update.js:21 msgid "The update was successful. Redirecting you to ownCloud now." -msgstr "Modernizare reusita! Vei fii redirectionat!" +msgstr "Actualizare reușită. Ești redirecționat către ownCloud." -#: lostpassword/controller.php:60 -msgid "ownCloud password reset" -msgstr "Resetarea parolei 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}" @@ -401,9 +407,9 @@ msgstr "Cerere esuata!
Esti sigur ca email-ul/numele de utilizator sunt corec #: lostpassword/templates/lostpassword.php:15 msgid "You will receive a link to reset your password via Email." -msgstr "Vei primi un mesaj prin care vei putea reseta parola via email" +msgstr "Vei primi un mesaj prin care vei putea reseta parola via email." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Nume utilizator" @@ -454,7 +460,7 @@ msgstr "Aplicații" #: strings.php:8 msgid "Admin" -msgstr "Admin" +msgstr "Administrator" #: strings.php:9 msgid "Help" @@ -462,13 +468,13 @@ msgstr "Ajutor" #: templates/403.php:12 msgid "Access forbidden" -msgstr "Acces interzis" +msgstr "Acces restricționat" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nu s-a găsit" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,105 +500,110 @@ msgstr "Avertisment de securitate" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "Versiunea dvs. PHP este vulnerabil la acest atac un octet null (CVE-2006-7243)" +msgstr "Versiunea dvs. PHP este vulnerabilă la un atac cu un octet NULL (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Vă rugăm să actualizați instalarea dvs. PHP pentru a utiliza ownCloud in siguranță." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Te rog actualizează versiunea PHP pentru a utiliza %s în mod securizat." #: templates/installation.php:32 msgid "" "No secure random number generator is available, please enable the PHP " "OpenSSL extension." -msgstr "Generatorul de numere pentru securitate nu este disponibil, va rog activati extensia PHP OpenSSL" +msgstr "Nu este disponibil niciun generator securizat de numere aleatoare, vă rog activați extensia PHP OpenSSL." #: templates/installation.php:33 msgid "" "Without a secure random number generator an attacker may be able to predict " "password reset tokens and take over your account." -msgstr "Fara generatorul pentru numere de securitate , un atacator poate afla parola si reseta contul tau" +msgstr "Fără generatorul securizat de numere aleatoare , un atacator poate anticipa simbolurile de resetare a parolei și poate prelua controlul asupra contului tău." #: templates/installation.php:39 msgid "" "Your data directory and files are probably accessible from the internet " "because the .htaccess file does not work." -msgstr "Directorul de date și fișiere sunt, probabil, accesibile de pe Internet, deoarece .htaccess nu funcționează." +msgstr "Directorul tău de date și fișiere sunt probabil accesibile de pe Internet, deoarece fișierul .htaccess nu funcționează." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pentru informatii despre configurarea corecta a serverului accesati pagina Documentare." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Pentru informații despre cum să configurezi serverul, vezi documentația." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Crează un cont de administrator" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avansat" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Director date" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Configurează baza de date" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "vor fi folosite" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Utilizatorul bazei de date" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Parola bazei de date" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Numele bazei de date" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tabela de spațiu a bazei de date" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Bază date" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Finalizează instalarea" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s este disponibil. Vezi mai multe informații despre procesul de actualizare." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Ieșire" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" -msgstr "Logare automata respinsa" +msgstr "Autentificare automată respinsă!" #: templates/login.php:10 msgid "" "If you did not change your password recently, your account may be " "compromised!" -msgstr "Daca nu schimbi parola cand de curand , contul tau poate fi conpromis" +msgstr "Dacă nu ți-ai schimbat parola recent, contul tău ar putea fi compromis!" #: templates/login.php:12 msgid "Please change your password to secure your account again." -msgstr "Te rog schimba parola pentru ca, contul tau sa fie securizat din nou." +msgstr "Te rog schimbă-ți parola pentru a-ți securiza din nou contul." #: templates/login.php:34 msgid "Lost your password?" @@ -610,7 +621,7 @@ msgstr "Autentificare" msgid "Alternative Logins" msgstr "Conectări alternative" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -123,11 +123,7 @@ msgstr "Partajează" msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Șterge" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Redenumire" @@ -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:457 -msgid "1 file uploading" -msgstr "un fișier se încarcă" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "fișiere se încarcă" @@ -203,33 +198,31 @@ msgstr "Se pregătește descărcarea. Aceasta poate să dureze ceva timp dacă f msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Ownclou" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Nume" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensiune" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modificat" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 folder" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} foldare" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fisier" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 @@ -288,45 +281,49 @@ msgstr "Dosar" msgid "From link" msgstr "de la adresa" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Sterge fisierele" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nu ai permisiunea de a sterge fisiere aici." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Nimic aici. Încarcă ceva!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Descarcă" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Anulare partajare" -#: templates/index.php:107 +#: 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" -#: 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 "Fișierul care l-ai încărcat a depășită limita maximă admisă la încărcare pe acest server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Fișierele sunt scanate, te rog așteptă." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "În curs de scanare" diff --git a/l10n/ro/files_encryption.po b/l10n/ro/files_encryption.po index d499ad94c54db7fc2e8381f3356f9c8ebebb41f5..6a275845501aaa98f97164edf5a0f70a38ef6964 100644 --- a/l10n/ro/files_encryption.po +++ b/l10n/ro/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ro/files_sharing.po b/l10n/ro/files_sharing.po index 16ec0309aee1ccef032807c2d60538f97efa5a95..bf1518c49c38249e9e53106fa44e7dc934882a2a 100644 --- a/l10n/ro/files_sharing.po +++ b/l10n/ro/files_sharing.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: sergiu_sechel \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" "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" @@ -30,28 +30,52 @@ msgstr "Parolă" msgid "Submit" msgstr "Trimite" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s a partajat directorul %s cu tine" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s a partajat fișierul %s cu tine" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Descarcă" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Încărcare" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anulează încărcarea" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Nici o previzualizare disponibilă pentru " diff --git a/l10n/ro/files_trashbin.po b/l10n/ro/files_trashbin.po index 22971b884bfe6f447223160f56edade77fdf9cf4..59197c9f4fdbc2a1e04b6cba64f83558ae65818e 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,47 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Eroare" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Stergere permanenta" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Nume" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 folder" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} foldare" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fisier" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} fisiere" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ro/files_versions.po b/l10n/ro/files_versions.po index 07ce3897b263a053f35bb3c8958cb722b3f147a3..fca319471ecf9e7b332218ab2be15a278212c021 100644 --- a/l10n/ro/files_versions.po +++ b/l10n/ro/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Nu a putut reveni: %s" -#: history.php:40 -msgid "success" -msgstr "success" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Fisierul %s a revenit la versiunea %s" - -#: history.php:49 -msgid "failure" -msgstr "eșec" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Fisierele %s nu au putut reveni la versiunea %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versiuni" -#: history.php:69 -msgid "No old versions available" -msgstr "Versiunile vechi nu sunt disponibile" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Nici un dosar specificat" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Versiuni" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Readuceti un fișier la o versiune anterioară, făcând clic pe butonul revenire" +#: js/versions.js:149 +msgid "Restore" +msgstr "" diff --git a/l10n/ro/lib.po b/l10n/ro/lib.po index 9dcc447b2b211bd8e835d050495be5fb38f7a63c..28319ce8b4429b8c2ea3c5dd2542a8b284ac1c3e 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+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,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "servicii web controlate de tine" @@ -203,61 +200,61 @@ 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ă" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ro/settings.po b/l10n/ro/settings.po index 05e60336badff9cdff424efed94cc66eb400ce2f..1889d0846af8dd06da742c1ee91861a75b31d545 100644 --- a/l10n/ro/settings.po +++ b/l10n/ro/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "Trebuie să furnizaţi o parolă validă" msgid "__language_name__" msgstr "_language_name_" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Avertisment de securitate" -#: templates/admin.php:20 +#: 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 "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Atenţie la implementare" -#: templates/admin.php:34 +#: 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 "Serverul de web nu este încă setat corespunzător pentru a permite sincronizarea fișierelor deoarece interfața WebDAV pare a fi întreruptă." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Vă rugăm să verificați ghiduri de instalare." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modulul \"Fileinfo\" lipsește" -#: templates/admin.php:49 +#: 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 "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Localizarea nu funcționează" -#: templates/admin.php:65 +#: 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 "Acest server ownCloud nu poate seta sistemul de localizare pentru% s. Acest lucru înseamnă că ar putea exista probleme cu anumite caractere în numele de fișiere. Vă recomandăm să instalați pachetele necesare pe sistemul dumneavoastră pentru a sprijini% s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Conexiunea la internet nu funcționează" -#: templates/admin.php:80 +#: 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 "Acest server ownCloud nu are nici o conexiune la internet activă. Acest lucru înseamnă că anumite caracteristici, cum ar fi montarea mediilor de stocare externe, notificări despre actualizări sau instalarea de aplicatii tereţe nu funcționează. Accesarea fișierelor de la distanță și trimiterea de e-mailuri de notificare s-ar putea, de asemenea, să nu funcționeze. Vă sugerăm să permiteţi conectarea la Internet pentru acest server, dacă doriți să aveți toate caracteristicile de oferite de ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Execută o sarcină la fiecare pagină încărcată" -#: templates/admin.php:113 +#: 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 "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Folosește serviciul cron al sistemului. Accesează fișierul cron.php din directorul owncloud printr-un cronjob de sistem odată la fiecare minut." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Partajare" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Activare API partajare" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Permite aplicațiilor să folosească API-ul de partajare" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Pemite legături" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Permite utilizatorilor să partajeze fișiere în mod public prin legături" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Permite repartajarea" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Permite utilizatorilor să repartajeze fișiere partajate cu ei" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Permite utilizatorilor să partajeze cu oricine" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Permite utilizatorilor să partajeze doar cu utilizatori din același grup" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Securitate" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Jurnal de activitate" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivel jurnal" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mai mult" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mai puțin" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Versiunea" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ați utilizat %s din %s disponibile" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parolă" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Parola a fost modificată" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Imposibil de-ați schimbat parola" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Parola curentă" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Noua parolă" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Schimbă parola" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Adresa ta de email" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Completează o adresă de mail pentru a-ți putea recupera parola" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Limba" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Ajută la traducere" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Atentie: Apps user_ldap si user_webdavauth sunt incompatibile. Este posibil sa experimentati un comportament neasteptat. Vă rugăm să întrebați administratorul de sistem pentru a dezactiva una dintre ele." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Oprește validarea certificatelor SSL " #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Dacă conexiunea lucrează doar cu această opțiune, importează certificatul SSL al serverului LDAP în serverul ownCloud." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Câmpul cu numele vizibil al utilizatorului" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atributul LDAP folosit pentru a genera numele de utilizator din ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Câmpul cu numele grupului" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atributul LDAP folosit pentru a genera numele grupurilor din ownCloud" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ro/user_webdavauth.po b/l10n/ro/user_webdavauth.po index 79f4ebb8a790942de08371322b7d43f364a4ecc6..a4507bddf333569d7f07ba646d8347375b4b0fd9 100644 --- a/l10n/ro/user_webdavauth.po +++ b/l10n/ro/user_webdavauth.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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Romanian (http://www.transifex.com/projects/p/owncloud/language/ro/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "Autentificare WebDAV" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud va trimite datele de autentificare la acest URL. Acest modul verifică răspunsul și va interpreta codurile de status HTTP 401 sau 403 ca fiind date de autentificare invalide, și orice alt răspuns ca fiind date valide." +msgstr "" diff --git a/l10n/ru/core.po b/l10n/ru/core.po index 797591a1eeb4a071660c5eb6eca4bf4b82dd0bfe..81dee27e6ca6b8c8a8b3eee1ab7b6caeb214ef3d 100644 --- a/l10n/ru/core.po +++ b/l10n/ru/core.po @@ -8,14 +8,15 @@ # foool , 2013 # Victor Bravo <>, 2013 # Vyacheslav Muranov , 2013 +# Den4md , 2013 # Langaru , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: Victor Bravo <>\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" @@ -143,59 +144,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 "1 минуту назад" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} минут назад" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "час назад" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} часов назад" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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 "{days} дней назад" +#: 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 "{months} месяцев назад" +#: 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 "несколько лет назад" @@ -231,8 +236,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Ошибка" @@ -252,123 +257,123 @@ msgstr "Общие" msgid "Share" msgstr "Открыть доступ" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Ошибка при открытии доступа" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Ошибка при закрытии доступа" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Ошибка при смене разрешений" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} открыл доступ для Вас и группы {group} " -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} открыл доступ для Вас" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Поделиться с" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Поделиться с ссылкой" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Защитить паролем" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Пароль" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Разрешить открытую загрузку" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Почтовая ссылка на персону" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Отправить" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Установить срок доступа" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Дата окончания" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Поделится через электронную почту:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Ни один человек не найден" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Общий доступ не разрешен" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Общий доступ к {item} с {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Закрыть общий доступ" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "может редактировать" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "контроль доступа" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "создать" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "обновить" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "удалить" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "открыть доступ" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Защищено паролем" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Ошибка при отмене срока доступа" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Ошибка при установке срока доступа" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Отправляется ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Письмо отправлено" @@ -383,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}" @@ -406,7 +412,7 @@ msgstr "Запрос не удался. Вы уверены, что email или msgid "You will receive a link to reset your password via Email." msgstr "На ваш адрес Email выслана ссылка для сброса пароля." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Имя пользователя" @@ -467,11 +473,11 @@ msgstr "Помощь" msgid "Access forbidden" msgstr "Доступ запрещён" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облако не найдено" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -500,8 +506,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Ваша версия PHP уязвима к атаке NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Пожалуйста обновите Ваш PHP чтобы использовать ownCloud безопасно." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Пожалуйста обновите Вашу PHP конфигурацию для безопасного использования %s." #: templates/installation.php:32 msgid "" @@ -521,68 +528,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Ваша папка с данными и файлы возможно доступны из интернета потому что файл .htaccess не работает." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Для информации как правильно настроить Ваш сервер, пожалйста загляните в документацию." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Для информации, как правильно настроить Ваш сервер, пожалуйста загляните в документацию." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Создать учётную запись администратора" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Дополнительно" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Директория с данными" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "будет использовано" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Имя пользователя для базы данных" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Пароль для базы данных" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Название базы данных" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Табличое пространство базы данных" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Хост базы данных" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Завершить установку" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s доступно. Получить дополнительную информацию о порядке обновления." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Выйти" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматический вход в систему отключен!" @@ -613,7 +624,7 @@ msgstr "Войти" msgid "Alternative Logins" msgstr "Альтернативные имена пользователя" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -124,11 +124,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 "Переименовать" @@ -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:457 -msgid "1 file uploading" -msgstr "загружается 1 файл" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "файлы загружаются" @@ -204,33 +199,31 @@ msgstr "Загрузка началась. Это может потребова msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Неправильное имя каталога. Имя 'Shared' зарезервировано." -#: 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 "1 папка" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 файл" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 @@ -289,45 +282,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/ru/files_encryption.po b/l10n/ru/files_encryption.po index d206ebc812059b226bb5267497062fe6a59987b4..c8c997b80a2d2647396d496471393c7d89afb496 100644 --- a/l10n/ru/files_encryption.po +++ b/l10n/ru/files_encryption.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-09 02:03+0200\n" -"PO-Revision-Date: 2013-07-08 10:40+0000\n" -"Last-Translator: Victor Bravo <>\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" "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" @@ -72,10 +72,14 @@ msgstr "Требования отсутствуют." #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Пожалуйста, убедитесь, что PHP 5.3.3 или новее установлен и что расширение OpenSSL PHP включен и настроен. В настоящее время, шифрование для приложения было отключено." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" +msgstr "" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/ru/files_sharing.po b/l10n/ru/files_sharing.po index c55ea5d2491cc91b6439ebcce0097d0292606a8b..244bdea5e0b9d235882362705362993ebc31601b 100644 --- a/l10n/ru/files_sharing.po +++ b/l10n/ru/files_sharing.po @@ -4,13 +4,14 @@ # # Translators: # Victor Bravo <>, 2013 +# Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Victor Bravo <>\n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+0000\n" +"Last-Translator: Den4md \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" @@ -30,28 +31,52 @@ msgstr "Пароль" msgid "Submit" msgstr "Отправить" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "К сожалению, эта ссылка, похоже не будет работать больше." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Причиной может быть:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "объект был удалён" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "срок ссылки истёк" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "обмен отключен" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Для получения дополнительной информации, пожалуйста, спросите того кто отослал данную ссылку." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s открыл доступ к папке %s для Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s открыл доступ к файлу %s для Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Скачать" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Загрузка" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Отмена загрузки" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Предпросмотр недоступен для" diff --git a/l10n/ru/files_trashbin.po b/l10n/ru/files_trashbin.po index c8e233ad44dbb39de4e7c330c1dd894d5dc4ab1d..c0a473a4e6de557b6633e32d9641c8dbacd4720d 100644 --- a/l10n/ru/files_trashbin.po +++ b/l10n/ru/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Den4md , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,47 @@ msgstr "%s не может быть удалён навсегда" msgid "Couldn't restore %s" msgstr "%s не может быть восстановлен" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "выполнить операцию восстановления" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Ошибка" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "удалить файл навсегда" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Удалено навсегда" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Имя" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Удалён" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 папка" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} файлов" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "восстановлен" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ru/files_versions.po b/l10n/ru/files_versions.po index 78d3f7898b96c174eacfe2b47376cf7eabc9389b..792666d741e2f4ce83db6ceb4a23ca5f71bcef78 100644 --- a/l10n/ru/files_versions.po +++ b/l10n/ru/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexander Shashkevych , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"PO-Revision-Date: 2013-07-29 10:50+0000\n" +"Last-Translator: Alexander Shashkevych \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" @@ -17,41 +18,27 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Не может быть возвращён: %s" -#: history.php:40 -msgid "success" -msgstr "успех" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Файл %s был возвращён к версии %s" - -#: history.php:49 -msgid "failure" -msgstr "провал" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Файл %s не может быть возвращён к версии %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Версии" -#: history.php:69 -msgid "No old versions available" -msgstr "Нет доступных старых версий" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Не удалось возвратить {file} к ревизии {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Путь не указан" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Ещё версии..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Версии" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Других версий не доступно" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Вернуть файл к предыдущей версии нажатием на кнопку возврата" +#: js/versions.js:149 +msgid "Restore" +msgstr "Восстановить" diff --git a/l10n/ru/lib.po b/l10n/ru/lib.po index 36029f07eece27ade03642fa3030165cd38b68f4..fe99071b8b577ddaf51c81b335fb811b9c80d847 100644 --- a/l10n/ru/lib.po +++ b/l10n/ru/lib.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexander Shashkevych , 2013 # Friktor , 2013 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: Russian (http://www.transifex.com/projects/p/owncloud/language/ru/)\n" "MIME-Version: 1.0\n" @@ -35,26 +36,22 @@ 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 "" +msgstr "Не смог обновить \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "веб-сервисы под вашим управлением" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "не могу открыть \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "Выбранные файлы слишком велики, чтобы с msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Загрузите файл маленьшими порциями, раздельно или вежливо попросите Вашего администратора." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,56 @@ 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 "несколько лет назад" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Вызвано:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/ru/settings.po b/l10n/ru/settings.po index 496c7d2a8b08dd446635db7a43297a2831817dfe..32a1640562dec7f19f079637e4d480ad99c6f9bf 100644 --- a/l10n/ru/settings.po +++ b/l10n/ru/settings.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexander Shashkevych , 2013 # alfsoft , 2013 # lord93 , 2013 # eurekafag , 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: Alexander Shashkevych \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" @@ -174,175 +175,173 @@ msgstr "Укажите валидный пароль" msgid "__language_name__" msgstr "Русский " -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Предупреждение безопасности" -#: templates/admin.php:20 +#: 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 "Ваш каталог с данными и файлы, вероятно, доступны из интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем настроить веб-сервер таким образом, чтобы каталоги данных больше не были доступны, или переместить их за пределы корневого каталога документов веб-сервера." +"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." +msgstr "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Предупреждение установки" -#: templates/admin.php:34 +#: 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 "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "Пожалуйста, дважды просмотрите инструкции по установке." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' отсутствует" -#: templates/admin.php:49 +#: 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 "PHP модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Локализация не работает" -#: templates/admin.php:65 +#: 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 "Этот сервер ownCloud не может установить язык системы на %s. Это означает, что могут быть проблемы с некоторыми символами в именах файлов. Мы настоятельно рекомендуем установить необходимые пакеты в вашей системе для поддержки %s." +"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 "Системный язык не может быть установлен в %s. Это значит, что могут возникнуть проблемы с некоторыми символами в именах файлов. Мы настойчиво предлагаем установить требуемые пакеты в Вашей системе для поддержки %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Интернет-соединение не работает" -#: templates/admin.php:80 +#: 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 "Этот сервер ownCloud не имеет рабочего интернет-соединения. Это значит, что некоторые возможности отключены, например: подключение внешних носителей, уведомления об обновлениях, установка сторонних приложений." - -#: templates/admin.php:94 +"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." +msgstr "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности." + +#: templates/admin.php:92 msgid "Cron" msgstr "Планировщик задач по расписанию" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Выполнять одно задание с каждой загруженной страницей" -#: templates/admin.php:113 +#: 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 "Зарегистрировать cron.php в службе webcron сервисе. Вызывает страницу cron.php в корне owncloud раз в минуту через http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php зарегистрирован в сервисе webcron, чтобы cron.php вызывался раз в минуту используя http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Использовать системную службу cron. Вызов файла cron.php в папке owncloud через систему cronjob раз в минуту." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Использовать системный сервис cron для вызова cron.php раз в минуту." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Общий доступ" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Включить API общего доступа" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Позволить приложениям использовать API общего доступа" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Разрешить ссылки" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Разрешить открытые загрузки" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Разрешить пользователям позволять другим загружать в их открытые папки" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Разрешить переоткрытие общего доступа" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Разрешить пользователя делать общий доступ любому" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Разрешить пользователям делать общий доступ только для пользователей их групп" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Безопасность" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Принудить к HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Принудить клиентов подключаться к ownCloud через шифрованное подключение." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Принудить клиентов подключаться к %s через шифрованное соединение." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Пожалуйста, подключитесь к этому экземпляру ownCloud через HTTPS для включения или отключения SSL принуждения." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL." -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Лог" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Уровень лога" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Больше" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Меньше" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Версия" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Вы использовали %s из доступных %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Ваш пароль изменён" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Невозможно сменить пароль" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Текущий пароль" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Новый пароль" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Сменить пароль" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Отображаемое имя" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Ваш адрес электронной почты" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Введите адрес электронной почты чтобы появилась возможность восстановления пароля" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Язык" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Помочь с переводом" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 2013 # Fenuks , 2013 # alfsoft , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: alfsoft \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:21+0000\n" +"Last-Translator: Alexander Shashkevych \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" @@ -90,9 +91,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Внимание:Приложения user_ldap и user_webdavauth несовместимы. Вы можете столкнуться с неожиданным поведением. Пожалуйста, обратитесь к системному администратору, чтобы отключить одно из них." +msgstr "Предупреждение: Приложения user_ldap и user_webdavauth не совместимы. Вы можете наблюдать некорректное поведение. Пожалуйста попросите Вашего системного администратора отключить одно из них." #: templates/settings.php:12 msgid "" @@ -223,8 +224,8 @@ msgid "Disable Main Server" msgstr "Отключение главного сервера" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Когда включено, ownCloud будет соединяться только с резервным сервером." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -243,10 +244,11 @@ msgid "Turn off SSL certificate validation." msgstr "Отключить проверку сертификата SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Если соединение работает только с этой опцией, импортируйте на ваш сервер ownCloud сертификат SSL сервера LDAP." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -269,8 +271,8 @@ msgid "User Display Name Field" msgstr "Поле отображаемого имени пользователя" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Атрибут LDAP для генерации имени пользователя ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -293,8 +295,8 @@ msgid "Group Display Name Field" msgstr "Поле отображаемого имени группы" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Атрибут LDAP для генерации имени группы ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -354,13 +356,13 @@ msgid "" "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 "По-умолчанию внутреннее имя пользователя будет создано из атрибута UUID. Это необходимо для того, чтобы имя пользователя было уникальным и не содержало в себе запрещенных символов. Внутреннее имя пользователя может состоять только из следующих символов: [ a-zA-Z0-9_.@- ]. Остальные символы замещаются соответствиями из таблицы ASCII или же просто пропускаются. При совпадении к имени будет добавлено число. Внутреннее имя пользователя используется для внутренней идентификации пользователя. Также оно является именем по-умолчанию для папки пользователя в ownCloud. Оно также портом для удаленных ссылок, к примеру, для всех сервисов *DAV. С помощию данной настройки можно изменить поведение по-умолчанию. Чтобы достичь поведения, как было настроено до изменения, ownCloud 5 выводит атрибут имени пользователя в этом поле. Оставьте его пустым для режима по-умолчанию. Изменения будут иметь эффект только для новых подключенных (добавленных) пользователей LDAP." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -372,14 +374,14 @@ msgstr "Переопределить нахождение UUID" #: 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 " +"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 behaviour. " +" 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 "По-умолчанию, ownCloud определяет атрибут UUID автоматически. Этот атрибут используется для того, чтобы достоверно индентифицировать пользователей и группы LDAP. Также, на основании атрибута UUID создается внутреннее имя пользователя, если выше не указано иначе. Вы можете переопределить эту настройку и указать свой атрибут по выбору. Вы должны удостовериться, что выбранный вами атрибут может быть выбран для пользователей и групп, а также то, что он уникальный. Оставьте поле пустым для поведения по-умолчанию. Изменения вступят в силу только для новых подключенных (добавленных) пользователей и групп LDAP." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -391,18 +393,17 @@ msgstr "Соответствия Имя-Пользователь LDAP" #: 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 "ownCloud использует имена пользователей для хранения и назначения метаданных. Для точной идентификации и распознавания пользователей, каждый пользователь LDAP будет иметь свое внутреннее имя пользователя. Это требует наличия соответствия имени пользователя ownCloud к пользователю LDAP. При создании имя пользователя назначается идентификатору UUID пользователя LDAP. Помимо этого кэшируется доменное имя (DN) для снижения взаимодействия LDAP, однако оно не используется для идентификации. Если доменное имя было изменено, об этом станет известно ownCloud. Внутреннее имя ownCloud используется повсеместно в ownCloud. При очистке соответствий повсюду будут оставаться \"хвосты\". Очистка соответствий не привязана к конкретной конфигурации, она влияет на все конфигурации 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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/ru/user_webdavauth.po b/l10n/ru/user_webdavauth.po index c246ab7984969895d15318bf685b556e795a96e1..c209524a13f8410fb5c28adcedcc4d0213a5ad00 100644 --- a/l10n/ru/user_webdavauth.po +++ b/l10n/ru/user_webdavauth.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Alexander Shashkevych , 2013 # lord93 , 2013 # Denis , 2013 # adol , 2012 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-09 02:03+0200\n" -"PO-Revision-Date: 2013-07-08 10:40+0000\n" -"Last-Translator: Victor Bravo <>\n" +"POT-Creation-Date: 2013-07-30 01:55-0400\n" +"PO-Revision-Date: 2013-07-29 12:40+0000\n" +"Last-Translator: Alexander Shashkevych \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" @@ -27,12 +28,12 @@ msgid "WebDAV Authentication" msgstr "Идентификация WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Адрес:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud отправит учётные данные пользователя на этот адрес. Затем плагин проверит ответ, в случае HTTP ответа 401 или 403 данные будут считаться неверными, при любых других ответах - верными." +msgstr "Учётные данные пользователя будут отправлены на этот адрес. Плагин проверит ответ и будет рассматривать HTTP коды 401 и 403 как неверные учётные данные, при любом другом ответе - учётные данные пользователя верны." diff --git a/l10n/ru_RU/files_encryption.po b/l10n/ru_RU/files_encryption.po deleted file mode 100644 index 4690ff89165ba138409b45be7e365d54666c3bad..0000000000000000000000000000000000000000 --- 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_sharing.po b/l10n/ru_RU/files_sharing.po deleted file mode 100644 index 2c8af92a3a6f50867d083821256d7b9beaf68a2a..0000000000000000000000000000000000000000 --- 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_versions.po b/l10n/ru_RU/files_versions.po deleted file mode 100644 index 39fe47d2edf66429dbba1d7ccb768e1dc31edd91..0000000000000000000000000000000000000000 --- 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/si_LK/core.po b/l10n/si_LK/core.po index 0132778aad983006859dee7290b092c1b44aad5f..01e83cce14ab9082015093540cd5b2fcf7f763de 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 මිනිත්තුවකට පෙර" +#: 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:718 -msgid "1 hour ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: 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 "අවුරුදු කීපයකට පෙර" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "දෝෂයක්" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "බෙදා හදා ගන්න" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "බෙදාගන්න" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "යොමුවක් මඟින් බෙදාගන්න" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "මුර පදයකින් ආරක්ශාකරන්න" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "මුර පදය" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "කල් ඉකුත් විමේ දිනය දමන්න" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "කල් ඉකුත් විමේ දිනය" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "විද්‍යුත් තැපෑල මඟින් බෙදාගන්න: " -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "නොබෙදු" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "සංස්කරණය කළ හැක" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "ප්‍රවේශ පාලනය" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "සදන්න" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "යාවත්කාලීන කරන්න" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "මකන්න" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "බෙදාහදාගන්න" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "මුර පදයකින් ආරක්ශාකර ඇත" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "කල් ඉකුත් දිනය ඉවත් කිරීමේ දෝෂයක්" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "කල් ඉකුත් දිනය ස්ථාපනය කිරීමේ දෝෂයක්" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "ඔබගේ මුරපදය ප්‍රත්‍යාරම්භ කිරීම සඳහා යොමුව විද්‍යුත් තැපෑලෙන් ලැබෙනු ඇත" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "පරිශීලක නම" @@ -461,11 +462,11 @@ msgstr "උදව්" msgid "Access forbidden" msgstr "ඇතුල් වීම තහනම්" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "සොයා ගත නොහැක" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "දියුණු/උසස්" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "දත්ත ෆෝල්ඩරය" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "භාවිතා වනු ඇත" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "දත්තගබඩා භාවිතාකරු" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "දත්තගබඩාවේ මුරපදය" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "දත්තගබඩාවේ නම" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "දත්තගබඩා සේවාදායකයා" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "ස්ථාපනය කිරීම අවසන් කරන්න" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "නික්මීම" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "ප්‍රවේශවන්න" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\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 "1 ගොනුවක් උඩගත කෙරේ" - -#: 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 "1 ෆොල්ඩරයක්" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ගොනුවක්" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +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 @@ -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/si_LK/files_encryption.po b/l10n/si_LK/files_encryption.po index fee22ab53772f069b6121cdaf0f84acb502743df..96c41e6e93e904f96b9c95b293bb9ac363a2fea9 100644 --- a/l10n/si_LK/files_encryption.po +++ b/l10n/si_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/si_LK/files_sharing.po b/l10n/si_LK/files_sharing.po index 40540cda0d3b1d0bb6d6723b4ba630190d070517..83f086d0d7ce1c6f51512d94459ac8e860591d05 100644 --- a/l10n/si_LK/files_sharing.po +++ b/l10n/si_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "මුර පදය" msgid "Submit" msgstr "යොමු කරන්න" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ඔබව %s ෆෝල්ඩරයට හවුල් කරගත්තේය" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ඔබ සමඟ %s ගොනුව බෙදාහදාගත්තේය" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "බාන්න" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "උඩුගත කරන්න" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "උඩුගත කිරීම අත් හරින්න" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "පූර්වදර්ශනයක් නොමැත" diff --git a/l10n/si_LK/files_trashbin.po b/l10n/si_LK/files_trashbin.po index 2dc217d93468f897d0a8dc933b3d2420d29c5b27..ef616c5a5481bf39a8342a4e1ef63a01379d2741 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "දෝෂයක්" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "නම" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 ෆොල්ඩරයක්" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ගොනුවක්" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/si_LK/files_versions.po b/l10n/si_LK/files_versions.po index 5106a985d4fbecb2105824e6822a23cb35bb9caf..ab29f2138c5cecda064cd9dbf3eb0f6402108e5c 100644 --- a/l10n/si_LK/files_versions.po +++ b/l10n/si_LK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: si_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "අනුවාද" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/si_LK/lib.po b/l10n/si_LK/lib.po index f6c17bac2d5b2af402e95d0302dd05ed2e761424..838b32a1fdc642d9325c6c77d3063e643ae61a74 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-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: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\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 "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 "අවුරුදු කීපයකට පෙර" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/si_LK/settings.po b/l10n/si_LK/settings.po index d5ec255c61f7b8c188c3608e04ea64cf2ce5af9e..1d82e019d907e7e078e50f60417481566e2eed07 100644 --- a/l10n/si_LK/settings.po +++ b/l10n/si_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "ආරක්ෂක නිවේදනයක්" -#: templates/admin.php:20 +#: 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 "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගොනුවලට අන්තර්ජාලයෙන් පිවිසිය හැක. ownCloud සපයා ඇති .htaccess ගොනුව ක්‍රියාකරන්නේ නැත. අපි තරයේ කියා සිටිනුයේ නම්, මෙම දත්ත හා ගොනු එසේ පිවිසීමට නොහැකි වන ලෙස ඔබේ වෙබ් සේවාදායකයා වින්‍යාස කරන ලෙස හෝ එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටතට ගෙනයන ලෙසය." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "හුවමාරු කිරීම" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "යොමු සලසන්න" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "යළි යළිත් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "හුවමාරු කළ හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "ඕනෑම අයෙකු හා හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "තම කණ්ඩායමේ අයෙකු හා පමණක් හුවමාරුවට අවසර දෙමි" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "ලඝුව" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "වැඩි" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "අඩු" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "මුර පදය" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "ඔබගේ මුර පදය වෙනස් කෙරුණි" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "මුර පදය වෙනස් කළ නොහැකි විය" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "වත්මන් මුරපදය" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "නව මුරපදය" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "මුරපදය වෙනස් කිරීම" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "විද්‍යුත් තැපෑල" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "ඔබගේ විද්‍යුත් තැපෑල" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "මුරපද ප්‍රතිස්ථාපනය සඳහා විද්‍යුත් තැපැල් විස්තර ලබා දෙන්න" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "භාෂාව" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "පරිවර්ථන සහය" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/si_LK/user_webdavauth.po b/l10n/si_LK/user_webdavauth.po index f9745043cb11894738885d7d7b4e45532c64a821..3018e01ed39b7d8d1bd62c63e0332f177aec4d7c 100644 --- a/l10n/si_LK/user_webdavauth.po +++ b/l10n/si_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Sinhala (Sri Lanka) (http://www.transifex.com/projects/p/owncloud/language/si_LK/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/sk/core.po b/l10n/sk/core.po index 0afee3edf45f3ad3dc7e822462a5c0c756a4a3ee..d92fbb15323f2faf9131e7afb77f3be7546d2691 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-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -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:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -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:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +229,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +250,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +405,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +466,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +499,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +617,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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_encryption.po b/l10n/sk/files_encryption.po index f4a23c5980a6e5623172eb3d6e24b4d5fbd84276..796557674c439a39531d39d7383f3c90cef061bd 100644 --- a/l10n/sk/files_encryption.po +++ b/l10n/sk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sk/files_sharing.po b/l10n/sk/files_sharing.po index 00454814546bc40502b3cca139e556a238c1c07e..42e2cda81b6b6a8f4864eee09a11994242d97034 100644 --- a/l10n/sk/files_sharing.po +++ b/l10n/sk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sk/files_trashbin.po b/l10n/sk/files_trashbin.po index 101816d2a65655db3cf2cf681413baeea312c405..322a3dbd56e8c00adf754aa703e6ba9ca9f2c1fc 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,46 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/sk/files_versions.po b/l10n/sk/files_versions.po index e61ebf4f94365ff128f53db1ee283eebcb58a1fb..8c49fe8cc5f62d83539e707d3cab8b84b72d2915 100644 --- a/l10n/sk/files_versions.po +++ b/l10n/sk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/sk/lib.po b/l10n/sk/lib.po index 9d5bd19be2dfbeaa2089718eb79d4c3bb92e2f71..1956868b0dbff4fe33701c5d20a3a11381abbd57 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/settings.po b/l10n/sk/settings.po index ef90e33c4cb2982290c752569cd918077159675e..bb053c28194d7e90904eb58fb4287efcc8cf81b8 100644 --- a/l10n/sk/settings.po +++ b/l10n/sk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/sk/user_webdavauth.po b/l10n/sk/user_webdavauth.po index 6704af8cc4133dc732429a89f98cc4e1f07be137..0cb6ce89fac993321b343f4ed526431774b75b15 100644 --- a/l10n/sk/user_webdavauth.po +++ b/l10n/sk/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Slovak (http://www.transifex.com/projects/p/owncloud/language/sk/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/sk_SK/core.po b/l10n/sk_SK/core.po index 0745d2b735aeb82e5074014f2837246551f294a9..025c8016e018b9134e6556f913695249f42a3b55 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Nastavenia" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "pred sekundami" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "pred minútou" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "pred {minutes} minútami" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "Pred 1 hodinou" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "Pred {hours} hodinami." - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:818 msgid "today" msgstr "dnes" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "včera" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "minulý mesiac" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "pred mesiacmi" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "minulý rok" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "pred rokmi" @@ -226,8 +230,8 @@ msgstr "Nešpecifikovaný typ objektu." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Chyba" @@ -247,123 +251,123 @@ msgstr "Zdieľané" msgid "Share" msgstr "Zdieľať" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Chyba počas zdieľania" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Chyba počas ukončenia zdieľania" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Chyba počas zmeny oprávnení" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Zdieľané s vami a so skupinou {group} používateľom {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Zdieľané s vami používateľom {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Zdieľať s" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Zdieľať cez odkaz" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Chrániť heslom" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Heslo" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Povoliť verejné nahrávanie" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Odoslať odkaz emailom" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Odoslať" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Nastaviť dátum expirácie" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Dátum expirácie" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Zdieľať cez e-mail:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Používateľ nenájdený" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Zdieľanie už zdieľanej položky nie je povolené" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Zdieľané v {item} s {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "môže upraviť" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "prístupové práva" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "vytvoriť" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "aktualizovať" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "vymazať" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "zdieľať" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Chránené heslom" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Chyba pri odstraňovaní dátumu expirácie" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Chyba pri nastavení dátumu expirácie" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Odosielam ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email odoslaný" @@ -378,9 +382,10 @@ msgstr "Aktualizácia nebola úspešná. Problém nahláste na Uistili ste sa, že Vaše používateľské meno msgid "You will receive a link to reset your password via Email." msgstr "Odkaz pre obnovenie hesla obdržíte e-mailom." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Meno používateľa" @@ -462,11 +467,11 @@ msgstr "Pomoc" msgid "Access forbidden" msgstr "Prístup odmietnutý" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Nenájdené" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +500,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Verzia Vášho PHP je napadnuteľná pomocou techniky \"NULL Byte\" (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Aktualizujte prosím Vašu inštanciu PHP pre bezpečné používanie ownCloud." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Aktualizujte prosím vašu inštanciu PHP pre bezpečné používanie %s." #: templates/installation.php:32 msgid "" @@ -516,68 +522,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Váš priečinok s dátami a súbormi je dostupný z internetu, lebo súbor .htaccess nefunguje." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Pre informácie, ako správne nastaviť Váš server sa pozrite do dokumentácie." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Pre informácie, ako správne nastaviť váš server, sa pozrite do dokumentácie." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Vytvoriť administrátorský účet" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Rozšírené" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Priečinok dát" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Nastaviť databázu" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "bude použité" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Hostiteľ databázy" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Heslo databázy" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Meno databázy" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tabuľkový priestor databázy" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Server databázy" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Dokončiť inštaláciu" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je dostupná. Získajte viac informácií k postupu aktualizáce." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Odhlásiť" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatické prihlásenie bolo zamietnuté!" @@ -608,7 +618,7 @@ msgstr "Prihlásiť sa" msgid "Alternative Logins" msgstr "Alternatívne prihlasovanie" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Zdieľať" msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Zmazať" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Premenovať" @@ -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:457 -msgid "1 file uploading" -msgstr "1 súbor sa posiela " - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "nahrávanie súborov" @@ -201,33 +196,31 @@ msgstr "Vaše sťahovanie sa pripravuje. Ak sú sťahované súbory veľké, mô msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neplatné meno priečinka. Používanie mena 'Shared' je vyhradené len pre Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Názov" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veľkosť" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Upravené" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 priečinok" - -#: 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:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 @@ -286,45 +279,49 @@ msgstr "Priečinok" msgid "From link" msgstr "Z odkazu" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Zmazané súbory" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nemáte oprávnenie na zápis." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Žiadny súbor. Nahrajte niečo!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Sťahovanie" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Zrušiť zdieľanie" -#: templates/index.php:107 +#: 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é" -#: 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 "Súbory, ktoré sa snažíte nahrať, presahujú maximálnu veľkosť pre nahratie súborov na tento server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Čakajte, súbory sú prehľadávané." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Práve prezerané" diff --git a/l10n/sk_SK/files_encryption.po b/l10n/sk_SK/files_encryption.po index f32ee0daedd6a398863beb27054bd1b792979ece..06be789dd2e7215e2eea1d88cea6bc98761a8844 100644 --- a/l10n/sk_SK/files_encryption.po +++ b/l10n/sk_SK/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sk_SK/files_sharing.po b/l10n/sk_SK/files_sharing.po index f48e3f693e9b78367f0ae1c4d4da9102981095b6..24320a2a13ccb94ed6fdb00719a787ed16855b77 100644 --- a/l10n/sk_SK/files_sharing.po +++ b/l10n/sk_SK/files_sharing.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 19:30+0000\n" +"Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,7 +20,7 @@ msgstr "" #: templates/authenticate.php:4 msgid "The password is wrong. Try again." -msgstr "" +msgstr "Heslo je chybné. Skúste to znova." #: templates/authenticate.php:7 msgid "Password" @@ -29,28 +30,52 @@ msgstr "Heslo" msgid "Submit" msgstr "Odoslať" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "To je nepríjemné, ale tento odkaz už nie je funkčný." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Možné dôvody:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "položka bola presunutá" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "linke vypršala platnosť" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "zdieľanie je zakázané" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "Pre viac informácií kontaktujte osobu, ktorá vám poslala tento odkaz." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s zdieľa s vami priečinok %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s zdieľa s vami súbor %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Sťahovanie" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Odoslať" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Zrušiť odosielanie" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Žiaden náhľad k dispozícii pre" diff --git a/l10n/sk_SK/files_trashbin.po b/l10n/sk_SK/files_trashbin.po index 76e859c6648bbaca812698b861c05ec4191ebe77..31b22df580b50d06a8106053c293455e1a646262 100644 --- a/l10n/sk_SK/files_trashbin.po +++ b/l10n/sk_SK/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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 (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,47 @@ msgstr "Nemožno zmazať %s navždy" msgid "Couldn't restore %s" msgstr "Nemožno obnoviť %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "vykonať obnovu" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Chyba" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "trvalo zmazať súbor" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Zmazať trvalo" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Názov" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Zmazané" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 priečinok" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} priečinkov" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 súbor" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} súborov" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "obnovené" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sk_SK/files_versions.po b/l10n/sk_SK/files_versions.po index 2e4b2d84383153032a2fe704fdada6c6797683cf..afbd44c4156f38a8dac8770d74a713f065d55fbe 100644 --- a/l10n/sk_SK/files_versions.po +++ b/l10n/sk_SK/files_versions.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# mhh , 2013 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-05-24 13:28+0000\n" -"Last-Translator: I Robot \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" "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" @@ -17,41 +18,27 @@ msgstr "" "Language: sk_SK\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Nemožno obnoviť: %s" -#: history.php:40 -msgid "success" -msgstr "úspech" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Súbor %s bol obnovený na verziu %s" - -#: history.php:49 -msgid "failure" -msgstr "chyba" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Súbor %s nemohol byť obnovený na verziu %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Verzie" -#: history.php:69 -msgid "No old versions available" -msgstr "Nie sú dostupné žiadne staršie verzie" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Zlyhalo obnovenie súboru {file} na verziu {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Nevybrali ste cestu" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Viac verzií..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Verzie" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Žiadne ďalšie verzie nie sú dostupné" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Obnovte súbor do predošlej verzie kliknutím na tlačítko obnoviť" +#: js/versions.js:149 +msgid "Restore" +msgstr "Obnoviť" diff --git a/l10n/sk_SK/lib.po b/l10n/sk_SK/lib.po index 804de8e425ca85f016b7aa97669943e366041050..b403893d8bb45a95b15f226290b8acadc4c17866 100644 --- a/l10n/sk_SK/lib.po +++ b/l10n/sk_SK/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-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 (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -35,26 +35,22 @@ 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 "" +msgstr "Zlyhala aktualizácia \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webové služby pod Vašou kontrolou" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "nemožno otvoriť \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +72,7 @@ msgstr "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +207,56 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Príčina:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/sk_SK/settings.po b/l10n/sk_SK/settings.po index ca8f6decd867088233102b6a7040c540fc42c1f0..2d3c21ee9a049a2636f5946d0d95a37e87a03801 100644 --- a/l10n/sk_SK/settings.po +++ b/l10n/sk_SK/settings.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -170,175 +170,173 @@ msgstr "Musíte zadať platné heslo" msgid "__language_name__" msgstr "Slovensky" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Bezpečnostné varovanie" -#: templates/admin.php:20 +#: 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 "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne Vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Nastavenia oznámení" -#: templates/admin.php:34 +#: 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 "Váš webový server nie je správne nastavený na synchronizáciu, pretože rozhranie WebDAV je poškodené." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Prosím skontrolujte inštalačnú príručku." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Chýba modul 'fileinfo'" -#: templates/admin.php:49 +#: 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 "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Lokalizácia nefunguje" -#: templates/admin.php:65 +#: 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 "Tento server ownCloud nemôže nastaviť národné prostredie systému na %s. To znamená, že by mohli byť problémy s niektorými znakmi v názvoch súborov. Veľmi odporúčame nainštalovať požadované balíky na podporu %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Pripojenie na internet nefunguje" -#: templates/admin.php:80 +#: 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 "Tento server ownCloud nemá funkčné pripojenie k internetu. To znamená, že niektoré z funkcií, ako je pripojenie externého úložiska, oznámenia o aktualizáciách či inštalácia aplikácií tretích strán nefungujú. Prístup k súborom zo vzdialených miest a odosielanie oznamovacích e-mailov tiež nemusí fungovať. Odporúčame pripojiť tento server k internetu, ak chcete využívať všetky vlastnosti ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Vykonať jednu úlohu s každým načítaní stránky" -#: templates/admin.php:113 +#: 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 "cron.php je registrovaná u služby webcron. Zavolá cron.php stránku v koreňovom priečinku owncloud raz za minútu cez protokol HTTP." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Používať systémovú službu cron. Zavolať cron.php v priečinku owncloud cez systémovú úlohu raz za minútu" +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Zdieľanie" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Povoliť API zdieľania" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Povoliť aplikáciám používať API na zdieľanie" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Povoliť odkazy" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Povoliť používateľom zdieľať položky pre verejnosť cez odkazy" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Povoliť zdieľanie ďalej" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Povoliť používateľom ďalej zdieľať zdieľané položky" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Povoliť používateľom zdieľať s kýmkoľvek" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Povoliť používateľom zdieľať len s používateľmi v ich skupinách" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Zabezpečenie" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Vynútiť HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Vynúti pripojovanie klientov ownCloud cez šifrované pripojenie." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Pripojte sa k tejto inštancii ownCloud cez HTTPS pre povolenie alebo zakázanie vynútenia SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Záznam" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Úroveň záznamu" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Viac" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Menej" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Verzia" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Použili ste %s z %s dostupných " -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Heslo" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Heslo bolo zmenené" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Nie je možné zmeniť vaše heslo" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Aktuálne heslo" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nové heslo" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Zmeniť heslo" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Zobrazované meno" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Vaša emailová adresa" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Vyplňte emailovú adresu pre aktivovanie obnovy hesla" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Jazyk" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Pomôcť s prekladom" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -89,9 +89,9 @@ msgstr "Potvrdiť vymazanie" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Upozornenie: Aplikácie user_ldap a user_webdavauth nie sú kompatibilné. Môže nastávať neočakávané správanie. Požiadajte administrátora systému aby jednu z nich zakázal." +msgstr "Upozornenie: Aplikácie user_ldap a user_webdavauth sú navzájom nekompatibilné. Môžete zaznamenať neočakávané správanie. Požiadajte prosím vášho systémového administrátora pre zakázanie jedného z nich." #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "Zakázať hlavný server" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Pri zapnutí sa ownCloud pripojí len k záložnému serveru." +msgid "Only connect to the replica server." +msgstr "Pripojiť sa len k záložnému serveru." #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Vypnúť overovanie SSL certifikátu." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Ak pripojenie pracuje len s touto možnosťou, tak importujte SSL certifikát LDAP serveru do vášho servera ownCloud." +"certificate in your %s server." +msgstr "Ak pripojenie pracuje len s touto možnosťou, tak naimportujte SSL certifikát LDAP servera do vášho %s servera." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "Pole pre zobrazenia mena používateľa" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribút LDAP použitý na vygenerovanie mena používateľa ownCloud " +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "Atribút LDAP použitý na vygenerovanie zobrazovaného mena používateľa. " #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Pole pre zobrazenie mena skupiny" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribút LDAP použitý na vygenerovanie mena skupiny ownCloud " +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "Atribút LDAP použitý na vygenerovanie zobrazovaného mena skupiny." #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách bude číslo byť pridané / odobrané. Interné používateľské meno sa používa na identifikáciu používateľa interne. Je to tiež predvolený názov používateľského domovského priečinka v ownCloud. To je tiež port vzdialeného URL, napríklad pre všetky služby * DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo mapovaných (pridaných) LDAP používateľov." +"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." +msgstr "V predvolenom nastavení bude interné používateľské meno vytvorené z UUID atribútu. Zabezpečí sa to, že používateľské meno bude jedinečné a znaky nemusia byť prevedené. Interné meno má obmedzenie, iba tieto znaky sú povolené: [a-zA-Z0-9_ @ -.]. Ostatné znaky sú nahradené ich ASCII alebo jednoducho vynechané. Pri kolíziách používateľských mien bude číslo pridané / odobrané. Interné používateľské meno sa používa na internú identifikáciu používateľa. Je tiež predvoleným názvom používateľského domovského priečinka v ownCloud. Je tiež súčasťou URL pre vzdialený prístup, napríklad pre všetky služby * DAV. S týmto nastavením sa dá prepísať predvolené správanie. Pre dosiahnutie podobného správania sa ako pred verziou ownCloud 5 zadajte atribút zobrazenia používateľského mena v tomto poli. Ponechajte prázdne pre predvolené správanie. Zmeny budú mať vplyv iba na novo namapovaných (pridaných) LDAP používateľov." #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "Prepísať UUID detekciu" #: 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 " +"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 behaviour. " +" 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 "V predvolenom nastavení je UUID atribút detekovaný automaticky. UUID atribút je použitý na jedinečnú identifikáciu používateľov a skupín z LDAP. Naviac je na základe UUID vytvorené tiež interné použivateľské meno, ak nie je nastavené inak. Môžete predvolené nastavenie prepísať a použiť atribút ktorý si sami zvolíte. Musíte sa ale ubezpečiť, že atribút ktorý vyberiete bude uvedený pri použivateľoch, aj pri skupinách a je jedinečný. Ponechajte prázdne pre predvolené správanie. Zmena bude mať vplyv len na novo namapovaných (pridaných) používateľov a skupiny z LDAP." #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "Mapovanie názvov LDAP používateľských mien" #: 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 "" +"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." +msgstr "Použivateľské mená sa používajú pre uchovávanie a priraďovanie (meta)dát. Pre správnu identifikáciu a rozpoznanie používateľov bude mať každý používateľ z LDAP interné používateľské meno. To je nevyhnutné pre namapovanie používateľských mien na používateľov v LDAP. Vytvorené používateľské meno je namapované na UUID používateľa v LDAP. Naviac je cachovaná DN pre obmedzenie interakcie s LDAP, ale nie je používaná pre identifikáciu. Ak sa DN zmení, bude to správne rozpoznané. Interné používateľské meno sa používa všade. Vyčistenie namapování vymaže zvyšky všade. Vyčistenie naviac nie je špecifické, bude mať vplyv na všetky LDAP konfigurácie! Nikdy nečistite namapovanie v produkčnom prostredí, len v testovacej alebo experimentálnej fáze." #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/sk_SK/user_webdavauth.po b/l10n/sk_SK/user_webdavauth.po index ae90bb92d46978e69d8399ee96d4a3fd06f8efde..b3e32008582d954a43be019d53b0400d58e4778e 100644 --- a/l10n/sk_SK/user_webdavauth.po +++ b/l10n/sk_SK/user_webdavauth.po @@ -4,13 +4,13 @@ # # Translators: # mhh , 2013 -# martin , 2012 +# martin, 2012 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-21 08:49+0200\n" -"PO-Revision-Date: 2013-06-20 17:30+0000\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-07 19:50+0000\n" "Last-Translator: mhh \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/owncloud/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV overenie" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "Adresa: " #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud odošle používateľské údaje na zadanú URL. Plugin skontroluje odpoveď a považuje návratovú hodnotu HTTP 401 a 403 za neplatné údaje a všetky ostatné hodnoty ako platné prihlasovacie údaje." +msgstr "Používateľské prihlasovacie údaje budú odoslané na túto adresu. Tento plugin skontroluje odpoveď servera a interpretuje návratový kód HTTP 401 a 403 ako neplatné prihlasovacie údaje a akýkoľvek iný ako platné prihlasovacie údaje." diff --git a/l10n/sl/core.po b/l10n/sl/core.po index b45b9c4b25952192570dd028bdfe85ff6534db88..f659c22faf9ae36b6d33ab86b9a643e5a7947893 100644 --- a/l10n/sl/core.po +++ b/l10n/sl/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -139,59 +139,67 @@ msgstr "november" msgid "December" msgstr "december" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Nastavitve" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "pred nekaj sekundami" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "pred minuto" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "pred {minutes} minutami" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "Pred 1 uro" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "pred {hours} urami" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: js/js.js:818 msgid "today" msgstr "danes" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "včeraj" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "zadnji mesec" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "mesecev nazaj" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "lansko leto" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "let nazaj" @@ -227,8 +235,8 @@ msgstr "Vrsta predmeta ni podana." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Napaka" @@ -248,123 +256,123 @@ msgstr "V souporabi" msgid "Share" msgstr "Souporaba" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Napaka med souporabo" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Napaka med odstranjevanjem souporabe" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Napaka med spreminjanjem dovoljenj" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "V souporabi z vami in skupino {group}. Lastnik je {owner}." -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "V souporabi z vami. Lastnik je {owner}." -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Omogoči souporabo z" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Omogoči souporabo preko povezave" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Zaščiti z geslom" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Geslo" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Dovoli javne prenose na strežnik" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Posreduj povezavo po elektronski pošti" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Pošlji" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Nastavi datum preteka" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Datum preteka" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Souporaba preko elektronske pošte:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Ni najdenih uporabnikov" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Nadaljnja souporaba ni dovoljena" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "V souporabi v {item} z {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Prekliči souporabo" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "lahko ureja" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "nadzor dostopa" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "ustvari" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "posodobi" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "izbriši" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "določi souporabo" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Zaščiteno z geslom" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Napaka brisanja datuma preteka" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Napaka med nastavljanjem datuma preteka" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Pošiljanje ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Elektronska pošta je poslana" @@ -379,9 +387,10 @@ msgstr "Posodobitev ni uspela. Pošljite poročilo o napaki na sistemu Ali sta elektronski naslov oziroma uporabnišk msgid "You will receive a link to reset your password via Email." msgstr "Na elektronski naslov boste prejeli povezavo za ponovno nastavitev gesla." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Uporabniško ime" @@ -463,11 +472,11 @@ msgstr "Pomoč" msgid "Access forbidden" msgstr "Dostop je prepovedan" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Oblaka ni mogoče najti" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +505,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Uporabljena različica PHP je ranljiva za napad NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Priporočeno je posodobiti namestitev PHP in varno uporabljati oblak ownCloud" +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Za varno uporabo storitve %s posodobite PHP" #: templates/installation.php:32 msgid "" @@ -517,68 +527,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Podatkovna mapa in datoteke so najverjetneje javno dostopni preko interneta, saj datoteka .htaccess ni ustrezno nastavljena." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Navodila, kako pravilno namestiti strežnik, so na straneh dokumentacije." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Za navodila, kako pravilno nastaviti vaš strežnik, kliknite na povezavo do dokumentacije." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Ustvari skrbniški račun" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Napredne možnosti" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Podatkovna mapa" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Nastavi podatkovno zbirko" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "bo uporabljen" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Uporabnik podatkovne zbirke" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Geslo podatkovne zbirke" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Ime podatkovne zbirke" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Razpredelnica podatkovne zbirke" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Gostitelj podatkovne zbirke" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Končaj namestitev" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s je na voljo. Pridobite več podrobnosti za posodobitev." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Samodejno prijavljanje je zavrnjeno!" @@ -609,7 +623,7 @@ msgstr "Prijava" msgid "Alternative Logins" msgstr "Druge prijavne možnosti" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Souporaba" msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Izbriši" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Preimenuj" @@ -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:457 -msgid "1 file uploading" -msgstr "Pošiljanje 1 datoteke" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "poteka pošiljanje datotek" @@ -201,33 +197,33 @@ msgstr "Postopek priprave datoteke za prejem je lahko dolgotrajen, če je datote msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Neveljavno ime mape. Uporaba oznake \"Souporaba\" je zadržan za sistem ownCloud." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Velikost" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Spremenjeno" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mapa" - -#: 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:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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 @@ -286,45 +282,49 @@ msgstr "Mapa" msgid "From link" msgstr "Iz povezave" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Izbrisane datoteke" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Za to mesto ni ustreznih dovoljenj za pisanje." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Tukaj še ni ničesar. Najprej je treba kakšno datoteko poslati v oblak!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Prejmi" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Prekliči souporabo" -#: templates/index.php:107 +#: 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" -#: 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 "Datoteke, ki jih želite poslati, presegajo največjo dovoljeno velikost na strežniku." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Poteka preučevanje datotek, počakajte ..." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Trenutno poteka preučevanje" diff --git a/l10n/sl/files_encryption.po b/l10n/sl/files_encryption.po index 0386afaca31bdbcddc8f74a682b7f4b56c5531dd..4ad47a20489060f91f93fba4a4f26914c14eaf54 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-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+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" @@ -64,14 +64,18 @@ msgstr "Vaš zasebni ključ ni veljaven. Morda je bilo vaše geslo spremenjeno z #: hooks/hooks.php:44 msgid "Missing requirements." -msgstr "" +msgstr "Manjkajoče zahteve" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "" +"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 "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 "Naslednji uporabniki še nimajo nastavljenega šifriranja:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sl/files_sharing.po b/l10n/sl/files_sharing.po index 46312bd3d27236b9f790990048f1fe2cb3d24eb0..47e1076f579273344d87a9b8ffb301562a590dda 100644 --- a/l10n/sl/files_sharing.po +++ b/l10n/sl/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Geslo" msgid "Submit" msgstr "Pošlji" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "Oseba %s je določila mapo %s za souporabo" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "Oseba %s je določila datoteko %s za souporabo" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Prejmi" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Pošlji" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Prekliči pošiljanje" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Predogled ni na voljo za" diff --git a/l10n/sl/files_trashbin.po b/l10n/sl/files_trashbin.po index e3a0aa4a536b5184e53db95e10efc8f8d2448855..866885ca0cb56b956a6c6c81a868b6861fda098e 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,49 @@ msgstr "Datoteke %s ni mogoče dokončno izbrisati." msgid "Couldn't restore %s" msgstr "Ni mogoče obnoviti %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "izvedi opravilo obnavljanja" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Napaka" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "dokončno izbriši datoteko" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Izbriši dokončno" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Izbrisano" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mapa" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} map" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 datoteka" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} datotek" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" + +#: 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" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sl/files_versions.po b/l10n/sl/files_versions.po index 3ca64dce8f9317be284834e159483d9ddc1b36f1..13f114ac55016b1bebeda9ef9076c05a4b5e4f54 100644 --- a/l10n/sl/files_versions.po +++ b/l10n/sl/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Ni mogoče povrniti: %s" -#: history.php:40 -msgid "success" -msgstr "uspešno" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Datoteka %s je povrnjena na različico %s." - -#: history.php:49 -msgid "failure" -msgstr "spodletelo" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Datoteke %s ni mogoče povrniti na različico %s." +#: js/versions.js:7 +msgid "Versions" +msgstr "Različice" -#: history.php:69 -msgid "No old versions available" -msgstr "Ni starejših različic." +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Ni določene poti" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Različice" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Povrni datoteko na predhodno različico s klikom na gumb za povrnitev." +#: js/versions.js:149 +msgid "Restore" +msgstr "Obnovi" diff --git a/l10n/sl/lib.po b/l10n/sl/lib.po index 1c5ae53da77251e827a5826e7eeeea7c32085f8a..fc3455dabda102f5e28c62ba693d86ba3b9ddc28 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-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: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "spletne storitve pod vašim nadzorom" @@ -211,54 +207,58 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sl/settings.po b/l10n/sl/settings.po index 3ce2bad0421959747ba8b889cb61bbb2ec2967de..2733327ae900b2f30653ac874ed8be25c29f5ad5 100644 --- a/l10n/sl/settings.po +++ b/l10n/sl/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Slovenian (http://www.transifex.com/projects/p/owncloud/language/sl/)\n" "MIME-Version: 1.0\n" @@ -171,175 +171,173 @@ msgstr "Navedeno mora biti veljavno geslo" msgid "__language_name__" msgstr "Slovenščina" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Varnostno opozorilo" -#: templates/admin.php:20 +#: 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 "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud, namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podrejeno mapo korenske mape spletnega strežnika." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Opozorilo nastavitve" -#: templates/admin.php:34 +#: 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 "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Preverite navodila namestitve." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Manjka modul 'fileinfo'." -#: templates/admin.php:49 +#: 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 "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Jezikovne prilagoditve ne delujejo." -#: templates/admin.php:65 +#: 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 "Na strežniku ownCloud ni mogoče nastaviti jezikovnih določil na jezik %s. Najverjetneje so težave s posebnimi znaki v imenih datotek. Priporočljivo je namestiti zahtevane pakete za podporo jeziku %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Internetna povezava ne deluje." -#: templates/admin.php:80 +#: 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 "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Periodično opravilo" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Izvedi eno nalogo z vsako naloženo stranjo." -#: templates/admin.php:113 +#: 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 "Datoteka cron.php je vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Souporaba" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Omogoči API souporabe" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Dovoli programom uporabo vmesnika API souporabe" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Dovoli povezave" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Uporabnikom dovoli souporabo predmetov z javnimi povezavami" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Dovoli nadaljnjo souporabo" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Uporabnikom dovoli nadaljnjo souporabo predmetov" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Uporabnikom dovoli souporabo s komerkoli" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Varnost" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Zahtevaj uporabo HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Zahtevaj šifrirano povezovanje odjemalcev v oblak ownCloud" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Prijava mora biti vzpostavljena z uporabo protokola HTTPS za omogočanje šifriranja SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Dnevnik" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Raven beleženja" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Več" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Manj" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Različica" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Uporabljenega je %s od razpoložljivih %s prostora." -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Geslo" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Geslo je spremenjeno" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Gesla ni mogoče spremeniti." -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Trenutno geslo" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Novo geslo" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Spremeni geslo" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Prikazano ime" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Elektronski naslov" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Osebni elektronski naslov" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Vpišite osebni elektronski naslov in s tem omogočite obnovitev gesla" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Jezik" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Sodelujte pri prevajanju" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "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" @@ -89,9 +89,9 @@ msgstr "Potrdi brisanje" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Opozorilo: možnosti user_ldap in user_webdavauth nista združljivi. Pri uporabi je mogoče nepričakovano obnašanje sistema. Eno izmed možnosti je priporočeno onemgočiti." +msgstr "" #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "Onemogoči glavni strežnik" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Ob priklopu bo strežnik ownCloud povezan le s kopijo (repliko) strežnika." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "Onemogoči določanje veljavnosti potrdila SSL." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Kadar deluje povezava le s to možnostjo, uvozite potrdilo SSL iz strežnika LDAP na vaš strežnik ownCloud." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "Polje za uporabnikovo prikazano ime" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Atribut LDAP, uporabljen pri ustvarjanju uporabniških imen ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "Polje za prikazano ime skupine" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Atribut LDAP, uporabljen pri ustvarjanju imen skupin ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "Po privzetih nastavitvah bo uporabniško ime nastavljeno na podlagi atributa UUID. Ta zagotovi, da je uporabniško ime unikatno in, da znakov ni potrebno pretvarjati. Interno uporabniško ime ima omejitev v uporabi znakov, in sicer so dovoljeni le znaki [ a-zA-Z0-9_.@- ]. Ostali znaki so nadomeščeni z njihovimi ustreznicami v ASCII ali so enostavno prezrti. Pri prekrivanju znakov bo dodana številka. Interno uporabniško ime je v uporabi za interno identifikacijo uporabnika. Je tudi privzeto ime za uporabnikovo domačo mapo v ownCloudu. Predstavlja tudi vrata za oddaljene internetne naslove, na primer za vse storitve *DAV. S to nastavitvijo se privzete nastavitve ne bodo upoštevale. Če boste želeli doseči isto obnašanje kot pri različicah ownClouda 5, vnesite atribut za Ime za prikaz v spodnje polje. Če boste polje pustili prazno, bo uporabljena privzeta vrednost. Spremembe bodo vplivale samo na novo dodane LDAP-uporabnike." +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "Prezri zaznavo UUID" #: 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 " +"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 behaviour. " +" 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 "Po privzetih nastavitvah ownCloud sam zazna atribute UUID. Atribut UUID je uporabljen za identifikacijo LDAP-uporabnikov in skupin. Na podlagi atributa UUID se ustvari tudi interno uporabniško ime, če ne navedete drugačnih nastavitev sami. Nastavitev lahko povozite in izberete nastavitev po vaši izbiri. Potrebno je zagotoviti, da je izbran atribut lahko uporabljen tako za kreiranje uporabnikov kot skupin in je unikaten. Pustite praznega, če želite, da sistem uporabi privzete nastavitve. Spremembe bodo uporabljene šele pri novo preslikanih ali dodanih LDAP-uporabnikih in skupinah." +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "Preslikava uporabniško ime - LDAP-uporabnik" #: 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 "ownCloud uporablja uporabniška imena za shranjevanje in določanje metapodatkov. Za natančno identifikacijo in prepoznavo uporabnikov, ima vsak LDAP-uporabnik svoje interno uporabniško ime. To zahteva preslikavo iz uporabniškega imena v ownCloudu v LDAP-uporabnika. Ustvarjeno uporabniško ime je preslikano v UUID LDAP-uporabnika. Hkrati je v predpomnilnik shranjen DN uporabnika, zato da se zmanjšajo povezave z LDAP-om, ni pa uporabljen za identifikacijo uporabnikov. Če se DN spremeni, bo ownCloud sam našel te spremembe. Interno ime v ownCloudu je uporabljeno v celotnem sistemu. Brisanje preslikav bo pustilo posledice povsod. Brisanje preslikav je zato problematično za konfiguracijo, vpliva na celotno LDAP-konfiguracijo. Nikoli ne brišite preslikav na produkcijskem okolju. Preslikave brišite samo v fazi preizkušanja storitve." +"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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/sl/user_webdavauth.po b/l10n/sl/user_webdavauth.po index 3f1ee543539d118e5e3a969bd866b3fdb719c828..1906a62c581315601c62bd6f2a9e6c57d89e8bf8 100644 --- a/l10n/sl/user_webdavauth.po +++ b/l10n/sl/user_webdavauth.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-29 02:03+0200\n" -"PO-Revision-Date: 2013-06-28 17:00+0000\n" -"Last-Translator: barbarak \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" "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" @@ -25,12 +25,12 @@ msgid "WebDAV Authentication" msgstr "Overitev WebDAV" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "Sistem ownCloud bo poslal uporabniška poverila na navedeni naslov URL. Ta vstavek preveri odziv in tolmači kode stanja HTTP 401 in HTTP 403 kot spodletel odgovor in vse ostale odzive kot veljavna poverila." +msgstr "" diff --git a/l10n/sq/core.po b/l10n/sq/core.po index e9c0656944192fe9c07f5a289130bdbec882c5ae..0c6e10ceee2d4cf01ebd652776450424396055d5 100644 --- a/l10n/sq/core.po +++ b/l10n/sq/core.po @@ -4,12 +4,13 @@ # # Translators: # Odeen , 2013 +# Odeen , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -138,59 +139,59 @@ msgstr "Nëntor" msgid "December" msgstr "Dhjetor" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Parametra" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekonda më parë" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minutë më parë" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} minuta më parë" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 orë më parë" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} orë më parë" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "sot" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "dje" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "muajin e shkuar" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "muaj më parë" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "vitin e shkuar" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "vite më parë" @@ -204,7 +205,7 @@ msgstr "Anulo" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "Veprim i gabuar gjatë ngarkimit të modelit të zgjedhësit të skedarëve" #: js/oc-dialogs.js:164 msgid "Yes" @@ -226,8 +227,8 @@ msgstr "Nuk është specifikuar tipi i objektit." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Veprim i gabuar" @@ -247,123 +248,123 @@ msgstr "Ndarë" msgid "Share" msgstr "Nda" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Veprim i gabuar gjatë ndarjes" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Veprim i gabuar gjatë heqjes së ndarjes" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Veprim i gabuar gjatë ndryshimit të lejeve" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Ndarë me ju dhe me grupin {group} nga {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Ndarë me ju nga {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Nda me" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Nda me lidhje" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Mbro me kod" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Kodi" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "Lejo Ngarkimin Publik" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Dërgo email me lidhjen" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Dërgo" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Cakto datën e përfundimit" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Data e përfundimit" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Nda me email:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Nuk u gjet asnjë person" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Rindarja nuk lejohet" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Ndarë në {item} me {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Hiq ndarjen" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "mund të ndryshosh" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "kontrollimi i hyrjeve" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "krijo" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "azhurno" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "elimino" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "nda" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Mbrojtur me kod" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Veprim i gabuar gjatë heqjes së datës së përfundimit" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Veprim i gabuar gjatë caktimit të datës së përfundimit" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Duke dërguar..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email-i u dërgua" @@ -378,9 +379,10 @@ msgstr "Azhurnimi dështoi. Ju lutemi njoftoni për këtë problem A u siguruat që email-i/përdoruesi juaj ishte i msgid "You will receive a link to reset your password via Email." msgstr "Do t'iu vijë një email që përmban një lidhje për ta rivendosur kodin." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Përdoruesi" @@ -416,7 +418,7 @@ msgstr "" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "Po, dua ta rivendos kodin tani" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -462,11 +464,11 @@ msgstr "Ndihmë" msgid "Access forbidden" msgstr "Ndalohet hyrja" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud-i nuk u gjet" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -475,7 +477,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "Tungjatjeta,\n\nju njoftojmë që %s ka ndarë %s me ju.\nShikojeni: %s\n\nPëshëndetje!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -495,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Versioni juaj i PHP-së është i cënueshëm nga sulmi NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Ju lutem azhurnoni instalimin tuaj të PHP-së që të përdorni ownCloud-in në mënyrë të sigurt." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -516,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Dosja dhe skedarët e të dhënave tuaja mbase janë të arritshme nga interneti sepse skedari .htaccess nuk po punon." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Për më shumë informacion mbi konfigurimin e duhur të serverit tuaj, ju lutem shikoni dokumentacionin." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Krijo një llogari administruesi" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Të përparuara" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Emri i dosjes" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfiguro database-in" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "do të përdoret" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Përdoruesi i database-it" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Kodi i database-it" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Emri i database-it" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Tablespace-i i database-it" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Pozicioni (host) i database-it" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Mbaro setup-in" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Dalje" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Hyrja automatike u refuzua!" @@ -608,7 +615,7 @@ msgstr "Hyrje" msgid "Alternative Logins" msgstr "Hyrje alternative" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -120,11 +120,7 @@ msgstr "Nda" msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Elimino" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Riemërto" @@ -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:457 -msgid "1 file uploading" -msgstr "Po ngarkohet 1 skedar" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "po ngarkoj skedarët" @@ -200,33 +194,29 @@ msgstr "Shkarkimi juaj po përgatitet. Mund të duhet pak kohë nqse skedarët j msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Emri i dosjes është i pavlefshëm. Përdorimi i \"Shared\" është i rezervuar nga Owncloud-i." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Emri" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Dimensioni" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Modifikuar" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dosje" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dosje" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 skedar" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -285,45 +275,49 @@ msgstr "Dosje" msgid "From link" msgstr "Nga lidhja" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Skedarë të eliminuar" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Nuk keni të drejta për të shkruar këtu." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Këtu nuk ka asgjë. Ngarkoni diçka!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Shkarko" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Hiq ndarjen" -#: templates/index.php:107 +#: 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" -#: 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 "Skedarët që doni të ngarkoni tejkalojnë dimensionet maksimale për ngarkimet në këtë server." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Skedarët po analizohen, ju lutemi pritni." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Analizimi aktual" diff --git a/l10n/sq/files_encryption.po b/l10n/sq/files_encryption.po index 1642b96a8247e981a113f830e5ff6d56641bacd3..ccb7cbaa9260d885c49b5bab8daca5668ad14f1d 100644 --- a/l10n/sq/files_encryption.po +++ b/l10n/sq/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sq/files_sharing.po b/l10n/sq/files_sharing.po index 4e79b13e39186096359ea5791b641000d5801e2e..64007bf9f0853c116895f1e9853c27b7cecbe770 100644 --- a/l10n/sq/files_sharing.po +++ b/l10n/sq/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Kodi" msgid "Submit" msgstr "Parashtro" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ndau me ju dosjen %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ndau me ju skedarin %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Shkarko" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Ngarko" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Anulo ngarkimin" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Shikimi paraprak nuk është i mundur për" diff --git a/l10n/sq/files_trashbin.po b/l10n/sq/files_trashbin.po index 517522bc66224d3ca34803589eadd10d8312ae7b..cd243657ba0acb936ab6dd8a53837159075c6f28 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "Nuk munda ta eliminoj përfundimisht %s" msgid "Couldn't restore %s" msgstr "Nuk munda ta rivendos %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "ekzekuto operacionin e rivendosjes" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Veprim i gabuar" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "eliminoje përfundimisht skedarin" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Elimino përfundimisht" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Emri" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Eliminuar" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 dosje" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} dosje" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 skedar" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} skedarë" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sq/files_versions.po b/l10n/sq/files_versions.po index 3c148e4911f7392b54ccc3fdd088bd7c354bba6c..e4c86ec1c7c99bf77455ca92f87bccb5cde4d4e9 100644 --- a/l10n/sq/files_versions.po +++ b/l10n/sq/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +#: js/versions.js:149 +msgid "Restore" +msgstr "Rivendos" diff --git a/l10n/sq/lib.po b/l10n/sq/lib.po index 35759acbd8e5224c96d27e99a94bee5e4e70e48a..7fa5b3bf04e684ac35abc104cc9e1d10489dcaea 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-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: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "shërbime web nën kontrollin tënd" @@ -210,54 +206,50 @@ 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ë" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sq/settings.po b/l10n/sq/settings.po index daec3ad4f8f168f181a48cf64da14e9821007599..3b0ed93302f0b3068937eb50f0b5ef5d9d5398cb 100644 --- a/l10n/sq/settings.po +++ b/l10n/sq/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Paralajmërim sigurie" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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 "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Ju lutemi kontrolloni mirë shoqëruesin e instalimit." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Kodi" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Kodi i ri" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email-i" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/sq/user_webdavauth.po b/l10n/sq/user_webdavauth.po index 953547cd5912da6c7bbcec431cb3aaa0b90f0718..d2c5a9a34ea2ba24daa030f908f2162f8ede1f52 100644 --- a/l10n/sq/user_webdavauth.po +++ b/l10n/sq/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Albanian (http://www.transifex.com/projects/p/owncloud/language/sq/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/sr/core.po b/l10n/sr/core.po index 631902122af6ffd9fda045089db10cc6c0c3833b..8072e39202bf723fd15ecfbb8fc900a40575744b 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "пре 1 минут" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "пре {minutes} минута" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "Пре једног сата" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "Пре {hours} сата (сати)" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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 "пре {days} дана" +#: 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 "Пре {months} месеца (месеци)" +#: 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 "година раније" @@ -225,8 +229,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Грешка" @@ -246,123 +250,123 @@ msgstr "" msgid "Share" msgstr "Дели" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Грешка у дељењу" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Грешка код искључења дељења" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Грешка код промене дозвола" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Дељено са вама и са групом {group}. Поделио {owner}." -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Поделио са вама {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Подели са" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Подели линк" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Заштићено лозинком" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Лозинка" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Пошаљи" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Постави датум истека" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Датум истека" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Подели поштом:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Особе нису пронађене." -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Поновно дељење није дозвољено" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Подељено унутар {item} са {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Укини дељење" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "може да мења" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "права приступа" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "направи" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "ажурирај" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "обриши" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "подели" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Заштићено лозинком" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Грешка код поништавања датума истека" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Грешка код постављања датума истека" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Шаљем..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +405,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Добићете везу за ресетовање лозинке путем е-поште." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Корисничко име" @@ -461,11 +466,11 @@ msgstr "Помоћ" msgid "Access forbidden" msgstr "Забрањен приступ" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Облак није нађен" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +499,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Направи административни налог" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Напредно" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Фацикла података" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "ће бити коришћен" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Корисник базе" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Лозинка базе" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Име базе" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Радни простор базе података" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Домаћин базе" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Заврши подешавање" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Одјава" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Аутоматска пријава је одбијена!" @@ -607,7 +617,7 @@ msgstr "Пријава" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\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 "замењено {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:457 -msgid "1 file uploading" -msgstr "Отпремам 1 датотеку" - -#: 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 "Неисправно име фасцикле. Фасцикла „Shared“ је резервисана за ownCloud." -#: 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 "1 фасцикла" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} фасцикле/и" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 датотека" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 @@ -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/sr/files_encryption.po b/l10n/sr/files_encryption.po index 081f03f53f64a17d98ed3af9873dc7c24474faa5..85eb46828ff2a4e2dfcc343e128aafc18354d304 100644 --- a/l10n/sr/files_encryption.po +++ b/l10n/sr/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sr/files_sharing.po b/l10n/sr/files_sharing.po index 8ecabd78e62ab2a0e10a0e16ac6c19c1b98f0de3..5fe336ebf12440eb2dd2eb9690b93a9884d13719 100644 --- a/l10n/sr/files_sharing.po +++ b/l10n/sr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Лозинка" msgid "Submit" msgstr "Пошаљи" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Преузми" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Отпреми" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Прекини отпремање" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sr/files_trashbin.po b/l10n/sr/files_trashbin.po index b46bc3e6bee949eeb8859f0180ba9d3f2dff1700..9fed460b7d4ccd1b78cb3b07cf3aea08cc1118de 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,47 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "врати у претходно стање" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Грешка" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Обриши за стално" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Име" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Обрисано" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 фасцикла" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} фасцикле/и" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 датотека" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} датотеке/а" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sr/files_versions.po b/l10n/sr/files_versions.po index 74cb70e53d311356956b56f207470bb4905624f6..5f8025ecf56cb82731c07b98b1c07f237219f8b4 100644 --- a/l10n/sr/files_versions.po +++ b/l10n/sr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "" +#: js/versions.js:149 +msgid "Restore" +msgstr "Врати" diff --git a/l10n/sr/lib.po b/l10n/sr/lib.po index bd9dcab7ec78d814adf441dcf2ef9ce14b619b19..28031d756c0a5f3f96273956afa2e63528e82d24 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-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: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\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 "пре 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 "година раније" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/sr/settings.po b/l10n/sr/settings.po index 788737244e79244997f5a4b61419188158408483..d0ab5f6c7836af11ae6508b7f2dd47ffb5640d34 100644 --- a/l10n/sr/settings.po +++ b/l10n/sr/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "Морате унети исправну лозинку" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Сигурносно упозорење" -#: templates/admin.php:20 +#: 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 "Тренутно су ваши подаци и датотеке доступне са интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Упозорење о подешавању" -#: templates/admin.php:34 +#: 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 "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Погледајте водиче за инсталацију." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Недостаје модул „fileinfo“" -#: templates/admin.php:49 +#: 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 "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Локализација не ради" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Веза с интернетом не ради" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Изврши један задатак са сваком учитаном страницом" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Дељење" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Омогући API Share" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Дозвољава апликацијама да користе API Share" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Дозволи везе" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Дозволи корисницима да деле ставке с другима путем веза" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Дозволи поновно дељење" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Дозволи корисницима да поновно деле ставке с другима" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Дозволи корисницима да деле са било ким" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Дозволи корисницима да деле само са корисницима у њиховим групама" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Безбедност" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Наметни HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Бележење" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Ниво бележења" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Више" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Мање" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Верзија" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Искористили сте %s од дозвољених %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Лозинка" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Лозинка је промењена" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Не могу да изменим вашу лозинку" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Тренутна лозинка" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Нова лозинка" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Измени лозинку" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Име за приказ" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Е-пошта" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Ваша адреса е-поште" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Ун" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Језик" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr " Помозите у превођењу" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Искључите потврду SSL сертификата." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Увезите SSL сертификат LDAP сервера у свој ownCloud ако веза ради само са овом опцијом." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Име приказа корисника" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP атрибут за стварање имена ownCloud-а корисника." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Име приказа групе" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP атрибут за стварање имена ownCloud-а групе." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/sr/user_webdavauth.po b/l10n/sr/user_webdavauth.po index bff29cbe68597d5174b290f677efa31ff47b7e07..0e8a056c79f7c175c1df7e90bdd0a81e920b404f 100644 --- a/l10n/sr/user_webdavauth.po +++ b/l10n/sr/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Serbian (http://www.transifex.com/projects/p/owncloud/language/sr/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV провера идентитета" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud ће послати акредитиве корисника на ову адресу. Овај прикључак проверава одговор и тумачи HTTP статусне кодове 401 и 403 као неисправне акредитиве, а све остале одговоре као исправне." +msgstr "" diff --git a/l10n/sr@latin/core.po b/l10n/sr@latin/core.po index 0614584ae7f7c0fd02c694689cac31c7460f9e99..507913d3bfb7be4ce319732bc74407f69b48e99b 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:715 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes 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:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: 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 "" @@ -225,8 +229,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,123 +250,123 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Lozinka" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +405,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Dobićete vezu za resetovanje lozinke putem e-pošte." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Korisničko ime" @@ -461,11 +466,11 @@ msgstr "Pomoć" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Oblak nije nađen" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +499,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Napravi administrativni nalog" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Napredno" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Facikla podataka" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Podešavanje baze" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "će biti korišćen" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Korisnik baze" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Lozinka baze" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Ime baze" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Domaćin baze" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Završi podešavanje" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Odjava" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +617,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\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 "Obriši" - -#: 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 "Ime" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Veličina" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 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 @@ -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 "Ovde nema ničeg. Pošaljite nešto!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Preuzmi" -#: 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 "Obriši" + +#: templates/index.php:105 msgid "Upload too large" msgstr "Pošiljka je prevelika" -#: 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 "Fajlovi koje želite da pošaljete prevazilaze ograničenje maksimalne veličine pošiljke na ovom serveru." -#: 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/sr@latin/files_encryption.po b/l10n/sr@latin/files_encryption.po index a85e29f4eb3aafa96e302d293334f9e7140eede4..2f15da5caaee7abe466b170289cc7d98fd92177f 100644 --- a/l10n/sr@latin/files_encryption.po +++ b/l10n/sr@latin/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sr@latin/files_sharing.po b/l10n/sr@latin/files_sharing.po index e0cc5d36714d37a3a4d9ef7c46c92466a1de4da0..0b6b7c8042181731bc5c64980a87ba2e9b5c5701 100644 --- a/l10n/sr@latin/files_sharing.po +++ b/l10n/sr@latin/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Lozinka" msgid "Submit" msgstr "Pošalji" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Preuzmi" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Pošalji" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sr@latin/files_trashbin.po b/l10n/sr@latin/files_trashbin.po index 14f576e80e69eb9c1a0a0ff5014938c5e7a52fab..f1524d3b935fdb17169d7f30bb0262913f51ea9a 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-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,46 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Ime" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" msgstr "" #: templates/index.php:9 diff --git a/l10n/sr@latin/files_versions.po b/l10n/sr@latin/files_versions.po index ccd4cfed296b5484159016335baa30c0d5f068e1..7eee4964e9a90b58707fe5676afad87d425c272e 100644 --- a/l10n/sr@latin/files_versions.po +++ b/l10n/sr@latin/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/sr@latin/lib.po b/l10n/sr@latin/lib.po index f2a53ab59e9bd46b64a2c5cc8fb8856bfc850e37..fd83ff452b3ae5181aaa97f02029350948a95fde 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-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: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/sr@latin/settings.po b/l10n/sr@latin/settings.po index 12d38f83348fd00cdaffc09bc9dcb2927a1bcd9d..95200220f7dd440abfcdc896dc8f6151f182813a 100644 --- a/l10n/sr@latin/settings.po +++ b/l10n/sr@latin/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lozinka" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Ne mogu da izmenim vašu lozinku" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Trenutna lozinka" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nova lozinka" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Izmeni lozinku" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-mail" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Jezik" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/sr@latin/user_webdavauth.po b/l10n/sr@latin/user_webdavauth.po index 7c1b403c83b7682bbd897eca981afc84766deb3d..63f3f7465abd0c96b2b035ae1d50dcd1a926c3f3 100644 --- a/l10n/sr@latin/user_webdavauth.po +++ b/l10n/sr@latin/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/owncloud/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/sv/core.po b/l10n/sv/core.po index e709a281d5d36a4c37cc13f7c6aa740aa0499af4..36486c22d65c4e2c5bd2473f38327907a6a8cd22 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -141,59 +141,59 @@ msgstr "November" msgid "December" msgstr "December" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "Inställningar" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "sekunder sedan" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 minut sedan" +#: 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 "{minutes} minuter sedan" +#: 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 "1 timme sedan" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} timmar sedan" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "i dag" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "i går" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "förra månaden" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "månader sedan" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "förra året" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "år sedan" @@ -229,8 +229,8 @@ msgstr "Objekttypen är inte specificerad." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Fel" @@ -250,123 +250,123 @@ msgstr "Delad" msgid "Share" msgstr "Dela" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Fel vid delning" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Fel när delning skulle avslutas" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Fel vid ändring av rättigheter" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Delad med dig och gruppen {group} av {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Delad med dig av {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Delad med" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Delad med länk" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Lösenordsskydda" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Lösenord" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Tillåt publik uppladdning" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "E-posta länk till person" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Skicka" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Sätt utgångsdatum" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Utgångsdatum" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Dela via e-post:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Hittar inga användare" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Dela vidare är inte tillåtet" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Delad i {item} med {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Sluta dela" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "kan redigera" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "åtkomstkontroll" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "skapa" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "uppdatera" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "radera" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "dela" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Lösenordsskyddad" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Fel vid borttagning av utgångsdatum" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Fel vid sättning av utgångsdatum" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Skickar ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "E-post skickat" @@ -381,9 +381,10 @@ msgstr "Uppdateringen misslyckades. Rapportera detta problem till Är du helt säker på att din e-postadress/an msgid "You will receive a link to reset your password via Email." msgstr "Du får en länk att återställa ditt lösenord via e-post." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Användarnamn" @@ -465,11 +466,11 @@ msgstr "Hjälp" msgid "Access forbidden" msgstr "Åtkomst förbjuden" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Hittade inget moln" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -498,8 +499,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Din version av PHP är sårbar för NULL byte attack (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Uppdatera din PHP-installation för att använda ownCloud säkert." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "Var god uppdatera din PHP-installation för att använda %s säkert." #: templates/installation.php:32 msgid "" @@ -519,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Din datakatalog och filer är förmodligen tillgängliga från Internet, eftersom .htaccess-filen inte fungerar." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "För information hur man korrekt konfigurera servern, var god se documentation." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "För information hur du korrekt konfigurerar din servern, se ownCloud dokumentationen." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Skapa ett administratörskonto" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Avancerad" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Datamapp" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Konfigurera databasen" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "kommer att användas" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Databasanvändare" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Lösenord till databasen" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Databasnamn" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Databas tabellutrymme" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Databasserver" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Avsluta installation" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s är tillgänglig. Få mer information om hur du går tillväga för att uppdatera." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Logga ut" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Automatisk inloggning inte tillåten!" @@ -611,7 +617,7 @@ msgstr "Logga in" msgid "Alternative Logins" msgstr "Alternativa inloggningar" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -124,11 +124,7 @@ msgstr "Dela" msgid "Delete permanently" msgstr "Radera permanent" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Radera" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Byt namn" @@ -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:457 -msgid "1 file uploading" -msgstr "1 filuppladdning" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "filer laddas upp" @@ -204,33 +198,29 @@ msgstr "Din nedladdning förbereds. Det kan ta tid om det är stora filer." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Ogiltigt mappnamn. Användande av 'Shared' är reserverat av ownCloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Namn" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Storlek" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Ändrad" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 mapp" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} mappar" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 fil" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -289,45 +279,49 @@ msgstr "Mapp" msgid "From link" msgstr "Från länk" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Raderade filer" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Du saknar skrivbehörighet här." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Ingenting här. Ladda upp något!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Ladda ner" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Sluta dela" -#: templates/index.php:107 +#: 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" -#: 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 "Filerna du försöker ladda upp överstiger den maximala storleken för filöverföringar på servern." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Filer skannas, var god vänta" -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Aktuell skanning" diff --git a/l10n/sv/files_encryption.po b/l10n/sv/files_encryption.po index cfb13426d405a643b27ac84b7ca290911305c65f..53394af770a14c1f3b7f5ba9f259b4cdfa4904a9 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-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 14:20+0000\n" -"Last-Translator: Stefan Gagner \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" @@ -71,10 +71,14 @@ msgstr "Krav som saknas" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." -msgstr "Kontrollera att PHP 5.3.3 eller senare är installerad och att tillägget OpenSSL PHP är aktiverad och rätt inställd. Kryperingsappen är därför tillsvidare inaktiverad." +"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 "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:" +msgstr "Följande användare har inte aktiverat kryptering:" #: js/settings-admin.js:11 msgid "Saving..." diff --git a/l10n/sv/files_sharing.po b/l10n/sv/files_sharing.po index 85deb24c85978d519ec5785771b888c957590847..95e8da89b115a91b90e9f1d6f2a169d4582263ef 100644 --- a/l10n/sv/files_sharing.po +++ b/l10n/sv/files_sharing.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Magnus Höglund , 2013 # Stefan Gagner , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Stefan Gagner \n" +"POT-Creation-Date: 2013-08-07 08:59-0400\n" +"PO-Revision-Date: 2013-08-07 12:22+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" @@ -30,28 +31,52 @@ msgstr "Lösenord" msgid "Submit" msgstr "Skicka" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "Tyvärr, denna länk verkar inte fungera längre." + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "Orsaker kan vara:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "objektet togs bort" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "giltighet för länken har gått ut" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "delning är inaktiverat" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "För mer information, kontakta den person som skickade den här länken." + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s delade mappen %s med dig" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s delade filen %s med dig" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Ladda ner" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Ladda upp" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Avbryt uppladdning" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Ingen förhandsgranskning tillgänglig för" diff --git a/l10n/sv/files_trashbin.po b/l10n/sv/files_trashbin.po index db9ab181d5c8c3d601e6dfc19275cbb2dced2ecc..ac516cb4cb435469eb3432395b50a8344eda5f2a 100644 --- a/l10n/sv/files_trashbin.po +++ b/l10n/sv/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Magnus Höglund , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -27,45 +28,45 @@ msgstr "Kunde inte radera %s permanent" msgid "Couldn't restore %s" msgstr "Kunde inte återställa %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "utför återställning" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Fel" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "radera filen permanent" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Radera permanent" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Namn" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Raderad" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 mapp" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} mappar" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 fil" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} filer" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" + +#: 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 "återställd" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/sv/files_versions.po b/l10n/sv/files_versions.po index ff6e4700fd6e7ad537e92cb506a188e5d6cc31ce..92efc58d66e287e802eb146c9e504a105ff55097 100644 --- a/l10n/sv/files_versions.po +++ b/l10n/sv/files_versions.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# medialabs , 2013 +# medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-08 02:03+0200\n" -"PO-Revision-Date: 2013-06-07 09:20+0000\n" -"Last-Translator: medialabs \n" +"POT-Creation-Date: 2013-07-28 01:56-0400\n" +"PO-Revision-Date: 2013-07-27 22:00+0000\n" +"Last-Translator: medialabs\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" @@ -18,41 +18,27 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Kunde inte återställa: %s" -#: history.php:40 -msgid "success" -msgstr "lyckades" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Filen %s återställdes till version %s" - -#: history.php:49 -msgid "failure" -msgstr "misslyckades" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Filen %s kunde inte återställas till version %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Versioner" -#: history.php:69 -msgid "No old versions available" -msgstr "Inga gamla versioner finns tillgängliga" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "Kunde inte återställa {file} till revision {timestamp}." -#: history.php:74 -msgid "No path specified" -msgstr "Ingen sökväg angiven" +#: js/versions.js:79 +msgid "More versions..." +msgstr "Fler versioner..." -#: js/versions.js:6 -msgid "Versions" -msgstr "Versioner" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "Inga andra versioner tillgängliga" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Återställ en fil till en tidigare version genom att klicka på återställningsknappen" +#: js/versions.js:149 +msgid "Restore" +msgstr "Återskapa" diff --git a/l10n/sv/lib.po b/l10n/sv/lib.po index 4c06773ff196da2ebbc4ed96bd37177666c3c51b..1f5f24739bf6b891b3335579d2510500d5333f66 100644 --- a/l10n/sv/lib.po +++ b/l10n/sv/lib.po @@ -4,12 +4,13 @@ # # Translators: # medialabs, 2013 +# medialabs, 2013 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: Swedish (http://www.transifex.com/projects/p/owncloud/language/sv/)\n" "MIME-Version: 1.0\n" @@ -35,26 +36,22 @@ 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 "" +msgstr "Misslyckades med att uppgradera \"%s\"." -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "webbtjänster under din kontroll" #: files.php:66 files.php:98 #, php-format msgid "cannot open \"%s\"" -msgstr "" +msgstr "Kan inte öppna \"%s\"" #: files.php:226 msgid "ZIP download is turned off." @@ -76,7 +73,7 @@ msgstr "Valda filer är för stora för att skapa zip-fil." msgid "" "Download the files in smaller chunks, seperately or kindly ask your " "administrator." -msgstr "" +msgstr "Ladda ner filerna i mindre bitar, separat eller fråga din administratör." #: helper.php:235 msgid "couldn't be determined" @@ -211,56 +208,52 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" -msgstr "" +msgstr "Orsakad av:" #: vcategories.php:188 vcategories.php:249 #, php-format diff --git a/l10n/sv/settings.po b/l10n/sv/settings.po index 5e4920f340202b46a6c103258c9d4250bc8fb711..aa682e15aad1b4a74ede05c37d16efc19e286cd5 100644 --- a/l10n/sv/settings.po +++ b/l10n/sv/settings.po @@ -7,14 +7,15 @@ # Jan Busk, 2013 # Jan Busk, 2013 # medialabs, 2013 +# Magnus Höglund , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -174,175 +175,173 @@ msgstr "Ett giltigt lösenord måste anges" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Säkerhetsvarning" -#: templates/admin.php:20 +#: 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 "Din datakatalog och dina filer är förmodligen tillgängliga från Internet. Den .htaccess-fil som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern så att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root." +"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." +msgstr "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog." -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Installationsvarning" -#: templates/admin.php:34 +#: 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 "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Var god kontrollera installationsguiden." +msgid "Please double check the installation guides." +msgstr "Vänligen dubbelkolla igenom installationsguiden." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modulen \"fileinfo\" saknas" -#: templates/admin.php:49 +#: 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 "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Locale fungerar inte" -#: templates/admin.php:65 +#: 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 "Denna ownCloud server kan inte sätta system locale till %s. Det innebär att det kan vara problem med vissa tecken i filnamnet. Vi vill verkligen rekommendera att du installerar nödvändiga paket på ditt system för att stödja %s." +"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 "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s." -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Internetförbindelsen fungerar inte" -#: templates/admin.php:80 +#: 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 "Den här ownCloudservern har ingen fungerande internetförbindelse. Det innebär att några funktioner som t.ex. att montera externa lagringsplatser, meddelanden om uppdateringar eller installation av tredjepartsappar inte fungerar. Det kan vara så att det inte går att få fjärråtkomst till filer och att e-post inte fungerar. Vi rekommenderar att du tillåter internetåtkomst för den här servern om du vill ha tillgång till alla funktioner hos ownCloud" - -#: templates/admin.php:94 +"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." +msgstr "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner." + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Exekvera en uppgift vid varje sidladdning" -#: templates/admin.php:113 +#: 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 "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "Använd system-tjänsten cron för att anropa cron.php varje minut." -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Dela" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Aktivera delat API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Tillåt applikationer att använda delat API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Tillåt länkar" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Tillåt delning till allmänheten via publika länkar" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Tillåt offentlig uppladdning" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "Tillåt användare att aktivera\nTillåt användare att göra det möjligt för andra att ladda upp till sina offentligt delade mappar" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Tillåt vidaredelning" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Tillåt användare att dela vidare filer som delats med dem" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Tillåt delning med alla" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Tillåt bara delning med användare i egna grupper" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Säkerhet" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Kräv HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Tvingar klienter att ansluta till ownCloud via en krypterad förbindelse." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "Tvingar klienterna att ansluta till %s via en krypterad anslutning." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Vänligen anslut till denna instans av ownCloud via HTTPS för att aktivera/avaktivera SSL" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Logg" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Nivå på loggning" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Mer" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Mindre" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Version" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Du har använt %s av tillgängliga %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Lösenord" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Ditt lösenord har ändrats" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Kunde inte ändra ditt lösenord" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Nuvarande lösenord" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Nytt lösenord" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Ändra lösenord" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Visningsnamn" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "E-post" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Din e-postadress" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Fyll i en e-postadress för att aktivera återställning av lösenord" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Språk" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Hjälp att översätta" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to , 2013 # medialabs, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-09 07:59-0400\n" +"PO-Revision-Date: 2013-08-09 11:22+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" @@ -90,7 +91,7 @@ msgstr "Bekräfta radering" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "Varning: Apps user_ldap och user_webdavauth är inkompatibla. Oväntade problem kan uppstå. Be din systemadministratör att inaktivera en av dom." @@ -223,8 +224,8 @@ msgid "Disable Main Server" msgstr "Inaktivera huvudserver" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "När denna är påkopplad kommer ownCloud att koppla upp till replika-servern, endast." +msgid "Only connect to the replica server." +msgstr "Anslut endast till replikaservern." #: templates/settings.php:76 msgid "Use TLS" @@ -243,10 +244,11 @@ msgid "Turn off SSL certificate validation." msgstr "Stäng av verifiering av SSL-certifikat." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Om anslutningen bara fungerar med det här alternativet, importera LDAP-serverns SSL-certifikat i din ownCloud-server." +"certificate in your %s server." +msgstr "Om anslutningen bara fungerar med detta alternativ, importera LDAP-serverns SSL-certifikat i din% s server." #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -269,8 +271,8 @@ msgid "User Display Name Field" msgstr "Attribut för användarnamn" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Attribut som används för att generera användarnamn i ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "LDAP-attributet som ska användas för att generera användarens visningsnamn." #: templates/settings.php:84 msgid "Base User Tree" @@ -293,8 +295,8 @@ msgid "Group Display Name Field" msgstr "Attribut för gruppnamn" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Attribut som används för att generera gruppnamn i ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "LDAP-attributet som ska användas för att generera gruppens visningsnamn." #: templates/settings.php:87 msgid "Base Group Tree" @@ -354,12 +356,12 @@ msgid "" "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." +"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." msgstr "Som standard skapas det interna användarnamnet från UUID-attributet. Det säkerställer att användarnamnet är unikt och tecken inte behöver konverteras. Det interna användarnamnet har restriktionerna att endast följande tecken är tillåtna: [ a-zA-Z0-9_.@- ]. Andra tecken blir ersatta av deras motsvarighet i ASCII eller utelämnas helt. En siffra kommer att läggas till eller ökas på vid en kollision. Det interna användarnamnet används för att identifiera användaren internt. Det är även förvalt som användarens användarnamn i ownCloud. Det är även en port för fjärråtkomst, t.ex. för alla *DAV-tjänster. Med denna inställning kan det förvalda beteendet åsidosättas. För att uppnå ett liknande beteende som innan ownCloud 5, ange attributet för användarens visningsnamn i detta fält. Lämna det tomt för förvalt beteende. Ändringarna kommer endast att påverka nyligen mappade (tillagda) LDAP-användare" #: templates/settings.php:103 @@ -372,12 +374,12 @@ msgstr "Åsidosätt UUID detektion" #: 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 " +"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 behaviour. " +" 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 "Som standard upptäcker ownCloud automatiskt UUID-attributet. Det UUID-attributet används för att utan tvivel identifiera LDAP-användare och grupper. Dessutom kommer interna användarnamn skapas baserat på detta UUID, om inte annat anges ovan. Du kan åsidosätta inställningen och passera ett attribut som du själv väljer. Du måste se till att attributet som du väljer kan hämtas för både användare och grupper och att det är unikt. Lämna det tomt för standard beteende. Förändringar kommer endast att påverka nyligen mappade (tillagda) LDAP-användare och grupper." @@ -391,17 +393,16 @@ msgstr "Användarnamn-LDAP User Mapping" #: 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." +"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." msgstr "ownCloud använder sig av användarnamn för att lagra och tilldela (meta) data. För att exakt kunna identifiera och känna igen användare, kommer varje LDAP-användare ha ett internt användarnamn. Detta kräver en mappning från ownCloud-användarnamn till LDAP-användare. Det skapade användarnamnet mappas till UUID för LDAP-användaren. Dessutom cachas DN samt minska LDAP-interaktionen, men den används inte för identifiering. Om DN förändras, kommer förändringarna hittas av ownCloud. Det interna ownCloud-namnet används överallt i ownCloud. Om du rensar/raderar mappningarna kommer att lämna referenser överallt i systemet. Men den är inte konfigurationskänslig, den påverkar alla LDAP-konfigurationer! Rensa/radera aldrig mappningarna i en produktionsmiljö. Utan gör detta endast på i testmiljö!" #: templates/settings.php:109 diff --git a/l10n/sv/user_webdavauth.po b/l10n/sv/user_webdavauth.po index e8848e9ada136be51509bb64e580867b212426a3..fe31213d10fb41cf079bedda091e12c32f8bf630 100644 --- a/l10n/sv/user_webdavauth.po +++ b/l10n/sv/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-06-16 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 10:50+0000\n" -"Last-Translator: medialabs\n" +"POT-Creation-Date: 2013-08-03 01:55-0400\n" +"PO-Revision-Date: 2013-08-02 10:50+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" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV Autentisering" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL:" +msgid "Address: " +msgstr "Adress: " #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud kommer skicka användaruppgifterna till denna URL. Denna plugin kontrollerar svaret och tolkar HTTP-statuskoderna 401 och 403 som felaktiga uppgifter, och alla andra svar som giltiga uppgifter." diff --git a/l10n/sw_KE/core.po b/l10n/sw_KE/core.po index 834f706c36bb0922e1c94ed665c5444f20da2160..19567db98dddf9cff5b92b031cfd8e15b43801eb 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-06 02:02+0200\n" -"PO-Revision-Date: 2013-07-06 00: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: 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:289 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:721 +#: js/js.js:815 msgid "seconds ago" msgstr "" -#: js/js.js:722 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:723 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:724 -msgid "1 hour ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:725 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:726 +#: js/js.js:818 msgid "today" msgstr "" -#: js/js.js:727 +#: js/js.js:819 msgid "yesterday" msgstr "" -#: js/js.js:728 -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:729 +#: js/js.js:821 msgid "last month" msgstr "" -#: js/js.js:730 -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:731 +#: js/js.js:823 msgid "months ago" msgstr "" -#: js/js.js:732 +#: js/js.js:824 msgid "last year" msgstr "" -#: js/js.js:733 +#: js/js.js:825 msgid "years ago" msgstr "" @@ -225,8 +225,8 @@ 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:620 -#: js/share.js:632 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "" @@ -246,139 +246,140 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:660 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:172 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:177 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:180 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:182 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" -#: js/share.js:187 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:191 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:192 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:197 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:198 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:230 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:232 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:270 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:306 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:327 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:339 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:341 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:344 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:347 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:350 +#: js/share.js:361 msgid "delete" msgstr "" -#: js/share.js:353 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:387 js/share.js:607 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:620 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:632 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:647 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:658 +#: js/share.js:681 msgid "Email sent" msgstr "" -#: js/update.js:14 +#: js/update.js:17 msgid "" "The update was unsuccessful. Please report this issue to the ownCloud " "community." msgstr "" -#: js/update.js:18 +#: js/update.js:21 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +462,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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_encryption.po b/l10n/sw_KE/files_encryption.po index 50c13bf25ed458b5064a4cb6225f9683bc027fc4..44bd37d47a128cc6d74a119476a4a32052f63636 100644 --- a/l10n/sw_KE/files_encryption.po +++ b/l10n/sw_KE/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/sw_KE/files_sharing.po b/l10n/sw_KE/files_sharing.po index 5e4f08ccb5228611130cbc5d8720b50452fa08ed..0cf4663cb99b2cd07f51c2c15f72fad0dfbd94a6 100644 --- a/l10n/sw_KE/files_sharing.po +++ b/l10n/sw_KE/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\n" +"POT-Creation-Date: 2013-07-31 01:55-0400\n" +"PO-Revision-Date: 2013-07-31 05:56+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" @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/sw_KE/files_trashbin.po b/l10n/sw_KE/files_trashbin.po index d76092bcb49df3a9993a198df54f041abdca65b9..3edc43234c3a18b342939e88c5cb7d3ac3b45f1c 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:27+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:96 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:114 js/trash.js:139 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:121 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:174 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:175 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:184 -msgid "1 folder" -msgstr "" - -#: js/trash.js:186 -msgid "{count} folders" -msgstr "" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:194 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/sw_KE/files_versions.po b/l10n/sw_KE/files_versions.po index 93654e24af738a94d7a9f8121e4250a63f0a3729..e49e3ef2f0e951259aba1035dbd3bbf1b189fb92 100644 --- a/l10n/sw_KE/files_versions.po +++ b/l10n/sw_KE/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: sw_KE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/sw_KE/lib.po b/l10n/sw_KE/lib.po index 5f0afb54abac7d50f8d52381fba7432ebb6b2a24..ed7bf38925e2f7c6f6b9b3f058995f3b8f348367 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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/sw_KE/settings.po b/l10n/sw_KE/settings.po index 687adfcdbbbcce6f6a58bc504347d51fee07c186..262dc578d1b9482fe99ae7a116a2b0099a3a8614 100644 --- a/l10n/sw_KE/settings.po +++ b/l10n/sw_KE/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" +"POT-Creation-Date: 2013-07-27 01:56-0400\n" +"PO-Revision-Date: 2013-07-25 05:57+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" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/sw_KE/user_webdavauth.po b/l10n/sw_KE/user_webdavauth.po index f37c585e1edd97b26d532d128556f8e4f8b10c0a..902fbaf5f759c9c4f5ea6c0651c65a2488bec0fa 100644 --- a/l10n/sw_KE/user_webdavauth.po +++ b/l10n/sw_KE/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Swahili (Kenya) (http://www.transifex.com/projects/p/owncloud/language/sw_KE/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/ta_LK/core.po b/l10n/ta_LK/core.po index 7e1bb8da7a08ccd218770b0543b8a67414e0c44c..b39ec3ce71b9e6ffc65a6bba864d9bc8fd6ab319 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 நிமிடத்திற்கு முன் " +#: 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 "1 மணித்தியாலத்திற்கு முன்" - -#: 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 "வருடங்களுக்கு முன்" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "வழு" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "பகிர்வு" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "பகிரும் போதான வழு" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "பகிராமல் உள்ளப்போதான வழு" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "அனுமதிகள் மாறும்போதான வழு" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "உங்களுடனும் குழுவுக்கிடையிலும் {குழு} பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "உங்களுடன் பகிரப்பட்டுள்ளது {உரிமையாளர்}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "பகிர்தல்" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "இணைப்புடன் பகிர்தல்" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "கடவுச்சொல்லை பாதுகாத்தல்" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "கடவுச்சொல்" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "காலாவதி தேதியை குறிப்பிடுக" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "காலவதியாகும் திகதி" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "மின்னஞ்சலினூடான பகிர்வு: " -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "நபர்கள் யாரும் இல்லை" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "மீள்பகிர்வதற்கு அனுமதி இல்லை " -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "{பயனாளர்} உடன் {உருப்படி} பகிரப்பட்டுள்ளது" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "பகிரப்படாதது" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "தொகுக்க முடியும்" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "கட்டுப்பாடான அணுகல்" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "உருவவாக்கல்" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "இற்றைப்படுத்தல்" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "நீக்குக" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "பகிர்தல்" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "கடவுச்சொல் பாதுகாக்கப்பட்டது" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடாமைக்கான வழு" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "காலாவதியாகும் திகதியை குறிப்பிடுவதில் வழு" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "நீங்கள் மின்னஞ்சல் மூலம் உங்களுடைய கடவுச்சொல்லை மீளமைப்பதற்கான இணைப்பை பெறுவீர்கள். " -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "பயனாளர் பெயர்" @@ -461,11 +462,11 @@ msgstr "உதவி" msgid "Access forbidden" msgstr "அணுக தடை" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud காணப்படவில்லை" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr " நிர்வாக கணக்கொன்றை உருவாக்குக" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "உயர்ந்த" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "தரவு கோப்புறை" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "பயன்படுத்தப்படும்" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "தரவுத்தள பயனாளர்" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "தரவுத்தள கடவுச்சொல்" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "தரவுத்தள பெயர்" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "தரவுத்தள அட்டவணை" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "தரவுத்தள ஓம்புனர்" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "அமைப்பை முடிக்க" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "விடுபதிகை செய்க" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "தன்னிச்சையான புகுபதிகை நிராகரிப்பட்டது!" @@ -607,7 +613,7 @@ msgstr "புகுபதிகை" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\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 "{new_name} ஆனது {old_name} இனால் மாற்றப் msgid "undo" msgstr "முன் செயல் நீக்கம் " -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "1 கோப்பு பதிவேற்றப்படுகிறது" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" -#: 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 "1 கோப்புறை" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: 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 @@ -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/ta_LK/files_encryption.po b/l10n/ta_LK/files_encryption.po index fc2389171d96517d046f03ecf53684a51b1d565c..c6a45e1e1153cf443151eb6aa71cb4d21838ee1f 100644 --- a/l10n/ta_LK/files_encryption.po +++ b/l10n/ta_LK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ta_LK/files_sharing.po b/l10n/ta_LK/files_sharing.po index 4349314170bbbd022e87dd0fc268e25223b97212..f5ecc9d83d98968d006a449bb2c7c6293cb507f6 100644 --- a/l10n/ta_LK/files_sharing.po +++ b/l10n/ta_LK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "கடவுச்சொல்" msgid "Submit" msgstr "சமர்ப்பிக்குக" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s கோப்புறையானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s கோப்பானது %s உடன் பகிரப்பட்டது" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "பதிவிறக்குக" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "பதிவேற்றுக" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "பதிவேற்றலை இரத்து செய்க" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "அதற்கு முன்னோக்கு ஒன்றும் இல்லை" diff --git a/l10n/ta_LK/files_trashbin.po b/l10n/ta_LK/files_trashbin.po index 1a7902d8eeec4651c147d6806993994a933bd400..6cf36b94cdef9bcd231fea597fb9b5889e603273 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,45 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "வழு" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "பெயர்" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 கோப்புறை" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{எண்ணிக்கை} கோப்புறைகள்" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 கோப்பு" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{எண்ணிக்கை} கோப்புகள்" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ta_LK/files_versions.po b/l10n/ta_LK/files_versions.po index 7fbbf568c95b9ce8d5ccaf3ccb938f1c42ff1329..f0a3792aea0e44fdd9ce850ed3b61e4b364d984f 100644 --- a/l10n/ta_LK/files_versions.po +++ b/l10n/ta_LK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ta_LK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "பதிப்புகள்" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ta_LK/lib.po b/l10n/ta_LK/lib.po index b4f5cc473a7ee8d396773c2d203cc88c829d0bd8..7b29aad397e7397f26d75d42d5b660d705b35542 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-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: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\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 "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 "வருடங்களுக்கு முன்" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ta_LK/settings.po b/l10n/ta_LK/settings.po index b89d531ed1cc2b7a1fbd5e3963d8510d0bff197e..a70525ca6c97467245841fd0788ff76ef7991ea1 100644 --- a/l10n/ta_LK/settings.po +++ b/l10n/ta_LK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "_மொழி_பெயர்_" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "பாதுகாப்பு எச்சரிக்கை" -#: templates/admin.php:20 +#: 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 "உங்களுடைய தரவு அடைவு மற்றும் உங்களுடைய கோப்புக்களை பெரும்பாலும் இணையத்தினூடாக அணுகலாம். ownCloud இனால் வழங்கப்படுகின்ற .htaccess கோப்பு வேலை செய்யவில்லை. தரவு அடைவை நீண்ட நேரத்திற்கு அணுகக்கூடியதாக உங்களுடைய வலைய சேவையகத்தை தகவமைக்குமாறு நாங்கள் உறுதியாக கூறுகிறோம் அல்லது தரவு அடைவை வலைய சேவையக மூல ஆவணத்திலிருந்து வெளியே அகற்றுக. " +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "மேலதிக" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "குறைவான" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "நீங்கள் %s இலுள்ள %sபயன்படுத்தியுள்ளீர்கள்" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "கடவுச்சொல்" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "உங்களுடைய கடவுச்சொல் மாற்றப்பட்டுள்ளது" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "உங்களுடைய கடவுச்சொல்லை மாற்றமுடியாது" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "தற்போதைய கடவுச்சொல்" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "புதிய கடவுச்சொல்" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "கடவுச்சொல்லை மாற்றுக" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "மின்னஞ்சல்" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "உங்களுடைய மின்னஞ்சல் முகவரி" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "கடவுச்சொல் மீள் பெறுவதை இயலுமைப்படுத்துவதற்கு மின்னஞ்சல் முகவரியை இயலுமைப்படுத்துக" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "மொழி" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "மொழிபெயர்க்க உதவி" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "SSL சான்றிதழின் செல்லுபடியை நிறுத்திவிடவும்" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "இந்த தெரிவுகளில் மட்டும் இணைப்பு வேலைசெய்தால், உங்களுடைய owncloud சேவையகத்திலிருந்து LDAP சேவையகத்தின் SSL சான்றிதழை இறக்குமதி செய்யவும்" +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "பயனாளர் காட்சிப்பெயர் புலம்" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "பயனாளரின் ownCloud பெயரை உருவாக்க LDAP பண்புக்கூறை பயன்படுத்தவும்." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "குழுவின் காட்சி பெயர் புலம் " #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "ownCloud குழுக்களின் பெயர்களை உருவாக்க LDAP பண்புக்கூறை பயன்படுத்தவும்." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ta_LK/user_webdavauth.po b/l10n/ta_LK/user_webdavauth.po index 143001981c695e00c32a7a2ebdb1961466df38fd..2eb6a2e393c2660f3902cbbc201604c886287a7a 100644 --- a/l10n/ta_LK/user_webdavauth.po +++ b/l10n/ta_LK/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Tamil (Sri-Lanka) (http://www.transifex.com/projects/p/owncloud/language/ta_LK/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/te/core.po b/l10n/te/core.po index 6951fdf8fa2025c9d8cb1a665dbb7d1d2372bc11..7cd1f3cd42e4181386043d1ebde06fcceb33831c 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 నిమిషం క్రితం" +#: 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 "{minutes} నిమిషాల క్రితం" +#: 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 "1 గంట క్రితం" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} గంటల క్రితం" - -#: 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 "{days} రోజుల క్రితం" +#: 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 "{months} నెలల క్రితం" +#: 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 "సంవత్సరాల క్రితం" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "పొరపాటు" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "సంకేతపదం" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "పంపించు" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "కాలం చెల్లు తేదీ" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "తొలగించు" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "వాడుకరి పేరు" @@ -461,11 +462,11 @@ msgstr "సహాయం" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "నిష్క్రమించు" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\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/te/files_encryption.po b/l10n/te/files_encryption.po index 20a34b874a488e7b9fd4404959001fa42cbf47a9..c592c5b12d8ac6ef2d46b44c27d44d6bfb87da44 100644 --- a/l10n/te/files_encryption.po +++ b/l10n/te/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/te/files_sharing.po b/l10n/te/files_sharing.po index 1016563e1e949763a9de969b2dca3c6a306761d7..ed863a3da3141cba61a13e91a379f86a40829627 100644 --- a/l10n/te/files_sharing.po +++ b/l10n/te/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "సంకేతపదం" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/te/files_trashbin.po b/l10n/te/files_trashbin.po index e4b9155b2085c6d34a5b3ba631ece2327f65119d..b4d02b2255831d6c7152717403df9f3a02bc793b 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "పొరపాటు" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "శాశ్వతంగా తొలగించు" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "పేరు" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/te/files_versions.po b/l10n/te/files_versions.po index b745dfb02003ef9f6315c58d0612d52d200b58b1..535e7a6f374a7c6a1d073df28f3c8ec492e44199 100644 --- a/l10n/te/files_versions.po +++ b/l10n/te/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/te/lib.po b/l10n/te/lib.po index 5cb1c2bfb6cc7fec89d72ebe360ca70baa63d0e6..ed3dcbca484f34941eace3f0604b206a80008984 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-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: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\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 "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 "సంవత్సరాల క్రితం" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/te/settings.po b/l10n/te/settings.po index 0795122978adbbdc23ae441cc879f62e625a763b..5a519c6cefb1f99b7cf6908af67c4c9990ac23b3 100644 --- a/l10n/te/settings.po +++ b/l10n/te/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "మరిన్ని" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "సంకేతపదం" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "కొత్త సంకేతపదం" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "ఈమెయిలు" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "మీ ఈమెయిలు చిరునామా" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "భాష" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/te/user_webdavauth.po b/l10n/te/user_webdavauth.po index e586de734ddde2a2f03b7c6fcbbce63cb359baff..cc0b2628425999c207af288af223cb73579f8507 100644 --- a/l10n/te/user_webdavauth.po +++ b/l10n/te/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Telugu (http://www.transifex.com/projects/p/owncloud/language/te/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/templates/core.pot b/l10n/templates/core.pot index 9d3e3ce4c9d825488ff8ae7f0cf9bf943c1f84c3..4ad9a4187e063ebd1edcd697b1b70c9be5a1b989 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-07-24 01:55-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:293 +#: js/js.js:355 msgid "Settings" msgstr "" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "" @@ -226,7 +227,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 +247,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 "" @@ -278,7 +279,7 @@ msgstr "" msgid "Password protect" msgstr "" -#: js/share.js:193 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "" @@ -346,23 +347,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 +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 @@ -400,7 +402,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "" @@ -461,11 +463,11 @@ msgstr "" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +496,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +518,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +614,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\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,11 +121,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 +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: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,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 +276,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/templates/files_encryption.pot b/l10n/templates/files_encryption.pot index 11f4fd0ffb71338fabe6939f552f209120c7e869..ef73dc7961304987ed56b376a3e5c1b84bbc450e 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-07-24 01:55-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" @@ -66,9 +66,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/templates/files_external.pot b/l10n/templates/files_external.pot index 2ca2c53177c1f31eced6452d616626a3337be64f..6fa16222813b271d976bf8b0d4823c4947d4637c 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-07-24 01:55-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 112dd50e748ba8789a03fe4696558cbcef533f62..2e1bbd584b0535c218dd47b9f9574790b4c9659f 100644 --- a/l10n/templates/files_sharing.pot +++ b/l10n/templates/files_sharing.pot @@ -8,13 +8,13 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud Core 5.0.0\n" "Report-Msgid-Bugs-To: translations@owncloud.org\n" -"POT-Creation-Date: 2013-07-24 01:55-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" "Language: \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: templates/authenticate.php:4 @@ -29,28 +29,52 @@ msgstr "" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/templates/files_trashbin.pot b/l10n/templates/files_trashbin.pot index 1390d6e3802d4f0e7e30283c8018d092035db7c8..2836a306cde28c110279dfe4a0f3261fac029063 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-07-24 01:55-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 @@ -27,44 +28,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/templates/files_versions.pot b/l10n/templates/files_versions.pot index 6b1927af593d6b02427a4a0216ab7b512a6ddf5e..eb2c4eba9ce239a696f0917faf8ce04624598985 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-07-24 01:55-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" @@ -17,41 +17,27 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/templates/lib.pot b/l10n/templates/lib.pot index 37e37e51237eef0feb2ac5ab8af4da532cc0427d..befa7cfebafa9836c0d1243670b0a300e3a4b5c7 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-07-24 01:55-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,19 +35,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 +207,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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/templates/settings.pot b/l10n/templates/settings.pot index 9e3f34d3989c0448df88eca7ac273e25a913d932..80d557594ecd6d5242c9ab7b8b85910614cd4f22 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-07-24 01:55-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" @@ -169,175 +169,172 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: LANGUAGE \n" @@ -88,7 +88,7 @@ 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 " +"experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -220,7 +220,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -240,9 +240,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -266,7 +267,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -290,7 +291,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -350,12 +351,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -368,12 +369,12 @@ 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 " +"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 behaviour. " +"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 "" @@ -387,17 +388,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/templates/user_webdavauth.pot b/l10n/templates/user_webdavauth.pot index f52eb6ca714704380323581be93538306032a7ed..0c13a6a320b9795e1febc4fe67213c07e664a5dd 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-07-24 01:55-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" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/th_TH/core.po b/l10n/th_TH/core.po index 14735cc1a1ce96010c01d6bca9f62074cc5f502c..b38592551771fcf5affb522cdc6b3b69c994300b 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 นาทีก่อนหน้านี้" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} นาทีก่อนหน้านี้" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 ชั่วโมงก่อนหน้านี้" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} ชั่วโมงก่อนหน้านี้" - -#: 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 "{day} วันก่อนหน้านี้" +#: 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 "{months} เดือนก่อนหน้านี้" +#: 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 "ปี ที่ผ่านมา" @@ -225,8 +221,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "ข้อผิดพลาด" @@ -246,123 +242,123 @@ msgstr "แชร์แล้ว" msgid "Share" msgstr "แชร์" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "เกิดข้อผิดพลาดในระหว่างการแชร์ข้อมูล" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "เกิดข้อผิดพลาดในการยกเลิกการแชร์ข้อมูล" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "เกิดข้อผิดพลาดในการเปลี่ยนสิทธิ์การเข้าใช้งาน" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "ได้แชร์ให้กับคุณ และกลุ่ม {group} โดย {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "ถูกแชร์ให้กับคุณโดย {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "แชร์ให้กับ" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "แชร์ด้วยลิงก์" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "รหัสผ่าน" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "ส่งลิงก์ให้ทางอีเมล" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "ส่ง" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "กำหนดวันที่หมดอายุ" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "วันที่หมดอายุ" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "แชร์ผ่านทางอีเมล" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "ไม่พบบุคคลที่ต้องการ" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "ไม่อนุญาตให้แชร์ข้อมูลซ้ำได้" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "ได้แชร์ {item} ให้กับ {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "ยกเลิกการแชร์" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "สามารถแก้ไข" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "ระดับควบคุมการเข้าใช้งาน" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "สร้าง" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "อัพเดท" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "ลบ" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "แชร์" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "ใส่รหัสผ่านไว้" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "เกิดข้อผิดพลาดในการยกเลิกการตั้งค่าวันที่หมดอายุ" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "เกิดข้อผิดพลาดในการตั้งค่าวันที่หมดอายุ" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "กำลังส่ง..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "คุณจะได้รับลิงค์เพื่อกำหนดรหัสผ่านใหม่ทางอีเมล์" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "ชื่อผู้ใช้งาน" @@ -461,11 +458,11 @@ msgstr "ช่วยเหลือ" msgid "Access forbidden" msgstr "การเข้าถึงถูกหวงห้าม" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "ไม่พบ Cloud" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +491,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "สร้าง บัญชีผู้ดูแลระบบ" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "ขั้นสูง" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "โฟลเดอร์เก็บข้อมูล" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "จะถูกใช้" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "ชื่อผู้ใช้งานฐานข้อมูล" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "รหัสผ่านฐานข้อมูล" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "ชื่อฐานข้อมูล" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "พื้นที่ตารางในฐานข้อมูล" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Database host" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "ติดตั้งเรียบร้อยแล้ว" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "ออกจากระบบ" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "การเข้าสู่ระบบอัตโนมัติถูกปฏิเสธแล้ว" @@ -607,7 +609,7 @@ msgstr "เข้าสู่ระบบ" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\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 "แทนที่ {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:457 -msgid "1 file uploading" -msgstr "กำลังอัพโหลดไฟล์ 1 ไฟล์" - -#: 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 "ชื่อโฟลเดอร์ไม่ถูกต้อง การใช้งาน 'แชร์' สงวนไว้สำหรับ Owncloud เท่านั้น" -#: 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 "1 โฟลเดอร์" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} โฟลเดอร์" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 ไฟล์" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -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/th_TH/files_encryption.po b/l10n/th_TH/files_encryption.po index ad469023b19e95e738f1aa94967a2f3a742d41a9..91f26a124e184cf69c9e42dd28e0ac1c3ccfa3e3 100644 --- a/l10n/th_TH/files_encryption.po +++ b/l10n/th_TH/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/th_TH/files_sharing.po b/l10n/th_TH/files_sharing.po index 74b76cfb8c11aece5ec58f7b848d687a954bd92c..425f2d18d5c018eb0cea38519d89b89b23d71142 100644 --- a/l10n/th_TH/files_sharing.po +++ b/l10n/th_TH/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "รหัสผ่าน" msgid "Submit" msgstr "ส่ง" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s ได้แชร์โฟลเดอร์ %s ให้กับคุณ" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s ได้แชร์ไฟล์ %s ให้กับคุณ" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "ดาวน์โหลด" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "อัพโหลด" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "ยกเลิกการอัพโหลด" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "ไม่สามารถดูตัวอย่างได้สำหรับ" diff --git a/l10n/th_TH/files_trashbin.po b/l10n/th_TH/files_trashbin.po index 53c7986b5f367de43f1c9df1e6579583bef3ef36..d4723ca5dc7d833201a20202d1133dc2cb473c62 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "ดำเนินการคืนค่า" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "ข้อผิดพลาด" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "ชื่อ" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "ลบแล้ว" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 โฟลเดอร์" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} โฟลเดอร์" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ไฟล์" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ไฟล์" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/th_TH/files_versions.po b/l10n/th_TH/files_versions.po index 484c5c2cdad15fbed73559d5792550b3d66372ed..19e294e26961ae59e599603f43450a3f862fd700 100644 --- a/l10n/th_TH/files_versions.po +++ b/l10n/th_TH/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: th_TH\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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 "" +#: js/versions.js:7 +msgid "Versions" +msgstr "รุ่น" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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 "" +#: js/versions.js:149 +msgid "Restore" +msgstr "คืนค่า" diff --git a/l10n/th_TH/lib.po b/l10n/th_TH/lib.po index a12613c7221805a20d8975b0effeb810aa9ef499..afaf5b524b65e1996a72739be143308ac2456b6c 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-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: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\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 "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 "ปี ที่ผ่านมา" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/th_TH/settings.po b/l10n/th_TH/settings.po index 0dc2d71dad28d2fdc5a2071ce12a75fb12deef47..f50763964473a620f84cdf6befa34e2f8649ec47 100644 --- a/l10n/th_TH/settings.po +++ b/l10n/th_TH/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "ภาษาไทย" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "คำเตือนเกี่ยวกับความปลอดภัย" -#: templates/admin.php:20 +#: 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 "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว" +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ" -#: templates/admin.php:113 +#: 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 "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่" +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "การแชร์ข้อมูล" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "อนุญาตให้ใช้งานลิงก์ได้" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "อนุญาตให้ผู้ใช้งานสามารถแชร์ข้อมูลรายการต่างๆไปให้สาธารณะชนเป็นลิงก์ได้" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "อนุญาตให้แชร์ข้อมูลซ้ำใหม่ได้" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลรายการต่างๆที่ถูกแชร์มาให้ตัวผู้ใช้งานได้เท่านั้น" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลถึงใครก็ได้" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "อนุญาตให้ผู้ใช้งานแชร์ข้อมูลได้เฉพาะกับผู้ใช้งานที่อยู่ในกลุ่มเดียวกันเท่านั้น" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "บันทึกการเปลี่ยนแปลง" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "ระดับการเก็บบันทึก log" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "มาก" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "น้อย" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "รุ่น" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "คุณได้ใช้งานไปแล้ว %s จากจำนวนที่สามารถใช้ได้ %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "รหัสผ่าน" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "รหัสผ่านของคุณถูกเปลี่ยนแล้ว" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "ไม่สามารถเปลี่ยนรหัสผ่านของคุณได้" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "รหัสผ่านปัจจุบัน" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "รหัสผ่านใหม่" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "เปลี่ยนรหัสผ่าน" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "ชื่อที่ต้องการแสดง" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "อีเมล" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "ที่อยู่อีเมล์ของคุณ" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "กรอกที่อยู่อีเมล์ของคุณเพื่อเปิดให้มีการกู้คืนรหัสผ่านได้" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "ภาษา" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "ช่วยกันแปล" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "คำเตือน: แอปฯ user_ldap และ user_webdavauth ไม่สามารถใช้งานร่วมกันได้. คุณอาจประสพปัญหาที่ไม่คาดคิดจากเหตุการณ์ดังกล่าว กรุณาติดต่อผู้ดูแลระบบของคุณเพื่อระงับการใช้งานแอปฯ ตัวใดตัวหนึ่งข้างต้น" +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "ปิดใช้งานเซิร์ฟเวอร์หลัก" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "ปิดใช้งานการตรวจสอบความถูกต้องของใบรับรองความปลอดภัย SSL" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "หากการเชื่อมต่อสามารถทำงานได้เฉพาะกับตัวเลือกนี้เท่านั้น, ให้นำเข้าข้อมูลใบรับรองความปลอดภัยแบบ SSL ของเซิร์ฟเวอร์ LDAP ดังกล่าวเข้าไปไว้ในเซิร์ฟเวอร์ ownCloud" +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "ช่องแสดงชื่อผู้ใช้งานที่ต้องการ" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "คุณลักษณะ LDAP ที่ต้องการใช้สำหรับสร้างชื่อของผู้ใช้งาน ownCloud" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "ช่องแสดงชื่อกลุ่มที่ต้องการ" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "คุณลักษณะ LDAP ที่ต้องการใช้สร้างชื่อกลุ่มของ ownCloud" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/th_TH/user_webdavauth.po b/l10n/th_TH/user_webdavauth.po index 08cda589473a7ea106f6c918122aa1b92c451874..f2d70cb174f504b4a2e659b9a305855ba588baab 100644 --- a/l10n/th_TH/user_webdavauth.po +++ b/l10n/th_TH/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Thai (Thailand) (http://www.transifex.com/projects/p/owncloud/language/th_TH/)\n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV Authentication" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud จะส่งข้อมูลการเข้าใช้งานของผู้ใช้งานไปยังที่อยู่ URL ดังกล่าวนี้ ปลั๊กอินดังกล่าวจะทำการตรวจสอบข้อมูลที่โต้ตอบกลับมาและจะทำการแปลรหัส HTTP statuscodes 401 และ 403 ให้เป็นข้อมูลการเข้าใช้งานที่ไม่สามารถใช้งานได้ ส่วนข้อมูลอื่นๆที่เหลือทั้งหมดจะเป็นข้อมูลการเข้าใช้งานที่สามารถใช้งานได้" +msgstr "" diff --git a/l10n/tr/core.po b/l10n/tr/core.po index 5359beab0ea1ff432de886883af470a439176aab..671988fe77eaa62dff87e2278d65add8562287cf 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+0000\n" -"Last-Translator: ismail yenigül \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:293 +#: js/js.js:355 msgid "Settings" msgstr "Ayarlar" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "saniye önce" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 dakika ö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:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} 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:718 -msgid "1 hour ago" -msgstr "1 saat önce" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} saat önce" - -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "bugün" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "dün" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "geçen ay" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "ay önce" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "geçen yıl" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "yıl önce" @@ -226,8 +227,8 @@ msgstr "Nesne türü belirtilmemiş." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Hata" @@ -247,123 +248,123 @@ msgstr "Paylaşılan" msgid "Share" msgstr "Paylaş" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Paylaşım sırasında hata " -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Paylaşım iptal ediliyorken hata" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "İzinleri değiştirirken hata oluştu" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr " {owner} tarafından sizinle ve {group} ile paylaştırılmış" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} trafından sizinle paylaştırıldı" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "ile Paylaş" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Bağlantı ile paylaş" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Şifre korunması" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Parola" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "Herkes tarafından yüklemeye izin ver" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Kişiye e-posta linki" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Gönder" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Son kullanma tarihini ayarla" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Son kullanım tarihi" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Eposta ile paylaş" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Kişi bulunamadı" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Tekrar paylaşmaya izin verilmiyor" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr " {item} içinde {user} ile paylaşılanlarlar" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Paylaşılmayan" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "düzenleyebilir" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "erişim kontrolü" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "oluştur" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "güncelle" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "sil" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "paylaş" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Paralo korumalı" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Geçerlilik tarihi tanımlama kaldırma hatası" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Geçerlilik tarihi tanımlama hatası" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Gönderiliyor..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Eposta gönderildi" @@ -378,9 +379,10 @@ msgstr "Güncelleme başarılı olmadı. Lütfen bu hatayı bildirin E-posta / kullanıcı adınızı doğru ol msgid "You will receive a link to reset your password via Email." msgstr "Parolanızı sıfırlamak için bir bağlantı Eposta olarak gönderilecek." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Kullanıcı Adı" @@ -462,11 +464,11 @@ msgstr "Yardım" msgid "Access forbidden" msgstr "Erişim yasaklı" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Bulut bulunamadı" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +497,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "PHP sürümünüz NULL Byte saldırısına açık (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "ownCloud'u güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "%s güvenli olarak kullanmak için, lütfen PHP kurulumunuzu güncelleyin." #: templates/installation.php:32 msgid "" @@ -516,68 +519,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Veri klasörünüz ve dosyalarınız .htaccess dosyası çalışmadığı için internet'ten erişime açık." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Server'ınızı nasıl ayarlayacağınıza dair bilgi için, lütfen bu linki ziyaret edin documentation." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "Server'ınızı nasıl ayarlayacağınıza dair bilgi için, lütfen dokümantasyon sayfasını ziyaret edin." -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Bir yönetici hesabı oluşturun" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Gelişmiş" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Veri klasörü" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Veritabanını ayarla" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "kullanılacak" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Veritabanı kullanıcı adı" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Veritabanı parolası" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Veritabanı adı" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Veritabanı tablo alanı" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Veritabanı sunucusu" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Kurulumu tamamla" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s mevcuttur. Güncelleştirme hakkında daha fazla bilgi alın." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 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!" @@ -608,7 +615,7 @@ msgstr "Giriş yap" msgid "Alternative Logins" msgstr "Alternatif Girişler" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 2013 +# tridinebandim, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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,11 +122,7 @@ msgstr "Paylaş" msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Sil" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "İsim değiştir." @@ -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:457 -msgid "1 file uploading" -msgstr "1 dosya yüklendi" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "Dosyalar yükleniyor" @@ -201,33 +196,29 @@ msgstr "İndirmeniz hazırlanıyor. Dosya büyük ise biraz zaman alabilir." msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Geçersiz dizin adı. Shared isminin kullanımı Owncloud tarafından rezerver edilmiştir." -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "İsim" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Boyut" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Değiştirilme" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 dizin" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} dizin" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 dosya" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n dizin" +msgstr[1] "%n dizin" -#: 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 @@ -286,45 +277,49 @@ msgstr "Klasör" msgid "From link" msgstr "Bağlantıdan" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "Dosyalar silindi" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Buraya erişim hakkınız yok." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Burada hiçbir şey yok. Birşeyler yükleyin!" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "İndir" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Paylaşılmayan" -#: templates/index.php:107 +#: 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" -#: 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 "Yüklemeye çalıştığınız dosyalar bu sunucudaki maksimum yükleme boyutunu aşıyor." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Dosyalar taranıyor, lütfen bekleyin." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Güncel tarama" diff --git a/l10n/tr/files_encryption.po b/l10n/tr/files_encryption.po index 5948a3dedb375809e908e6ebdc48bf41269a9d97..9909513fdba788f9537c8210f7cda94b94439ee7 100644 --- a/l10n/tr/files_encryption.po +++ b/l10n/tr/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/tr/files_sharing.po b/l10n/tr/files_sharing.po index 2b7db48119bf70cdfb86ac75f0d73b10fd700240..494628568cc701117aff64341d4b07268a8c5d60 100644 --- a/l10n/tr/files_sharing.po +++ b/l10n/tr/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Parola" msgid "Submit" msgstr "Gönder" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s sizinle paylaşılan %s klasör" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "İndir" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Yükle" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Yüklemeyi iptal et" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Kullanılabilir önizleme yok" diff --git a/l10n/tr/files_trashbin.po b/l10n/tr/files_trashbin.po index e411b73e9d888cce3ac394b3f18d30cf0bc844ff..f46712fc9f499b437ba9391cfd2a3fa902006f1a 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +28,45 @@ msgstr "%s Kalıcı olarak silinemedi" msgid "Couldn't restore %s" msgstr "%s Geri yüklenemedi" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "Geri yükleme işlemini gerçekleştir" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Hata" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "Dosyayı kalıcı olarak sil" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Kalıcı olarak sil" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "İsim" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Silindi" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 dizin" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} dizin" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 dosya" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} dosya" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "%n dizin" + +#: 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 "geri yüklendi" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/tr/files_versions.po b/l10n/tr/files_versions.po index 9f1d643d13ec99f02e43ea366392a4d64783f067..57a5449a0149597444c14eb7b5a1ee9527629764 100644 --- a/l10n/tr/files_versions.po +++ b/l10n/tr/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Geri alınamıyor: %s" -#: history.php:40 -msgid "success" -msgstr "Başarılı." - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Dosya %s, %s versiyonuna döndürüldü" - -#: history.php:49 -msgid "failure" -msgstr "hata" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Dosya %s, %s versiyonuna döndürülemedi." +#: js/versions.js:7 +msgid "Versions" +msgstr "Sürümler" -#: history.php:69 -msgid "No old versions available" -msgstr "Eski versiyonlar mevcut değil." +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Yama belirtilmemiş" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Sürümler" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Dosyanın önceki sürümüne geri dönmek için, değişiklikleri geri al butonuna tıklayın" +#: js/versions.js:149 +msgid "Restore" +msgstr "Geri yükle" diff --git a/l10n/tr/lib.po b/l10n/tr/lib.po index f87d09b3415a2d8cf32ecf095f85fc5fcd20327a..1146ef5bfd1e3c59bd4d1e2e5eb071da027336d2 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+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,26 +36,22 @@ 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:33 +#: defaults.php:35 msgid "web services under your control" 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:296 +#: 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 22ab59ac9dab675533420c1bf857e7f6dcba8802..7521d03f55375982a6cfebf43905a9bfd406bf2c 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+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" @@ -170,175 +171,173 @@ msgstr "Geçerli bir parola mutlaka sağlanmalı" msgid "__language_name__" msgstr "Türkçe" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Güvenlik Uyarisi" -#: templates/admin.php:20 +#: 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 "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz." +"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." +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:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Kurulum Uyarısı" -#: templates/admin.php:34 +#: 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 "Web sunucunuz dosya transferi için düzgün bir şekilde yapılandırılmamış. WevDAV arabirimini sorunlu gözüküyor." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Lütfen kurulum kılavuzlarını iki kez kontrol edin." +msgid "Please double check the installation guides." +msgstr "Lütfen kurulum kılavuzlarını tekrar kontrol edin." -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Modül 'fileinfo' kayıp" -#: templates/admin.php:49 +#: 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 "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." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Locale çalışmıyor." -#: templates/admin.php:65 +#: 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 "Bu ownCloud sunucusu sistem yerelini %s olarak değiştiremedi. Bu, dosya adlarındaki bazı karakterler ile sorun yaşanabileceği anlamına gelir. %s yerelini desteklemek için gerekli paketleri kurmanızı şiddetle öneririz." +"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 "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:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "İnternet bağlantısı çalışmıyor" -#: templates/admin.php:80 +#: 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 "ownCloud sunucusunun internet bağlantısı yok. Bu nedenle harici depolama bağlantısı, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacaktır. Uzak dosyalara erişim ve e-posta ile bildirim gönderme çalışmayacak. Eğer ownCloud tüm özelliklerini kullanmak istiyorsanız, internet bağlantısı gerekmektedir." - -#: templates/admin.php:94 +"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." +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" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Yüklenen her sayfa ile bir görev çalıştır" -#: templates/admin.php:113 +#: 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 "cron.php bir webcron hizmetinde kaydedilir. Owncloud kökündeki cron.php sayfasını http üzerinden dakikada bir çağır." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "Http üzerinden dakikada bir çalıştırılmak üzere, cron.php bir webcron hizmetine kaydedildi." -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Sistemin cron hizmetini kullan. Bir sistem cronjob'ı ile owncloud klasöründeki cron.php dosyasını dakikada bir çağır." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "cron.php dosyasını dakikada bir çağırmak için sistemin cron hizmetini kullan. " -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Paylaşım" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Paylaşım API'sini etkinleştir." -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Uygulamaların paylaşım API'sini kullanmasına izin ver" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Bağlantıları izin ver." -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Kullanıcıların nesneleri paylaşımı için herkese açık bağlantılara izin ver" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "Herkes tarafından yüklemeye izin ver" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Paylaşıma izin ver" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Kullanıcıların kendileri ile paylaşılan öğeleri yeniden paylaşmasına izin ver" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Kullanıcıların herşeyi paylaşmalarına izin ver" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Kullanıcıların sadece kendi gruplarındaki kullanıcılarla paylaşmasına izin ver" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Güvenlik" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "HTTPS bağlantısına zorla" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "İstemcileri ownCloud'a şifreli bir bağlantı ile bağlanmaya zorlar." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "İstemcileri %s a şifreli bir bağlantı ile bağlanmaya zorlar." -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen bu ownCloud örneğine HTTPS ile bağlanın." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +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:207 +#: templates/admin.php:211 msgid "Log" msgstr "Kayıtlar" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Günlük seviyesi" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Daha fazla" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Az" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Sürüm" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Kullandığınız:%s seçilebilecekler: %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Parola" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Şifreniz değiştirildi" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Parolanız değiştirilemiyor" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Mevcut parola" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Yeni parola" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Parola değiştir" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Ekran Adı" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Eposta" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Eposta adresiniz" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Parola kurtarmayı etkinleştirmek için bir eposta adresi girin" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Dil" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Çevirilere yardım edin" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "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" @@ -90,9 +90,9 @@ msgstr "Silmeyi onayla" #: 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Uyari Apps kullanici_Idap ve user_webdavauth uyunmayan. Bu belki sik degil. Lutfen sistem yonetici sormak on aktif yapmaya. " +msgstr "" #: templates/settings.php:12 msgid "" @@ -223,8 +223,8 @@ msgid "Disable Main Server" msgstr "Ana sunucuyu devredışı birak" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Ne zaman acik, ownCloud sadece sunuce replikayin baglamis." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -243,10 +243,11 @@ msgid "Turn off SSL certificate validation." msgstr "SSL sertifika doğrulamasını kapat." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Bagladiginda, bunla secene sadece calisiyor, sunucu LDAP SSL sunucun ithal etemek, dneyme sizine sunucu ownClouden. " +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -269,8 +270,8 @@ msgid "User Display Name Field" msgstr "Ekran Adi Kullanici, (Alan Adi Kullanici Ekrane)" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "LDAP kategori kullanmaya adi ownCloud kullanicin uremek icin. " +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -293,8 +294,8 @@ msgid "Group Display Name Field" msgstr "Grub Ekrane Alani Adi" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "LDAP kullamayin grub adi ownCloud uremek icin. " +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -354,12 +355,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -372,12 +373,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -391,17 +392,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/tr/user_webdavauth.po b/l10n/tr/user_webdavauth.po index 5e69022bb6ee26cbe0e7920fad1773bbe77802b6..d138eeec59280d9cb94588b3630435a53e15726e 100644 --- a/l10n/tr/user_webdavauth.po +++ b/l10n/tr/user_webdavauth.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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Turkish (http://www.transifex.com/projects/p/owncloud/language/tr/)\n" "MIME-Version: 1.0\n" @@ -26,12 +26,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV Kimlik doğrulaması" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud deneyme kullanicin URLe gonderecek. Bu toplan cepaplama muayene edecek ve status kodeci HTTPden 401 ve 403 deneyi gecerli ve hepsi baska cevaplamari mantekli gibi yorumlacak. " +msgstr "" diff --git a/l10n/ug/core.po b/l10n/ug/core.po index e1892195c87c0a4595c49f0581cba1902e512cb1..962ef65e3e6ae12c2783bbc836c6e49c84a7a41b 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 مىنۇت ئىلگىرى" +#: 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:718 -msgid "1 hour ago" -msgstr "1 سائەت ئىلگىرى" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: 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 "" @@ -225,8 +221,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "خاتالىق" @@ -246,123 +242,123 @@ msgstr "" msgid "Share" msgstr "ھەمبەھىر" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "ھەمبەھىر" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "ئىم" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "يوللا" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "ھەمبەھىرلىمە" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "ئۆچۈر" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "ھەمبەھىر" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: 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 @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "ئىشلەتكۈچى ئاتى" @@ -461,11 +458,11 @@ msgstr "ياردەم" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +491,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "ئالىي" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "تەڭشەك تامام" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "تىزىمدىن چىق" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +609,7 @@ msgstr "" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Uighur \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 "1 ھۆججەت يۈكلىنىۋاتىدۇ" - -#: 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 "1 قىسقۇچ" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -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 "بۇ جايدا ھېچنېمە يوق. Upload something!" -#: 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/ug/files_encryption.po b/l10n/ug/files_encryption.po index 896e7bb478669159947fd18b207f1410790f5d05..21c46db204f2c9a213ab82c46a0e8144d05bbd05 100644 --- a/l10n/ug/files_encryption.po +++ b/l10n/ug/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ug/files_sharing.po b/l10n/ug/files_sharing.po index 309e31e9e0df5fc6a42e72d7cfa215acc0e0d1ce..54a98b555d4fd79aa8ca68244dd5e8df0d31eb82 100644 --- a/l10n/ug/files_sharing.po +++ b/l10n/ug/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "ئىم" msgid "Submit" msgstr "تاپشۇر" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "چۈشۈر" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "يۈكلە" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "يۈكلەشتىن ۋاز كەچ" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ug/files_trashbin.po b/l10n/ug/files_trashbin.po index 018442e993671b0ebe38747a5b851e2e623ca115..df0057cd76b445b8712239b125d777a9c306951f 100644 --- a/l10n/ug/files_trashbin.po +++ b/l10n/ug/files_trashbin.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: Abduqadir Abliz \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" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,45 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "خاتالىق" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "مەڭگۈلۈك ئۆچۈر" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "ئاتى" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "ئۆچۈرۈلدى" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 قىسقۇچ" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 ھۆججەت" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} ھۆججەت" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/ug/files_versions.po b/l10n/ug/files_versions.po index 65557768200c49138a82cb6389cafb9a266b908a..b1544b54569eac87a24cfa8e55a69f8391e4cbb0 100644 --- a/l10n/ug/files_versions.po +++ b/l10n/ug/files_versions.po @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: Abduqadir Abliz \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" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ug\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "ئەسلىگە قايتۇرالمايدۇ: %s" -#: history.php:40 -msgid "success" -msgstr "مۇۋەپپەقىيەتلىك" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "ھۆججەت %s نى %s نەشرىگە ئەسلىگە قايتۇردى" - -#: history.php:49 -msgid "failure" -msgstr "مەغلۇپ بولدى" +#: js/versions.js:7 +msgid "Versions" +msgstr "نەشرى" -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:69 -msgid "No old versions available" -msgstr "كونا نەشرى يوق" - -#: history.php:74 -msgid "No path specified" -msgstr "يول بەلگىلەنمىگەن" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "نەشرى" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ug/lib.po b/l10n/ug/lib.po index bba5b72f53f33de791c2b4e520eb00a467d0adf9..657d41ba627f1c1809deebf253991b713695996b 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-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: Uighur \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 "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 "" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/ug/settings.po b/l10n/ug/settings.po index cee3ecae4a8cc1cf41f6af4df6fc9f06dd398ecb..30a1f8a9f4846f259ab956688a2f99802b3063dc 100644 --- a/l10n/ug/settings.po +++ b/l10n/ug/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "ھەمبەھىر" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "بىخەتەرلىك" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "خاتىرە" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "خاتىرە دەرىجىسى" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "تېخىمۇ كۆپ" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "ئاز" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "نەشرى" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "ئىم" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "ئىمىڭىز مۇۋەپپەقىيەتلىك ئۆزگەرتىلدى" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "ئىمنى ئۆزگەرتكىلى بولمايدۇ." -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "نۆۋەتتىكى ئىم" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "يېڭى ئىم" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "ئىم ئۆزگەرت" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "كۆرسىتىش ئىسمى" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "تورخەت" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "تورخەت ئادرېسىڭىز" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "ئىم ئەسلىگە كەلتۈرۈشتە ئىشلىتىدىغان تور خەت ئادرېسىنى تولدۇرۇڭ" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "تىل" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "تەرجىمىگە ياردەم" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ug/user_webdavauth.po b/l10n/ug/user_webdavauth.po index ebca1d6ca9bb3758004a789def304d807541bec7..654c1406a2a738a3d35dd48a21c3611b523d2ad7 100644 --- a/l10n/ug/user_webdavauth.po +++ b/l10n/ug/user_webdavauth.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Uighur \n" "MIME-Version: 1.0\n" @@ -23,12 +23,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV سالاھىيەت دەلىللەش" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/uk/core.po b/l10n/uk/core.po index 10bacada83f77b41be9955c955c8987e03f6c4b6..e5cc3c9037da74c4a12f160b6a075e73a2b387fc 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 хвилину тому" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} хвилин тому" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 годину тому" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} години тому" - -#: js/js.js:720 +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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 "{days} днів тому" +#: 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 "{months} місяців тому" +#: 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 "роки тому" @@ -225,8 +229,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Помилка" @@ -246,123 +250,123 @@ msgstr "Опубліковано" msgid "Share" msgstr "Поділитися" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Помилка під час публікації" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Помилка під час відміни публікації" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Помилка при зміні повноважень" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr " {owner} опублікував для Вас та для групи {group}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} опублікував для Вас" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Опублікувати для" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Опублікувати через посилання" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Захистити паролем" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Пароль" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Ел. пошта належить Пану" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Надіслати" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Встановити термін дії" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Термін дії" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Опублікувати через Ел. пошту:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Жодної людини не знайдено" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Пере-публікація не дозволяється" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Опубліковано {item} для {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Закрити доступ" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "може редагувати" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "контроль доступу" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "створити" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "оновити" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "видалити" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "опублікувати" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Захищено паролем" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Помилка при відміні терміна дії" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Помилка при встановленні терміна дії" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Надсилання..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +405,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "Ви отримаєте посилання для скидання вашого паролю на Ел. пошту." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Ім'я користувача" @@ -461,11 +466,11 @@ msgstr "Допомога" msgid "Access forbidden" msgstr "Доступ заборонено" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Cloud не знайдено" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,8 +499,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Ваша версія PHP вразлива для атак NULL Byte (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Будь ласка, оновіть інсталяцію PHP для безпечного використання ownCloud." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -515,68 +521,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Ваші дані каталогів і файлів, ймовірно, доступні з інтернету, тому що .htaccess файл не працює." -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Для отримання інформації, як правильно налаштувати сервер, зверніться до документації." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Створити обліковий запис адміністратора" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Додатково" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Каталог даних" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "буде використано" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Користувач бази даних" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Пароль для бази даних" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Назва бази даних" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Таблиця бази даних" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Хост бази даних" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Завершити налаштування" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Вихід" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Автоматичний вхід в систему відхилений!" @@ -607,7 +617,7 @@ msgstr "Вхід" msgid "Alternative Logins" msgstr "Альтернативні Логіни" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
, 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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,11 +121,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 +153,14 @@ msgstr "замінено {new_name} на {old_name}" msgid "undo" msgstr "відмінити" -#: js/filelist.js:375 -msgid "perform delete operation" -msgstr "виконати операцію видалення" - -#: js/filelist.js:457 -msgid "1 file uploading" -msgstr "1 файл завантажується" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "файли завантажуються" @@ -200,38 +196,36 @@ msgstr "Ваше завантаження готується. Це може за msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Невірне ім'я теки. Використання \"Shared\" зарезервовано Owncloud" -#: 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 "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" @@ -285,55 +279,59 @@ 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 "Поточне сканування" #: 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_encryption.po b/l10n/uk/files_encryption.po index 4899683a1780343a04ae04c52c8de46d546b60ba..e101895485d109d354ed7023e2c10485a9aa8130 100644 --- a/l10n/uk/files_encryption.po +++ b/l10n/uk/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/uk/files_external.po b/l10n/uk/files_external.po index 6ed509717b8fc1031609662e45903b2b6d820ac4..e5332acadba86340826cd48cfaf3a6ba768afa39 100644 --- a/l10n/uk/files_external.po +++ b/l10n/uk/files_external.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Soul Kim , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\n" -"Last-Translator: I Robot \n" +"POT-Creation-Date: 2013-08-01 01:55-0400\n" +"PO-Revision-Date: 2013-08-01 03:10+0000\n" +"Last-Translator: Soul Kim \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" @@ -17,7 +18,7 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:16 js/google.js:34 +#: js/dropbox.js:7 js/dropbox.js:28 js/google.js:8 js/google.js:39 msgid "Access granted" msgstr "Доступ дозволено" @@ -25,7 +26,7 @@ msgstr "Доступ дозволено" msgid "Error configuring Dropbox storage" msgstr "Помилка при налаштуванні сховища Dropbox" -#: js/dropbox.js:65 js/google.js:66 +#: js/dropbox.js:65 js/google.js:86 msgid "Grant access" msgstr "Дозволити доступ" @@ -33,29 +34,29 @@ msgstr "Дозволити доступ" msgid "Please provide a valid Dropbox app key and secret." msgstr "Будь ласка, надайте дійсний ключ та пароль Dropbox." -#: js/google.js:36 js/google.js:93 +#: js/google.js:42 js/google.js:121 msgid "Error configuring Google Drive storage" msgstr "Помилка при налаштуванні сховища Google Drive" -#: lib/config.php:447 +#: lib/config.php:448 msgid "" "Warning: \"smbclient\" is not installed. Mounting of CIFS/SMB shares " "is not possible. Please ask your system administrator to install it." msgstr "Попередження: Клієнт \"smbclient\" не встановлено. Під'єднанатися до CIFS/SMB тек неможливо. Попрохайте системного адміністратора встановити його." -#: lib/config.php:450 +#: lib/config.php:451 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 "Попередження: Підтримка FTP в PHP не увімкнута чи не встановлена. Під'єднанатися до FTP тек неможливо. Попрохайте системного адміністратора встановити її." -#: lib/config.php:453 +#: lib/config.php:454 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 "" +msgstr "Попередження: Підтримка CURL в PHP не увімкнута чи не встановлена. Під'єднанатися OwnCloud / WebDav або Google Drive неможливе. Попрохайте системного адміністратора встановити її." #: templates/settings.php:3 msgid "External Storage" diff --git a/l10n/uk/files_sharing.po b/l10n/uk/files_sharing.po index a2aca19d51470ec4723605114a00244be3569525..4c747b05e0fb329dfc75a640e2e1f585233f9f15 100644 --- a/l10n/uk/files_sharing.po +++ b/l10n/uk/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Пароль" msgid "Submit" msgstr "Передати" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s опублікував каталог %s для Вас" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s опублікував файл %s для Вас" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Завантажити" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Вивантажити" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Перервати завантаження" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Попередній перегляд недоступний для" diff --git a/l10n/uk/files_trashbin.po b/l10n/uk/files_trashbin.po index 1f8cdb0cd89ba55475050bccdd812c2ff6373e8b..617e1276bfd7cb1e4910b3cfd74f44661af71491 100644 --- a/l10n/uk/files_trashbin.po +++ b/l10n/uk/files_trashbin.po @@ -3,12 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# Soul Kim , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +28,47 @@ msgstr "Неможливо видалити %s назавжди" msgid "Couldn't restore %s" msgstr "Неможливо відновити %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "виконати операцію відновлення" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Помилка" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "видалити файл назавжди" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Видалити назавжди" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Ім'я" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Видалено" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 папка" - -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} папок" - -#: js/trash.js:196 -msgid "1 file" -msgstr "1 файл" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} файлів" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: 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" +msgstr "відновлено" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/uk/files_versions.po b/l10n/uk/files_versions.po index 7fb44a00e8b084ee0d5b914e1d5ede9f2891db50..a24eb68f6b5e4a948324bda72557b5af738aa58d 100644 --- a/l10n/uk/files_versions.po +++ b/l10n/uk/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: uk\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Не вдалося відновити: %s" -#: history.php:40 -msgid "success" -msgstr "успішно" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "Файл %s був відновлений до версії %s" - -#: history.php:49 -msgid "failure" -msgstr "неуспішно" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "Файл %s не може бути відновлений до версії %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Версії" -#: history.php:69 -msgid "No old versions available" -msgstr "Старі версії недоступні" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Шлях не вказаний" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Версії" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Відновити файл на попередню версію, натиснувши на кнопку Відновити" +#: js/versions.js:149 +msgid "Restore" +msgstr "Відновити" diff --git a/l10n/uk/lib.po b/l10n/uk/lib.po index 950fef2e264514f2c4d2f7e44e09de737194de4c..7c870f656c199b40d8b58e7929d61a56e3d9d001 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-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: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\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 "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 "роки тому" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/uk/settings.po b/l10n/uk/settings.po index 07f458a6bf0206f6a129539304abcc8314099213..4daa482adfd51204d2f9689bbd784bec3abdd1ca 100644 --- a/l10n/uk/settings.po +++ b/l10n/uk/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "Потрібно задати вірний пароль" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Попередження про небезпеку" -#: templates/admin.php:20 +#: 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 "Ваш каталог з даними та Ваші файли можливо доступні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати свій веб-сервер таким чином, щоб каталог data більше не був доступний, або перемістити каталог data за межі кореневого каталогу документів веб-сервера." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "Попередження при Налаштуванні" -#: templates/admin.php:34 +#: 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 "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "Будь ласка, перевірте інструкції по встановленню." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "Модуль 'fileinfo' відсутній" -#: templates/admin.php:49 +#: 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 "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "Локалізація не працює" -#: templates/admin.php:65 +#: 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 "Цей сервер ownCloud не може встановити мову системи %s. Це означає, що можуть бути проблеми з деякими символами в іменах файлів. Ми наполегливо рекомендуємо встановити необхідні пакети у вашій системі для підтримки %s." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "Інтернет-з'єднання не працює" -#: templates/admin.php:80 +#: 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 "Цей сервер ownCloud не має під'єднання до Інтернету. Це означає, що деякі функції, такі як монтування зовнішніх накопичувачів, повідомлення про оновлення або встановлення допоміжних програм не працюють. Доступ до файлів ​​віддалено та відправка повідомлень електронною поштою також може не працювати. Ми пропонуємо увімкнути під'єднання до Інтернету для даного сервера, якщо ви хочете мати всі можливості ownCloud." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Виконати одне завдання для кожної завантаженої сторінки " -#: templates/admin.php:113 +#: 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 "cron.php зареєстрований в службі webcron. Викликає cron.php сторінку в кореневому каталозі owncloud кожну хвилину по http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Використовується системний cron сервіс. Виклик cron.php файла з owncloud теки за допомогою системного cronjob раз на хвилину." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Спільний доступ" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Увімкнути API спільного доступу" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Дозволити програмам використовувати API спільного доступу" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Дозволити посилання" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Дозволити користувачам відкривати спільний доступ до елементів за допомогою посилань" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Дозволити перевідкривати спільний доступ" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Дозволити користувачам знову відкривати спільний доступ до елементів, які вже відкриті для доступу" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Дозволити користувачам відкривати спільний доступ для всіх" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "Безпека" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "Примусове застосування HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "Зобов'язати клієнтів під'єднуватись до ownCloud через шифроване з'єднання." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "Будь ласка, під'єднайтесь до цього ownCloud за допомогою HTTPS, щоб увімкнути або вимкнути використання SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Протокол" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "Рівень протоколювання" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "Більше" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "Менше" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Версія" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Ви використали %s із доступних %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Пароль" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Ваш пароль змінено" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Не вдалося змінити Ваш пароль" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Поточний пароль" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Новий пароль" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Змінити пароль" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Показати Ім'я" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Ел.пошта" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Ваша адреса електронної пошти" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Введіть адресу електронної пошти для відновлення паролю" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Мова" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Допомогти з перекладом" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -88,9 +88,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "Увага: Застосунки user_ldap та user_webdavauth не сумісні. Ви можете зіткнутися з несподіваною поведінкою. Будь ласка, зверніться до системного адміністратора, щоб відключити одну з них." +msgstr "" #: templates/settings.php:12 msgid "" @@ -221,8 +221,8 @@ msgid "Disable Main Server" msgstr "Вимкнути Головний Сервер" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "Коли увімкнуто, ownCloud буде приєднуватись лише до сервера з резервними копіями." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Вимкнути перевірку SSL сертифіката." #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Якщо з'єднання працює лише з цією опцією, імпортуйте SSL сертифікат LDAP сервера у ваший ownCloud сервер." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Поле, яке відображає Ім'я Користувача" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Атрибут LDAP, який використовується для генерації імен користувачів ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Поле, яке відображає Ім'я Групи" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Атрибут LDAP, який використовується для генерації імен груп ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/uk/user_webdavauth.po b/l10n/uk/user_webdavauth.po index 36cc099000a5894b424b40f26b9ca45703fe4050..b4c80edd14eed51962e97feaf726d6a7aa60adac 100644 --- a/l10n/uk/user_webdavauth.po +++ b/l10n/uk/user_webdavauth.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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/owncloud/language/uk/)\n" "MIME-Version: 1.0\n" @@ -25,12 +25,12 @@ msgid "WebDAV Authentication" msgstr "Аутентифікація WebDAV" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud надішле облікові дані на цей URL. Цей плагін перевірить відповідь і буде інтерпретувати HTTP коди 401 і 403 як повідомлення про недійсні повноваження, а решту відповідей як дійсні облікові дані." +msgstr "" diff --git a/l10n/ur_PK/core.po b/l10n/ur_PK/core.po index 6bd4bc1c912c34bbddf57f680171c39949828dbf..4555d21ef8f9a4e9a03375e790d9266ad5a3e7d8 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes 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:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" +msgstr[1] "" -#: 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 "" @@ -225,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "ایرر" @@ -246,123 +246,123 @@ msgstr "" msgid "Share" msgstr "" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "شئیرنگ کے دوران ایرر" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "شئیرنگ ختم کرنے کے دوران ایرر" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "اختیارات کو تبدیل کرنے کے دوران ایرر" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "اس کے ساتھ شئیر کریں" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "لنک کے ساتھ شئیر کریں" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "پاسورڈ سے محفوظ کریں" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "پاسورڈ" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "تاریخ معیاد سیٹ کریں" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "تاریخ معیاد" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "کوئی لوگ نہیں ملے۔" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "دوبارہ شئیر کرنے کی اجازت نہیں" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "شئیرنگ ختم کریں" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "ایڈٹ کر سکے" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "اسیس کنٹرول" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "نیا بنائیں" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "اپ ڈیٹ" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "ختم کریں" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "شئیر کریں" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "پاسورڈ سے محفوظ کیا گیا ہے" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" 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}" @@ -400,7 +401,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "آپ ای میل کے ذریعے اپنے پاسورڈ ری سیٹ کا لنک موصول کریں گے" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "یوزر نیم" @@ -461,11 +462,11 @@ msgstr "مدد" msgid "Access forbidden" msgstr "پہنچ کی اجازت نہیں" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "نہیں مل سکا" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +495,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "ایک ایڈمن اکاؤنٹ بنائیں" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "ایڈوانسڈ" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "ڈیٹا فولڈر" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "استعمال ہو گا" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "ڈیٹابیس یوزر" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "ڈیٹابیس پاسورڈ" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "ڈیٹابیس کا نام" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "ڈیٹابیس ٹیبل سپیس" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "ڈیٹابیس ہوسٹ" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "سیٹ اپ ختم کریں" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "لاگ آؤٹ" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "" @@ -607,7 +613,7 @@ msgstr "لاگ ان" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\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/ur_PK/files_encryption.po b/l10n/ur_PK/files_encryption.po index b082d1236b975cd90b9acdc4243aae248b260f8f..9bf9cd875cb94d39206d43f0208e53f00782f028 100644 --- a/l10n/ur_PK/files_encryption.po +++ b/l10n/ur_PK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/ur_PK/files_sharing.po b/l10n/ur_PK/files_sharing.po index 119e4cb853ffdf8473f2804d9d49b9860cbbf36a..6880222c4ce145a89ba35099537beb0eab24af9f 100644 --- a/l10n/ur_PK/files_sharing.po +++ b/l10n/ur_PK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:13+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "پاسورڈ" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:86 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "" -#: templates/public.php:44 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "" -#: templates/public.php:54 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:83 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/ur_PK/files_trashbin.po b/l10n/ur_PK/files_trashbin.po index a2b7ecb2843299f5f1a6606923d976c9d0ddcf14..7ccb9117fbdffe29bada7ac2d2200a1395ae53bd 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,44 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "ایرر" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" +msgstr[1] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/ur_PK/files_versions.po b/l10n/ur_PK/files_versions.po index 87f26d3039d1a65d364c2879b0d870f9f9ed8765..1c1c879f126c3f1a6e72a79787aa109abc0f6329 100644 --- a/l10n/ur_PK/files_versions.po +++ b/l10n/ur_PK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: ur_PK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, 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" +#: js/versions.js:7 +msgid "Versions" msgstr "" -#: history.php:69 -msgid "No old versions available" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:74 -msgid "No path specified" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: js/versions.js:6 -msgid "Versions" +#: js/versions.js:116 +msgid "No other versions available" msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/ur_PK/lib.po b/l10n/ur_PK/lib.po index 6c94b885fdac5367f0a50cf881e60706ecbc2412..4c170b1074a9396dc976603eb4f26d3116abe1ea 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-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: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\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" +msgid "today" msgstr "" #: template/functions.php:84 -#, php-format -msgid "%d hours ago" +msgid "yesterday" msgstr "" #: template/functions.php:85 -msgid "today" -msgstr "" +msgid "%n day go" +msgid_plural "%n days ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:86 -msgid "yesterday" +msgid "last month" msgstr "" #: template/functions.php:87 -#, php-format -msgid "%d days ago" -msgstr "" +msgid "%n month ago" +msgid_plural "%n months ago" +msgstr[0] "" +msgstr[1] "" #: template/functions.php:88 -msgid "last month" -msgstr "" - -#: template/functions.php:89 -#, php-format -msgid "%d months ago" -msgstr "" - -#: template/functions.php:90 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/ur_PK/settings.po b/l10n/ur_PK/settings.po index d91064c23943b110f8f21db3edcc91b3e4ef0cb7..921b8e1edf3bc10f44630187fd0a02f9e31d39d5 100644 --- a/l10n/ur_PK/settings.po +++ b/l10n/ur_PK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "پاسورڈ" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "نیا پاسورڈ" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/ur_PK/user_webdavauth.po b/l10n/ur_PK/user_webdavauth.po index d401530efb3108c444338d1aaf49ff0a547bb8e3..7640ed8ba9dc71dc3bbf97cc9c6e7e881294005c 100644 --- a/l10n/ur_PK/user_webdavauth.po +++ b/l10n/ur_PK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Urdu (Pakistan) (http://www.transifex.com/projects/p/owncloud/language/ur_PK/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/vi/core.po b/l10n/vi/core.po index f5f558c82bb4aa7537b20279505f13a54ed523d6..b8bfc91292b1cd310734aaa8f9703d3bd1cfea14 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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:293 +#: js/js.js:355 msgid "Settings" msgstr "Cài đặt" -#: js/js.js:715 +#: js/js.js:815 msgid "seconds ago" msgstr "vài giây trước" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 phút trước" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} phút trước" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 giờ trước" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} giờ trước" - -#: js/js.js:720 +#: js/js.js:818 msgid "today" msgstr "hôm nay" -#: js/js.js:721 +#: js/js.js:819 msgid "yesterday" msgstr "hôm qua" -#: js/js.js:722 -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:723 +#: js/js.js:821 msgid "last month" msgstr "tháng trước" -#: js/js.js:724 -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:725 +#: js/js.js:823 msgid "months ago" msgstr "tháng trước" -#: js/js.js:726 +#: js/js.js:824 msgid "last year" msgstr "năm trước" -#: js/js.js:727 +#: js/js.js:825 msgid "years ago" msgstr "năm trước" @@ -226,8 +222,8 @@ msgstr "Loại đối tượng không được chỉ định." #: 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "Lỗi" @@ -247,123 +243,123 @@ msgstr "Được chia sẻ" msgid "Share" msgstr "Chia sẻ" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "Lỗi trong quá trình chia sẻ" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "Lỗi trong quá trình gỡ chia sẻ" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "Lỗi trong quá trình phân quyền" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "Đã được chia sẽ với bạn và nhóm {group} bởi {owner}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "Đã được chia sẽ bởi {owner}" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "Chia sẻ với" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "Chia sẻ với liên kết" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "Mật khẩu bảo vệ" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "Mật khẩu" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "Liên kết email tới cá nhân" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "Gởi" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "Đặt ngày kết thúc" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "Ngày kết thúc" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "Chia sẻ thông qua email" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "Không tìm thấy người nào" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "Chia sẻ lại không được cho phép" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "Đã được chia sẽ trong {item} với {user}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "có thể chỉnh sửa" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "quản lý truy cập" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "tạo" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "cập nhật" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "xóa" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "chia sẻ" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "Mật khẩu bảo vệ" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "Lỗi không thiết lập ngày kết thúc" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "Lỗi cấu hình ngày kết thúc" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "Đang gởi ..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email đã được gửi" @@ -378,9 +374,10 @@ msgstr "Cập nhật không thành công . Vui lòng thông báo đến Bạn có chắc là email/tên đăng nhậ msgid "You will receive a link to reset your password via Email." msgstr "Vui lòng kiểm tra Email để khôi phục lại mật khẩu." -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "Tên đăng nhập" @@ -462,11 +459,11 @@ msgstr "Giúp đỡ" msgid "Access forbidden" msgstr "Truy cập bị cấm" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "Không tìm thấy Clound" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -495,8 +492,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "Phiên bản PHP của bạn có lỗ hổng NULL Byte attack (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "Vui lòng cập nhật bản cài đặt PHP để sử dụng ownCloud một cách an toàn." +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -516,68 +514,72 @@ msgid "" "because the .htaccess file does not work." msgstr "Thư mục và file dữ liệu của bạn có thể được truy cập từ internet bởi vì file .htaccess không hoạt động" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "Để biết thêm cách cấu hình máy chủ của bạn, xin xem tài liệu." +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "Tạo một tài khoản quản trị" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "Nâng cao" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "Thư mục dữ liệu" -#: templates/installation.php:74 +#: templates/installation.php:77 msgid "Configure the database" msgstr "Cấu hình cơ sở dữ liệu" -#: templates/installation.php:79 templates/installation.php:91 -#: templates/installation.php:102 templates/installation.php:113 -#: templates/installation.php:125 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "được sử dụng" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "Người dùng cơ sở dữ liệu" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "Mật khẩu cơ sở dữ liệu" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "Tên cơ sở dữ liệu" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "Cơ sở dữ liệu tablespace" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "Database host" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "Cài đặt hoàn tất" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s còn trống. Xem thêm thông tin cách cập nhật." -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "Đăng xuất" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "Tự động đăng nhập đã bị từ chối !" @@ -608,7 +610,7 @@ msgstr "Đăng nhập" msgid "Alternative Logins" msgstr "Đăng nhập khác" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,7 @@ msgstr "Chia sẻ" msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/fileactions.js:128 templates/index.php:93 templates/index.php:94 -msgid "Delete" -msgstr "Xóa" - -#: js/fileactions.js:194 +#: js/fileactions.js:192 msgid "Rename" msgstr "Sửa tên" @@ -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:457 -msgid "1 file uploading" -msgstr "1 tệp tin đang được tải lên" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "tệp tin đang được tải lên" @@ -201,33 +194,27 @@ msgstr "Your download is being prepared. This might take some time if the files msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" -#: js/files.js:744 templates/index.php:69 +#: js/files.js:744 templates/index.php:67 msgid "Name" msgstr "Tên" -#: js/files.js:745 templates/index.php:80 +#: js/files.js:745 templates/index.php:78 msgid "Size" msgstr "Kích cỡ" -#: js/files.js:746 templates/index.php:82 +#: js/files.js:746 templates/index.php:80 msgid "Modified" msgstr "Thay đổi" -#: js/files.js:763 -msgid "1 folder" -msgstr "1 thư mục" - -#: 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:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -286,45 +273,49 @@ msgstr "Thư mục" msgid "From link" msgstr "Từ liên kết" -#: templates/index.php:42 +#: templates/index.php:41 msgid "Deleted files" msgstr "File đã bị xóa" -#: templates/index.php:48 +#: templates/index.php:46 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/index.php:54 +#: templates/index.php:52 msgid "You don’t have write permissions here." msgstr "Bạn không có quyền ghi vào đây." -#: templates/index.php:61 +#: templates/index.php:59 msgid "Nothing in here. Upload something!" msgstr "Không có gì ở đây .Hãy tải lên một cái gì đó !" -#: templates/index.php:75 +#: templates/index.php:73 msgid "Download" msgstr "Tải về" -#: templates/index.php:87 templates/index.php:88 +#: templates/index.php:85 templates/index.php:86 msgid "Unshare" msgstr "Bỏ chia sẻ" -#: templates/index.php:107 +#: 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" -#: 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 "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ủ ." -#: templates/index.php:114 +#: templates/index.php:112 msgid "Files are being scanned, please wait." msgstr "Tập tin đang được quét ,vui lòng chờ." -#: templates/index.php:117 +#: templates/index.php:115 msgid "Current scanning" msgstr "Hiện tại đang quét" diff --git a/l10n/vi/files_encryption.po b/l10n/vi/files_encryption.po index d075fbbae3b579b1967753bd3248f92ef6e7d6dd..f50c77440eb3bf1209d11934b1f568ddedec3cf0 100644 --- a/l10n/vi/files_encryption.po +++ b/l10n/vi/files_encryption.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -68,9 +68,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/vi/files_sharing.po b/l10n/vi/files_sharing.po index 4bcdd783ac74f080a6bd10639c1de2ba6363d1f1..47ce6adaf751122865ebb0979ae64fc3092d0c66 100644 --- a/l10n/vi/files_sharing.po +++ b/l10n/vi/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "Mật khẩu" msgid "Submit" msgstr "Xác nhận" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s đã chia sẻ thư mục %s với bạn" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s đã chia sẻ tập tin %s với bạn" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "Tải về" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "Tải lên" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "Hủy upload" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "Không có xem trước cho" diff --git a/l10n/vi/files_trashbin.po b/l10n/vi/files_trashbin.po index 96aa6aaf2b62dba8d560f40fe671aebeb2f49abe..c0a3d67ec4a82e0744553f9e65ca18300a599d82 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "Không thể óa %s vĩnh viễn" msgid "Couldn't restore %s" msgstr "Không thể khôi phục %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "thực hiện phục hồi" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "Lỗi" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "xóa file vĩnh viễn" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "Xóa vĩnh vễn" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "Tên" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "Đã xóa" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 thư mục" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} thư mục" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 tập tin" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} tập tin" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/vi/files_versions.po b/l10n/vi/files_versions.po index ddb86932e17190f540ffd72a503e907f19a1e2e3..502dfac96b1d8bd8b04878db1947296019e805e6 100644 --- a/l10n/vi/files_versions.po +++ b/l10n/vi/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "Không thể khôi phục: %s" -#: history.php:40 -msgid "success" -msgstr "thành công" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "File %s đã được khôi phục về phiên bản %s" - -#: history.php:49 -msgid "failure" -msgstr "Thất bại" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "File %s không thể khôi phục về phiên bản %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "Phiên bản" -#: history.php:69 -msgid "No old versions available" -msgstr "Không có phiên bản cũ nào" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "Không chỉ ra đường dẫn rõ ràng" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "Phiên bản" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "Khôi phục một file về phiên bản trước đó bằng cách click vào nút Khôi phục tương ứng" +#: js/versions.js:149 +msgid "Restore" +msgstr "Khôi phục" diff --git a/l10n/vi/lib.po b/l10n/vi/lib.po index 83319251fa0824342f4220942da6a2f1f97f2e86..e7c2745b8dd769524ec14f85cfddb97e35cf1ddf 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-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: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -34,19 +34,15 @@ 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 "" -#: defaults.php:33 +#: defaults.php:35 msgid "web services under your control" msgstr "dịch vụ web dưới sự kiểm soát của bạn" @@ -210,54 +206,46 @@ 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" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/vi/settings.po b/l10n/vi/settings.po index cc15faec290ac7abf38d8f474eabd9913ef7f3a4..e0da3b1861681a7112081c155a84edb3b273dbcd 100644 --- a/l10n/vi/settings.po +++ b/l10n/vi/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "__Ngôn ngữ___" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "Cảnh bảo bảo mật" -#: templates/admin.php:20 +#: 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 "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ mạng. Tập tin .htaccess do ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ web để thư mục dữ liệu không còn bị truy cập hoặc bạn nên di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ." +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "Thực thi tác vụ mỗi khi trang được tải" -#: templates/admin.php:113 +#: 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 "cron.php đã được đăng ký tại một dịch vụ webcron. Gọi trang cron.php mỗi phút một lần thông qua giao thức http." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "Sử dụng dịch vụ cron của hệ thống. Gọi tệp tin cron.php mỗi phút một lần." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "Chia sẻ" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "Bật chia sẻ API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "Cho phép các ứng dụng sử dụng chia sẻ API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "Cho phép liên kết" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "Cho phép người dùng chia sẻ công khai các mục bằng các liên kết" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "Cho phép chia sẻ lại" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "Cho phép người dùng chia sẻ lại những mục đã được chia sẻ" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "Cho phép người dùng chia sẻ với bất cứ ai" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "Chỉ cho phép người dùng chia sẻ với những người dùng trong nhóm của họ" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "Log" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "hơn" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "ít" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "Phiên bản" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "Bạn đã sử dụng %s có sẵn %s " -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "Mật khẩu" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "Mật khẩu của bạn đã được thay đổi." -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "Không thể đổi mật khẩu" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "Mật khẩu cũ" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "Mật khẩu mới" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "Đổi mật khẩu" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "Tên hiển thị" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "Email" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "Email của bạn" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "Nhập địa chỉ email của bạn để khôi phục lại mật khẩu" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "Ngôn ngữ" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "Hỗ trợ dịch thuật" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,8 +221,8 @@ msgid "Disable Main Server" msgstr "Tắt máy chủ chính" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "Tắt xác thực chứng nhận SSL" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "Nếu kết nối chỉ hoạt động với tùy chọn này, vui lòng import LDAP certificate SSL trong máy chủ ownCloud của bạn." +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "Hiển thị tên người sử dụng" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "Các thuộc tính LDAP sử dụng để tạo tên người dùng ownCloud." +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "Hiển thị tên nhóm" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "Các thuộc tính LDAP sử dụng để tạo các nhóm ownCloud." +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/vi/user_webdavauth.po b/l10n/vi/user_webdavauth.po index bbcb7346fe5259dd5b3334718d4a92b7a458e9f9..a4491d6020ce5c7be2e7f8eb89e35596cacd698b 100644 --- a/l10n/vi/user_webdavauth.po +++ b/l10n/vi/user_webdavauth.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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Vietnamese (http://www.transifex.com/projects/p/owncloud/language/vi/)\n" "MIME-Version: 1.0\n" @@ -24,12 +24,12 @@ msgid "WebDAV Authentication" msgstr "Xác thực WebDAV" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud sẽ gửi chứng thư người dùng tới URL này. Tính năng này kiểm tra trả lời và sẽ hiểu mã 401 và 403 của giao thức HTTP là chứng thư không hợp lệ, và mọi trả lời khác được coi là hợp lệ." +msgstr "" diff --git a/l10n/zh_CN.GB2312/core.po b/l10n/zh_CN.GB2312/core.po index fc9d49e79a6387535ed57db6c6b9f46e7e27dabf..8e8f62f373da5b20dba6cad14e43709de58a2a28 100644 --- a/l10n/zh_CN.GB2312/core.po +++ b/l10n/zh_CN.GB2312/core.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# aivier , 2013 # fkj , 2013 +# Martin Liu , 2013 # hyy0591 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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" @@ -22,7 +24,7 @@ msgstr "" #: ajax/share.php:97 #, php-format msgid "%s shared »%s« with you" -msgstr "" +msgstr "%s 与您共享了 »%s« " #: ajax/vcategories/add.php:26 ajax/vcategories/edit.php:25 msgid "Category type not provided." @@ -47,7 +49,7 @@ msgstr "未选择对象类型。" #: ajax/vcategories/removeFromFavorites.php:30 #, php-format msgid "%s ID not provided." -msgstr "" +msgstr "%s 没有提供 ID" #: ajax/vcategories/addToFavorites.php:35 #, php-format @@ -139,59 +141,55 @@ msgstr "十一月" msgid "December" msgstr "十二月" -#: js/js.js:293 +#: js/js.js:355 msgid "Settings" msgstr "设置" -#: js/js.js:715 +#: js/js.js:812 msgid "seconds ago" msgstr "秒前" -#: js/js.js:716 -msgid "1 minute ago" -msgstr "1 分钟前" - -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分钟前" - -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1小时前" +#: js/js.js:813 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "%n 分钟以前" -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours}小时前" +#: js/js.js:814 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "%n 小时以前" -#: js/js.js:720 +#: js/js.js:815 msgid "today" msgstr "今天" -#: js/js.js:721 +#: js/js.js:816 msgid "yesterday" msgstr "昨天" -#: js/js.js:722 -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:723 +#: js/js.js:818 msgid "last month" msgstr "上个月" -#: js/js.js:724 -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:725 +#: js/js.js:820 msgid "months ago" msgstr "月前" -#: js/js.js:726 +#: js/js.js:821 msgid "last year" msgstr "去年" -#: js/js.js:727 +#: js/js.js:822 msgid "years ago" msgstr "年前" @@ -205,7 +203,7 @@ msgstr "取消" #: js/oc-dialogs.js:141 js/oc-dialogs.js:200 msgid "Error loading file picker template" -msgstr "" +msgstr "加载文件选取模板出错" #: js/oc-dialogs.js:164 msgid "Yes" @@ -227,8 +225,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "出错" @@ -248,123 +246,123 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享出错" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "取消分享出错" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "变更权限出错" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "由 {owner} 与您和 {group} 群组分享" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "由 {owner} 与您分享" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "分享" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "分享链接" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "密码保护" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "密码" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" -msgstr "" +msgstr "允许公众上传" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "面向个人的电子邮件链接" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "发送" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "设置失效日期" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "失效日期" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "通过电子邮件分享:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "查无此人" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "不允许重复分享" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "已经与 {user} 在 {item} 中分享" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "取消分享" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "可编辑" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "访问控制" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "创建" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "更新" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "删除" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "分享" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密码保护" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "取消设置失效日期出错" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "设置失效日期出错" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "发送中……" -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "电子邮件已发送" @@ -379,9 +377,10 @@ msgstr "升级失败。请向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 "" +msgstr "重置密码的连接已经通过邮件到您的邮箱。
如果你没有收到邮件,可能是由于要再等一下,或者检查一下您的垃圾邮件夹。
如果还是没有收到,请联系您的系统管理员。" #: lostpassword/templates/lostpassword.php:12 msgid "Request failed!
Did you make sure your email/username was right?" -msgstr "" +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 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "用户名" @@ -413,11 +412,11 @@ 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 "您的文件是加密的。如果您还没有启用恢复密钥,在重置了密码后,您的数据讲无法恢复回来。如果您不确定是否这么做,请联系您的管理员在继续这个操作。你却是想继续么?" #: lostpassword/templates/lostpassword.php:24 msgid "Yes, I really want to reset my password now" -msgstr "" +msgstr "是的,我想现在重置密码。" #: lostpassword/templates/lostpassword.php:27 msgid "Request reset" @@ -463,11 +462,11 @@ msgstr "帮助" msgid "Access forbidden" msgstr "禁止访问" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "云 没有被找到" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -476,7 +475,7 @@ msgid "" "View it: %s\n" "\n" "Cheers!" -msgstr "" +msgstr "你好!⏎\n⏎\n温馨提示: %s 与您共享了 %s 。⏎\n查看: %s⏎\n⏎\n祝顺利!" #: templates/edit_categories_dialog.php:4 msgid "Edit categories" @@ -493,11 +492,12 @@ msgstr "安全警告" #: templates/installation.php:25 msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" -msgstr "" +msgstr "您的PHP版本是会受到NULL字节漏洞攻击的(CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "请升级您的PHP版本以稳定运行ownCloud。" +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "请安全地升级您的PHP版本到 %s 。" #: templates/installation.php:32 msgid "" @@ -517,68 +517,72 @@ msgid "" "because the .htaccess file does not work." msgstr "因为.htaccess文件无效,您的数据文件夹及文件可能可以在互联网上访问。" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the
documentation." -msgstr "要获得大概如何配置您的服务器的相关信息,参见说明文档。" +"href=\"%s\" target=\"_blank\">documentation." +msgstr "有关如何正确地配置您的服务器,请查看 文档。" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "建立一个 管理帐户" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "进阶" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "数据存放文件夹" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "将会使用" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "数据库用户名" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "数据库表格空间" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "完成安装" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." -msgstr "" +msgstr "%s 是可用的。获取更多关于升级的信息。" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "注销" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "更多应用" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" @@ -609,12 +613,12 @@ msgstr "登陆" msgid "Alternative Logins" msgstr "备选登录" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

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

Cheers!" -msgstr "" +msgstr "你好!

温馨提示: %s 与您共享了 %s 。

\n查看: %s

祝顺利!" #: templates/part.pagenavi.php:3 msgid "prev" diff --git a/l10n/zh_CN.GB2312/files.po b/l10n/zh_CN.GB2312/files.po index f04f187b9fa45e29fd4921bbf9ed999f578e8aca..1426e0d68c77cf50fa961930fe012c3147353c5f 100644 --- a/l10n/zh_CN.GB2312/files.po +++ b/l10n/zh_CN.GB2312/files.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# aivier , 2013 # hlx98007 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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,11 +122,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 "重命名" @@ -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:457 -msgid "1 file uploading" -msgstr "1 个文件正在上传" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "个文件正在上传" @@ -201,33 +195,27 @@ msgstr "正在下载,可能会花点时间,跟文件大小有关" msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "不正确文件夹名。Shared是保留名,不能使用。" -#: 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 "1 个文件夹" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 个文件" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n 个文件夹" -#: 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 @@ -286,45 +274,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/zh_CN.GB2312/files_encryption.po b/l10n/zh_CN.GB2312/files_encryption.po index ea02882e9b7a1b197042d6910c32c42b39fdacb6..3521b46141c011746eb80e5b96160ded760ff17b 100644 --- a/l10n/zh_CN.GB2312/files_encryption.po +++ b/l10n/zh_CN.GB2312/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_CN.GB2312/files_sharing.po b/l10n/zh_CN.GB2312/files_sharing.po index 9894200717adf00b2bc14e68295b511166a5a7b5..e8248b6133e0d1148a2faa98d88d1f0eefa38124 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -29,28 +30,52 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "对不起,这个链接看起来是错误的。" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "原因可能是:" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "项目已经移除" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "链接已过期" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "分享已经被禁用" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "欲了解更多信息,请联系将此链接发送给你的人。" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 与您分享了文件夹 %s" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 与您分享了文件 %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下载" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上传" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "没有预览可用于" diff --git a/l10n/zh_CN.GB2312/files_trashbin.po b/l10n/zh_CN.GB2312/files_trashbin.po index 637de9a4ce6865e06906d30ae448bb008a204f99..cef04c5439fa0bcdc89689159b88cbf336ac2a7e 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "出错" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "永久删除" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "名称" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 个文件夹" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "%n 个文件夹" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} 个文件夹" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "%n 个文件" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 个文件" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} 个文件" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" @@ -73,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" @@ -81,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 c1ffcfb75c3dab5151c2d431feb2c4d8a1131d9d..faa83e8fc6c02171435bcbec1a535f4b84e22e82 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-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+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" @@ -17,41 +18,27 @@ msgstr "" "Language: zh_CN.GB2312\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "无法恢复:%s" -#: history.php:40 -msgid "success" -msgstr "成功" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "文件 %s 已被恢复为 %s 的版本" - -#: history.php:49 -msgid "failure" -msgstr "失败" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "文件 %s 无法恢复为 %s 的版本" +#: js/versions.js:7 +msgid "Versions" +msgstr "版本" -#: history.php:69 -msgid "No old versions available" -msgstr "没有可用的旧版本" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "无法恢复文件 {file} 到 版本 {timestamp}。" -#: history.php:74 -msgid "No path specified" -msgstr "未指定路径" +#: js/versions.js:79 +msgid "More versions..." +msgstr "更多版本" -#: js/versions.js:6 -msgid "Versions" -msgstr "版本" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "没有其他可用版本" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "请点击“恢复”按钮把文件恢复到早前的版本" +#: js/versions.js:149 +msgid "Restore" +msgstr "恢复" diff --git a/l10n/zh_CN.GB2312/lib.po b/l10n/zh_CN.GB2312/lib.po index 63fdc2e17b5af35cbf44da5da5f5e927e3cd7f3a..a996e9d467c52f85014dc0f1333642f22e87c9a4 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-07-24 01:55-0400\n" -"PO-Revision-Date: 2013-07-24 05:55+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,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 "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 "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_CN.GB2312/settings.po b/l10n/zh_CN.GB2312/settings.po index b5aa2a0b1a1a2d53d07db3f3acfa6af615ffdb59..fe15fef6a9965ae3f5940aec30777c3008e686e5 100644 --- a/l10n/zh_CN.GB2312/settings.po +++ b/l10n/zh_CN.GB2312/settings.po @@ -4,14 +4,15 @@ # # Translators: # hlx98007 , 2013 +# Martin Liu , 2013 # hyy0591 , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -171,175 +172,173 @@ msgstr "请填写有效密码" msgid "__language_name__" msgstr "Chinese" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:20 +#: 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." +"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." msgstr "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "配置注意" -#: templates/admin.php:34 +#: 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 "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。" -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "请双击安装向导。" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "模块“fileinfo”丢失。" -#: templates/admin.php:49 +#: 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 "PHP 模块“fileinfo”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。" -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "区域设置未运作" -#: templates/admin.php:65 +#: 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 "ownCloud 服务器不能把系统区域设置到 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的包来支持“%s”。" +"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 "ownCloud 服务器不能把系统区域设置为 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的区域/语言支持包来支持 “%s” 。" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "互联网连接未运作" -#: templates/admin.php:80 +#: 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 "服务器没有可用的Internet连接。这意味着像挂载外部储存、更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。建议开启服务器的英特网网络。" - -#: templates/admin.php:94 +"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." +msgstr "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。" + +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "在每个页面载入时执行一项任务" -#: templates/admin.php:113 +#: 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 "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "分享" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "开启分享API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "允许应用使用分享API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "允许用户通过链接共享内容" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "允许公众账户上传" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "允许其它人向用户的公众共享文件夹里上传文件" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "允许转帖" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "允许用户再次共享已共享的内容" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "允许用户向任何人分享" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "只允许用户向所在群组中的其他用户分享" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "安全" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "强制HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "强制客户端通过加密连接与ownCloud连接" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "强制客户端通过加密连接与%s连接" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "请先使用HTTPS访问本站以设置强制SSL的开关。" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "请通过HTTPS协议连接到 %s,需要启用或者禁止强制SSL的开关。" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "日志" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "日志等级" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "更多" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "更少" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "版本" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "您已使用%s/%s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "您的密码以变更" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "不能改变你的密码" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "现在的密码" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "新密码" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "改变密码" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "你的email地址" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "输入一个邮箱地址以激活密码恢复功能" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "语言" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Chinese (China) (GB2312) (http://www.transifex.com/projects/p/owncloud/language/zh_CN.GB2312/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,10 +241,11 @@ msgid "Turn off SSL certificate validation." msgstr "关闭 SSL 证书校验。" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "如果只有使用此选项才能连接,请导入 LDAP 服务器的 SSL 证书到您的 ownCloud 服务器。" +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -267,8 +268,8 @@ msgid "User Display Name Field" msgstr "用户显示名称字段" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "用于生成用户的 ownCloud 名称的 LDAP 属性。" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -291,8 +292,8 @@ msgid "Group Display Name Field" msgstr "群组显示名称字段" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "用于生成群组的 ownCloud 名称的 LDAP 属性。" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/zh_CN.GB2312/user_webdavauth.po b/l10n/zh_CN.GB2312/user_webdavauth.po index 0956f14fc261c1b22098e394d31bee65640a3dd8..bcfa856ac0caa13f37829454f8b31e620f4adf37 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-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+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,15 +20,15 @@ msgstr "" #: templates/settings.php:3 msgid "WebDAV Authentication" -msgstr "" +msgstr "WebDAV 验证" #: templates/settings.php:4 -msgid "URL: " -msgstr "" +msgid "Address: " +msgstr "地址:" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/zh_CN/core.po b/l10n/zh_CN/core.po index 8168a295a8209f0106e11addc3d951b383026b0a..e77bfe2828edba62ff0136fe493ec2f3ef6c5e21 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "{minutes} 分钟前" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1小时前" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} 小时前" - -#: 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 "{days} 天前" +#: 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 "{months} 月前" +#: 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 "年前" @@ -227,8 +223,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "错误" @@ -248,123 +244,123 @@ msgstr "已共享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "共享时出错" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "取消共享时出错" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "修改权限时出错" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner} 共享给您及 {group} 组" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} 与您共享" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "分享之" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "共享链接" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "密码保护" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "密码" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "允许公开上传" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "发送链接到个人" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "发送" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "设置过期日期" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "过期日期" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "通过Email共享" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "未找到此人" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "不允许二次共享" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "在 {item} 与 {user} 共享。" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "取消共享" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "可以修改" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "访问控制" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "创建" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "更新" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "删除" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "共享" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密码已受保护" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "取消设置过期日期时出错" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "设置过期日期时出错" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "正在发送..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "邮件已发送" @@ -379,9 +375,10 @@ msgstr "更新不成功。请汇报将此问题汇报给 您确定您的邮箱/用户名是正确的?" msgid "You will receive a link to reset your password via Email." msgstr "您将会收到包含可以重置密码链接的邮件。" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "用户名" @@ -463,11 +460,11 @@ msgstr "帮助" msgid "Access forbidden" msgstr "访问禁止" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未找到云" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +493,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "你的PHP版本容易受到空字节攻击 (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "为保证安全使用 ownCloud 请更新您的PHP。" +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "" #: templates/installation.php:32 msgid "" @@ -517,68 +515,72 @@ msgid "" "because the .htaccess file does not work." msgstr "您的数据目录和文件可能可以直接被互联网访问,因为 .htaccess 并未正常工作。" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "关于如何配置服务器,请参见 此文档。" +"href=\"%s\" target=\"_blank\">documentation." +msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "创建管理员账号" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "高级" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "数据目录" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "将被使用" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "数据库用户" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "数据库密码" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "数据库名" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "数据库表空间" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "数据库主机" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "安装完成" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s 可用。获取更多关于如何升级的信息。" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "注销" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自动登录被拒绝!" @@ -609,7 +611,7 @@ msgstr "登录" msgid "Alternative Logins" msgstr "其他登录方式" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -123,11 +123,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 "重命名" @@ -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:457 -msgid "1 file uploading" -msgstr "1个文件上传中" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "文件上传中" @@ -203,33 +196,27 @@ msgstr "下载正在准备中。如果文件较大可能会花费一些时间。 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "无效文件夹名。'共享' 是 Owncloud 预留的文件夹名。" -#: 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 "1个文件夹" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 个文件夹" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 个文件" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -288,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/zh_CN/files_encryption.po b/l10n/zh_CN/files_encryption.po index 08588336e19018a604d6cdff64fcc09147a876bb..14f2685c7bdb765730cc4a19fac5bb7646d4637a 100644 --- a/l10n/zh_CN/files_encryption.po +++ b/l10n/zh_CN/files_encryption.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -70,9 +70,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_CN/files_sharing.po b/l10n/zh_CN/files_sharing.po index 8b9f31ec904a2ae5ce9665f3536bacd01b7a9aed..013eee53c4edfc0a49c0031c575261320137b500 100644 --- a/l10n/zh_CN/files_sharing.po +++ b/l10n/zh_CN/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "密码" msgid "Submit" msgstr "提交" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s与您共享了%s文件夹" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s与您共享了%s文件" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下载" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上传" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上传" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "没有预览" diff --git a/l10n/zh_CN/files_trashbin.po b/l10n/zh_CN/files_trashbin.po index c0495aff7086eb74e7c21ac3ebcd26441e7fc7b6..9be866b5f3edded6f62e38052f36f5135db0b5fc 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "无法彻底删除文件%s" msgid "Couldn't restore %s" msgstr "无法恢复%s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "执行恢复操作" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "错误" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "彻底删除文件" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "永久删除" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "名称" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "已删除" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1个文件夹" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} 个文件夹" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 个文件" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} 个文件" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/zh_CN/files_versions.po b/l10n/zh_CN/files_versions.po index cc566f1c466708570f2e8bf1464ce60bf366a428..e94009a873f3947e81801dd68b251729e0ef44e2 100644 --- a/l10n/zh_CN/files_versions.po +++ b/l10n/zh_CN/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "无法恢复: %s" -#: history.php:40 -msgid "success" -msgstr "成功" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "文件 %s 已被恢复到历史版本 %s" - -#: history.php:49 -msgid "failure" -msgstr "失败" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "文件 %s 无法被恢复到历史版本 %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "版本" -#: history.php:69 -msgid "No old versions available" -msgstr "该文件没有历史版本" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "未指定路径" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "版本" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "点击恢复按钮可将文件恢复到之前的版本" +#: js/versions.js:149 +msgid "Restore" +msgstr "恢复" diff --git a/l10n/zh_CN/lib.po b/l10n/zh_CN/lib.po index 35a0efd7f0288cbd07edbdd3aa38561e1d77d62a..79efb5ea2f005e5687482e2c032ddac6f9f4b6b4 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-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: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,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服务" @@ -211,54 +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] "" #: 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 "年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_CN/settings.po b/l10n/zh_CN/settings.po index a92c4759768aca2b980c0776aab0b361cc9752d1..d196a8a788fde25785169348af36646449b431d6 100644 --- a/l10n/zh_CN/settings.po +++ b/l10n/zh_CN/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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -172,175 +172,173 @@ msgstr "必须提供合法的密码" msgid "__language_name__" msgstr "简体中文" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "安全警告" -#: templates/admin.php:20 +#: 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 "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。" +"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." +msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "设置警告" -#: templates/admin.php:34 +#: 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 "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏." -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." -msgstr "请认真检查安装指南." +msgid "Please double check the installation guides." +msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "模块'文件信息'丢失" -#: templates/admin.php:49 +#: 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 "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果." -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "本地化无法工作" -#: templates/admin.php:65 +#: 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 "此ownCloud服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s" +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "因特网连接无法工作" -#: templates/admin.php:80 +#: 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 "此ownCloud服务器上没有可用的因特网连接. 这意味着某些特性例如挂载外部存储器, 提醒更新或安装第三方应用无法工作. 从远程访问文件和发送提醒电子邮件可能也无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接." - -#: templates/admin.php:94 +"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." +msgstr "" + +#: templates/admin.php:92 msgid "Cron" msgstr "计划任务" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "每个页面加载后执行一个任务" -#: templates/admin.php:113 +#: 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 "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件" +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "共享" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "启用共享API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "允许应用软件使用共享API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "允许链接" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "允许用户使用连接公开共享项目" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "允许再次共享" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "允许用户将共享给他们的项目再次共享" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "允许用户向任何人共享" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "允许用户只向同组用户共享" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "安全" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "强制使用 HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "强制客户端通过加密连接连接到 ownCloud。" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "请经由HTTPS连接到这个ownCloud实例来启用或禁用强制SSL." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "日志" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "日志级别" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "更多" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "更少" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "版本" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s
of the available %s" msgstr "你已使用 %s,有效空间 %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密码" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "密码已修改" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "无法修改密码" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "当前密码" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "新密码" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "修改密码" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "显示名称" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "电子邮件" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "您的电子邮件" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "填写电子邮件地址以启用密码恢复功能" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "语言" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "帮助翻译" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -89,9 +89,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "警告:应用 user_ldap 和 user_webdavauth 不兼容。您可能遭遇未预料的行为。请垂询您的系统管理员禁用其中一个。" +msgstr "" #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "禁用主服务器" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "当开启后,ownCloud 将仅连接到镜像服务器。" +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "关闭SSL证书验证" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "如果链接仅在此选项时可用,在您的ownCloud服务器中导入LDAP服务器的SSL证书。" +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "用户显示名称字段" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "用来生成用户的ownCloud名称的 LDAP属性" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -292,8 +293,8 @@ msgid "Group Display Name Field" msgstr "组显示名称字段" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." -msgstr "用来生成组的ownCloud名称的LDAP属性" +msgid "The LDAP attribute to use to generate the groups's display name." +msgstr "" #: templates/settings.php:87 msgid "Base Group Tree" @@ -353,13 +354,13 @@ msgid "" "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 "默认情况下内部用户名具有唯一识别属性来确保用户名的唯一性和属性不用转换。内部用户名有严格的字符限制,只允许使用 [ a-zA-Z0-9_.@- ]。其他字符会被ASCII码取代或者被活力。当冲突时会增加或者减少一个数字。内部用户名被用于内部识别用户,同时也作为ownCloud中用户根文件夹的默认名。也作为远程URLs的一部分,比如为了所有的*DAV服务。在这种设置下,默认行为可以被超越。实现一个类似的行为,owncloud 5输入用户的显示名称属性在以下领域之前。让它空着的默认行为。更改只对新映射的影响(增加)的LDAP用户。" +"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." +msgstr "" #: templates/settings.php:103 msgid "Internal Username Attribute:" @@ -371,14 +372,14 @@ msgstr "超越UUID检测" #: 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 " +"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 behaviour. " +" 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 "默认ownCloud自动检测UUID属性。UUID属性用来无误的识别LDAP用户和组。同时内部用户名也基于UUID创建,如果没有上述的指定。也可以超越设置直接指定一种属性。但一定要确保指定的属性取得的用户和组是唯一的。默认行为空。变更基于新映射(增加)LDAP用户和组才会生效。" +msgstr "" #: templates/settings.php:106 msgid "UUID Attribute:" @@ -390,18 +391,17 @@ msgstr "用户名-LDAP用户映射" #: 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 "ownCloud使用用户名存储和分配数据(元)。为了准确地识别和确认用户,每个用户都有一个内部用户名。需要从ownCloud用户名映射到LDAP用户。创建的用户名映射到LDAP用户的UUID。此外,DN是缓存以及减少LDAP交互,但它不用于识别。如果DN变化,ownCloud也会变化。内部ownCloud名在ownCloud的各处使用。清除映射将一片混乱。清除映射不是常用的配置,它影响到所有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." +msgstr "" #: templates/settings.php:109 msgid "Clear Username-LDAP User Mapping" diff --git a/l10n/zh_CN/user_webdavauth.po b/l10n/zh_CN/user_webdavauth.po index 403b5b0582243009398ebe09cf9c8d941e404853..c3a8727e4b6eeec499f850ccf695f574637536f2 100644 --- a/l10n/zh_CN/user_webdavauth.po +++ b/l10n/zh_CN/user_webdavauth.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-02 15:33+0200\n" -"PO-Revision-Date: 2013-07-01 08:00+0000\n" -"Last-Translator: modokwang \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" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/owncloud/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -27,12 +27,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV 认证" #: templates/settings.php:4 -msgid "URL: " -msgstr "地址:" +msgid "Address: " +msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud 将会发送用户的身份到此 URL。这个插件检查返回值并且将 HTTP 状态编码 401 和 403 解释为非法身份,其他所有返回值为合法身份。" +msgstr "" diff --git a/l10n/zh_HK/core.po b/l10n/zh_HK/core.po index 5deae49e5993e2b07a507c3087cfa547ce93c7aa..8c3d1f0833b561e272d033ce6dc22f75b3e40a70 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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:717 -msgid "{minutes} minutes ago" -msgstr "" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: 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 "" @@ -225,8 +221,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "錯誤" @@ -246,123 +242,123 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享時發生錯誤" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "取消分享時發生錯誤" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "更改權限時發生錯誤" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "{owner}與你及群組的分享" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner}與你的分享" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "分享" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "以連結分享" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "密碼" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "傳送" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "設定分享期限" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "分享期限" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "以電郵分享" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "找不到" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "取消分享" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "新增" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "更新" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "刪除" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "分享" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "密碼保護" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "傳送中" -#: js/share.js:663 +#: 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 @@ -400,7 +397,7 @@ msgstr "" msgid "You will receive a link to reset your password via Email." msgstr "你將收到一封電郵" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "用戶名稱" @@ -461,11 +458,11 @@ msgstr "幫助" msgid "Access forbidden" msgstr "" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未找到Cloud" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -494,7 +491,8 @@ 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." +#, php-format +msgid "Please update your PHP installation to use %s securely." msgstr "" #: templates/installation.php:32 @@ -515,68 +513,72 @@ msgid "" "because the .htaccess file does not work." msgstr "" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." +"href=\"%s\" target=\"_blank\">documentation." msgstr "" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "建立管理員帳戶" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "進階" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "將被使用" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "資料庫帳戶" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "登出" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動登入被拒" @@ -607,7 +609,7 @@ msgstr "登入" msgid "Alternative Logins" msgstr "" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\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:457 -msgid "1 file uploading" -msgstr "" +#: js/filelist.js:453 +msgid "Uploading %n file" +msgid_plural "Uploading %n files" +msgstr[0] "" -#: 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:765 -msgid "{count} folders" -msgstr "{}文件夾" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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/zh_HK/files_encryption.po b/l10n/zh_HK/files_encryption.po index 7a7dd9fef9c2e7adf1d73b606bfe9ae0b838deb2..11cc05eff70484ab8cfea5aa087526d94366982b 100644 --- a/l10n/zh_HK/files_encryption.po +++ b/l10n/zh_HK/files_encryption.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -67,9 +67,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 diff --git a/l10n/zh_HK/files_sharing.po b/l10n/zh_HK/files_sharing.po index 71a63b6ac2b7d6a74e53e8755172233b2a508927..b0da2eac01a46dc2d0d41d2081308c54294f4ce9 100644 --- a/l10n/zh_HK/files_sharing.po +++ b/l10n/zh_HK/files_sharing.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -29,28 +29,52 @@ msgstr "密碼" msgid "Submit" msgstr "" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "" -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下載" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上傳" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "" diff --git a/l10n/zh_HK/files_trashbin.po b/l10n/zh_HK/files_trashbin.po index 76520fc0f99f351b9ff48d9f8ef15e7693607f01..31ad547f9b1d93c9ce4c47e4098df9fa6bcad404 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,44 +27,42 @@ msgstr "" msgid "Couldn't restore %s" msgstr "" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "錯誤" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "名稱" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 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:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:198 -msgid "{count} files" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" msgstr "" #: templates/index.php:9 diff --git a/l10n/zh_HK/files_versions.po b/l10n/zh_HK/files_versions.po index dd784928453f287ac939cd41dc7326283228cbeb..bbea55ca73bf53048d639e2bbd95e5ce47d92003 100644 --- a/l10n/zh_HK/files_versions.po +++ b/l10n/zh_HK/files_versions.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\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" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -17,41 +17,27 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "" -#: history.php:40 -msgid "success" -msgstr "成功" +#: js/versions.js:7 +msgid "Versions" +msgstr "版本" -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." msgstr "" -#: history.php:49 -msgid "failure" -msgstr "失敗" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" +#: js/versions.js:79 +msgid "More versions..." msgstr "" -#: history.php:69 -msgid "No old versions available" -msgstr "沒有以往版本" - -#: history.php:74 -msgid "No path specified" +#: js/versions.js:116 +msgid "No other versions available" 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" +#: js/versions.js:149 +msgid "Restore" msgstr "" diff --git a/l10n/zh_HK/lib.po b/l10n/zh_HK/lib.po index e6c8651e5c8ebe0e7c59565df384cad4e0648d4a..f9da45cb7cf4700e80516c8c9a63669b884b2fe7 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-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: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\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/zh_HK/settings.po b/l10n/zh_HK/settings.po index 4dc84b81ecd8238274f4e4c6c0b11d855e5ee99e..ec3fc03477f78769ac26bf0b82204d64910a6ba3 100644 --- a/l10n/zh_HK/settings.po +++ b/l10n/zh_HK/settings.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\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" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -169,175 +169,173 @@ msgstr "" msgid "__language_name__" msgstr "" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "" -#: templates/admin.php:20 +#: 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." +"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." msgstr "" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "" -#: templates/admin.php:34 +#: 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:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "" -#: templates/admin.php:49 +#: 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:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "" -#: templates/admin.php:65 +#: 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." +"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 "" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "" -#: templates/admin.php:80 +#: 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." +"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." msgstr "" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "" -#: templates/admin.php:113 +#: 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." +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." msgstr "" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." msgstr "" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" msgstr "" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" msgstr "" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." msgstr "" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." msgstr "" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "新密碼" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "電郵" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -88,7 +88,7 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." msgstr "" @@ -221,7 +221,7 @@ msgid "Disable Main Server" msgstr "" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." +msgid "Only connect to the replica server." msgstr "" #: templates/settings.php:76 @@ -241,9 +241,10 @@ msgid "Turn off SSL certificate validation." msgstr "" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." +"certificate in your %s server." msgstr "" #: templates/settings.php:78 @@ -267,7 +268,7 @@ msgid "User Display Name Field" msgstr "" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." +msgid "The LDAP attribute to use to generate the user's display name." msgstr "" #: templates/settings.php:84 @@ -291,7 +292,7 @@ msgid "Group Display Name Field" msgstr "" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -352,12 +353,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -370,12 +371,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -389,17 +390,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/zh_HK/user_webdavauth.po b/l10n/zh_HK/user_webdavauth.po index 7990321325c5735ba1cbec8813d94d6cffe3a331..8751a8294aaf1d555ed4d32a5658a9dd64e7102c 100644 --- a/l10n/zh_HK/user_webdavauth.po +++ b/l10n/zh_HK/user_webdavauth.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-06-15 01:59+0200\n" -"PO-Revision-Date: 2013-06-15 00:00+0000\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" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/projects/p/owncloud/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -22,12 +22,12 @@ msgid "WebDAV Authentication" msgstr "" #: templates/settings.php:4 -msgid "URL: " +msgid "Address: " msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "" diff --git a/l10n/zh_TW/core.po b/l10n/zh_TW/core.po index 599e547470a746b3a6710ee9498d4e4dd9ab88c1..2014ec345c8604b25f21dce15f4b7802e6d9e958 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:04+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: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 "1 分鐘前" +#: js/js.js:816 +msgid "%n minute ago" +msgid_plural "%n minutes ago" +msgstr[0] "" -#: js/js.js:717 -msgid "{minutes} minutes ago" -msgstr "{minutes} 分鐘前" +#: js/js.js:817 +msgid "%n hour ago" +msgid_plural "%n hours ago" +msgstr[0] "" -#: js/js.js:718 -msgid "1 hour ago" -msgstr "1 小時之前" - -#: js/js.js:719 -msgid "{hours} hours ago" -msgstr "{hours} 小時前" - -#: 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 "{days} 天前" +#: 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 "{months} 個月前" +#: 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 "幾年前" @@ -227,8 +223,8 @@ 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:625 -#: js/share.js:637 +#: js/oc-vcategories.js:199 js/share.js:129 js/share.js:142 js/share.js:149 +#: js/share.js:643 js/share.js:655 msgid "Error" msgstr "錯誤" @@ -248,123 +244,123 @@ msgstr "已分享" msgid "Share" msgstr "分享" -#: js/share.js:125 js/share.js:665 +#: js/share.js:131 js/share.js:683 msgid "Error while sharing" msgstr "分享時發生錯誤" -#: js/share.js:136 +#: js/share.js:142 msgid "Error while unsharing" msgstr "取消分享時發生錯誤" -#: js/share.js:143 +#: js/share.js:149 msgid "Error while changing permissions" msgstr "修改權限時發生錯誤" -#: js/share.js:152 +#: js/share.js:158 msgid "Shared with you and the group {group} by {owner}" msgstr "由 {owner} 分享給您和 {group}" -#: js/share.js:154 +#: js/share.js:160 msgid "Shared with you by {owner}" msgstr "{owner} 已經和您分享" -#: js/share.js:177 +#: js/share.js:183 msgid "Share with" msgstr "與...分享" -#: js/share.js:182 +#: js/share.js:188 msgid "Share with link" msgstr "使用連結分享" -#: js/share.js:185 +#: js/share.js:191 msgid "Password protect" msgstr "密碼保護" -#: js/share.js:187 templates/installation.php:54 templates/login.php:26 +#: js/share.js:193 templates/installation.php:57 templates/login.php:26 msgid "Password" msgstr "密碼" -#: js/share.js:192 +#: js/share.js:198 msgid "Allow Public Upload" msgstr "允許任何人上傳" -#: js/share.js:196 +#: js/share.js:202 msgid "Email link to person" msgstr "將連結 email 給別人" -#: js/share.js:197 +#: js/share.js:203 msgid "Send" msgstr "寄出" -#: js/share.js:202 +#: js/share.js:208 msgid "Set expiration date" msgstr "設置到期日" -#: js/share.js:203 +#: js/share.js:209 msgid "Expiration date" msgstr "到期日" -#: js/share.js:235 +#: js/share.js:241 msgid "Share via email:" msgstr "透過電子郵件分享:" -#: js/share.js:237 +#: js/share.js:243 msgid "No people found" msgstr "沒有找到任何人" -#: js/share.js:275 +#: js/share.js:281 msgid "Resharing is not allowed" msgstr "不允許重新分享" -#: js/share.js:311 +#: js/share.js:317 msgid "Shared in {item} with {user}" msgstr "已和 {user} 分享 {item}" -#: js/share.js:332 +#: js/share.js:338 msgid "Unshare" msgstr "取消共享" -#: js/share.js:344 +#: js/share.js:350 msgid "can edit" msgstr "可編輯" -#: js/share.js:346 +#: js/share.js:352 msgid "access control" msgstr "存取控制" -#: js/share.js:349 +#: js/share.js:355 msgid "create" msgstr "建立" -#: js/share.js:352 +#: js/share.js:358 msgid "update" msgstr "更新" -#: js/share.js:355 +#: js/share.js:361 msgid "delete" msgstr "刪除" -#: js/share.js:358 +#: js/share.js:364 msgid "share" msgstr "分享" -#: js/share.js:392 js/share.js:612 +#: js/share.js:398 js/share.js:630 msgid "Password protected" msgstr "受密碼保護" -#: js/share.js:625 +#: js/share.js:643 msgid "Error unsetting expiration date" msgstr "解除過期日設定失敗" -#: js/share.js:637 +#: js/share.js:655 msgid "Error setting expiration date" msgstr "錯誤的到期日設定" -#: js/share.js:652 +#: js/share.js:670 msgid "Sending ..." msgstr "正在傳送..." -#: js/share.js:663 +#: js/share.js:681 msgid "Email sent" msgstr "Email 已寄出" @@ -379,9 +375,10 @@ msgstr "升級失敗,請將此問題回報 您確定填入的電子郵件地址或是帳號名 msgid "You will receive a link to reset your password via Email." msgstr "重設密碼的連結將會寄到您的電子郵件信箱。" -#: lostpassword/templates/lostpassword.php:18 templates/installation.php:48 +#: lostpassword/templates/lostpassword.php:18 templates/installation.php:51 #: templates/login.php:19 msgid "Username" msgstr "使用者名稱" @@ -463,11 +460,11 @@ msgstr "說明" msgid "Access forbidden" msgstr "存取被拒" -#: templates/404.php:12 +#: templates/404.php:15 msgid "Cloud not found" msgstr "未發現雲端" -#: templates/altmail.php:4 +#: templates/altmail.php:2 #, php-format msgid "" "Hey there,\n" @@ -496,8 +493,9 @@ msgid "Your PHP version is vulnerable to the NULL Byte attack (CVE-2006-7243)" msgstr "您的 PHP 版本無法抵抗 NULL Byte 攻擊 (CVE-2006-7243)" #: templates/installation.php:26 -msgid "Please update your PHP installation to use ownCloud securely." -msgstr "請更新您的 PHP 安裝以更安全地使用 ownCloud 。" +#, php-format +msgid "Please update your PHP installation to use %s securely." +msgstr "請更新 PHP 以安全地使用 %s。" #: templates/installation.php:32 msgid "" @@ -517,68 +515,72 @@ msgid "" "because the .htaccess file does not work." msgstr "您的資料目錄看起來可以被 Internet 公開存取,因為 .htaccess 設定並未生效。" -#: templates/installation.php:40 +#: templates/installation.php:41 +#, php-format msgid "" "For information how to properly configure your server, please see the documentation." -msgstr "請參考說明文件以瞭解如何正確設定您的伺服器。" +"href=\"%s\" target=\"_blank\">documentation." +msgstr "請參考說明文件以瞭解如何正確設定您的伺服器。" -#: templates/installation.php:44 +#: templates/installation.php:47 msgid "Create an admin account" msgstr "建立一個管理者帳號" -#: templates/installation.php:62 +#: templates/installation.php:65 msgid "Advanced" msgstr "進階" -#: templates/installation.php:64 +#: templates/installation.php:67 msgid "Data folder" msgstr "資料夾" -#: templates/installation.php:74 +#: templates/installation.php:77 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 +#: templates/installation.php:82 templates/installation.php:94 +#: templates/installation.php:105 templates/installation.php:116 +#: templates/installation.php:128 msgid "will be used" msgstr "將會使用" -#: templates/installation.php:137 +#: templates/installation.php:140 msgid "Database user" msgstr "資料庫使用者" -#: templates/installation.php:144 +#: templates/installation.php:147 msgid "Database password" msgstr "資料庫密碼" -#: templates/installation.php:149 +#: templates/installation.php:152 msgid "Database name" msgstr "資料庫名稱" -#: templates/installation.php:159 +#: templates/installation.php:160 msgid "Database tablespace" msgstr "資料庫 tablespace" -#: templates/installation.php:166 +#: templates/installation.php:167 msgid "Database host" msgstr "資料庫主機" -#: templates/installation.php:172 +#: templates/installation.php:175 msgid "Finish setup" msgstr "完成設定" -#: templates/layout.user.php:43 +#: templates/layout.user.php:41 #, php-format msgid "%s is available. Get more information on how to update." msgstr "%s 已經釋出,瞭解更多資訊以進行更新。" -#: templates/layout.user.php:68 +#: templates/layout.user.php:66 msgid "Log out" msgstr "登出" +#: templates/layout.user.php:100 +msgid "More apps" +msgstr "" + #: templates/login.php:9 msgid "Automatic logon rejected!" msgstr "自動登入被拒!" @@ -609,7 +611,7 @@ msgstr "登入" msgid "Alternative Logins" msgstr "替代登入方法" -#: templates/mail.php:16 +#: templates/mail.php:15 #, php-format msgid "" "Hey there,

just letting you know that %s shared »%s« with you.
\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -121,11 +121,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 "重新命名" @@ -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:457 -msgid "1 file uploading" -msgstr "1 個檔案正在上傳" - -#: js/filelist.js:460 js/filelist.js:518 +#: js/filelist.js:518 msgid "files uploading" msgstr "檔案正在上傳中" @@ -201,33 +194,27 @@ msgstr "正在準備您的下載,若您的檔案較大,將會需要更多時 msgid "Invalid folder name. Usage of 'Shared' is reserved by Owncloud" msgstr "無效的資料夾名稱,'Shared' 的使用被 ownCloud 保留" -#: 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 "1 個資料夾" - -#: js/files.js:765 -msgid "{count} folders" -msgstr "{count} 個資料夾" - -#: js/files.js:773 -msgid "1 file" -msgstr "1 個檔案" +#: js/files.js:762 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: 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 @@ -286,45 +273,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/zh_TW/files_encryption.po b/l10n/zh_TW/files_encryption.po index 0ad4c062c9a9544888aa3447cd63a4e642a0c1a4..dc9c9cf7a76570db2586af0b938d574b2a82635c 100644 --- a/l10n/zh_TW/files_encryption.po +++ b/l10n/zh_TW/files_encryption.po @@ -4,12 +4,13 @@ # # Translators: # pellaeon , 2013 +# Flymok , 2013 msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-05 02:12+0200\n" -"PO-Revision-Date: 2013-07-05 00:13+0000\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" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -60,7 +61,7 @@ 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 "您的私鑰不正確! 感覺像是密碼在 ownCloud 系統之外被改變(例:您的目錄)。 您可以在個人設定中更新私鑰密碼取回已加密的檔案。" #: hooks/hooks.php:44 msgid "Missing requirements." @@ -68,9 +69,13 @@ msgstr "" #: hooks/hooks.php:45 msgid "" -"Please make sure that PHP 5.3.3 or newer is installed and that the OpenSSL " -"PHP extension is enabled and configured properly. For now, the encryption " -"app has been disabled." +"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 "" + +#: hooks/hooks.php:263 +msgid "Following users are not set up for encryption:" msgstr "" #: js/settings-admin.js:11 @@ -140,15 +145,15 @@ msgstr "" msgid "" " If you don't remember your old password you can ask your administrator to " "recover your files." -msgstr "" +msgstr "如果您忘記舊密碼,可以請求管理員協助取回檔案。" #: templates/settings-personal.php:24 msgid "Old log-in password" -msgstr "" +msgstr "舊登入密碼" #: templates/settings-personal.php:30 msgid "Current log-in password" -msgstr "" +msgstr "目前的登入密碼" #: templates/settings-personal.php:35 msgid "Update Private Key Password" diff --git a/l10n/zh_TW/files_sharing.po b/l10n/zh_TW/files_sharing.po index 7c2b7e20512acbf6a3f5a16eb283ae84f4d91478..77a810102c4be1abf89c91860ba1f603e7ff7442 100644 --- a/l10n/zh_TW/files_sharing.po +++ b/l10n/zh_TW/files_sharing.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+0000\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" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -30,28 +30,52 @@ msgstr "密碼" msgid "Submit" msgstr "送出" -#: templates/public.php:17 +#: templates/part.404.php:3 +msgid "Sorry, this link doesn’t seem to work anymore." +msgstr "" + +#: templates/part.404.php:4 +msgid "Reasons might be:" +msgstr "" + +#: templates/part.404.php:6 +msgid "the item was removed" +msgstr "" + +#: templates/part.404.php:7 +msgid "the link expired" +msgstr "" + +#: templates/part.404.php:8 +msgid "sharing is disabled" +msgstr "" + +#: templates/part.404.php:10 +msgid "For more info, please ask the person who sent this link." +msgstr "" + +#: templates/public.php:15 #, php-format msgid "%s shared the folder %s with you" msgstr "%s 和您分享了資料夾 %s " -#: templates/public.php:20 +#: templates/public.php:18 #, php-format msgid "%s shared the file %s with you" msgstr "%s 和您分享了檔案 %s" -#: templates/public.php:28 templates/public.php:90 +#: templates/public.php:26 templates/public.php:88 msgid "Download" msgstr "下載" -#: templates/public.php:45 templates/public.php:48 +#: templates/public.php:43 templates/public.php:46 msgid "Upload" msgstr "上傳" -#: templates/public.php:58 +#: templates/public.php:56 msgid "Cancel upload" msgstr "取消上傳" -#: templates/public.php:87 +#: templates/public.php:85 msgid "No preview available for" msgstr "無法預覽" diff --git a/l10n/zh_TW/files_trashbin.po b/l10n/zh_TW/files_trashbin.po index 6ab463e812c7b9bb2d8becffbcac87816737072e..f51e340bf8609dc6d4db151c910c28f569b6d334 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-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:05+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" @@ -27,45 +27,43 @@ msgstr "無法永久刪除 %s" msgid "Couldn't restore %s" msgstr "無法復原 %s" -#: js/trash.js:7 js/trash.js:97 +#: js/trash.js:7 js/trash.js:100 msgid "perform restore operation" msgstr "進行復原動作" -#: js/trash.js:19 js/trash.js:46 js/trash.js:115 js/trash.js:141 +#: js/trash.js:20 js/trash.js:48 js/trash.js:118 js/trash.js:146 msgid "Error" msgstr "錯誤" -#: js/trash.js:34 +#: js/trash.js:36 msgid "delete file permanently" msgstr "永久刪除檔案" -#: js/trash.js:123 +#: js/trash.js:127 msgid "Delete permanently" msgstr "永久刪除" -#: js/trash.js:176 templates/index.php:17 +#: js/trash.js:182 templates/index.php:17 msgid "Name" msgstr "名稱" -#: js/trash.js:177 templates/index.php:27 +#: js/trash.js:183 templates/index.php:27 msgid "Deleted" msgstr "已刪除" -#: js/trash.js:186 -msgid "1 folder" -msgstr "1 個資料夾" +#: js/trash.js:191 +msgid "%n folder" +msgid_plural "%n folders" +msgstr[0] "" -#: js/trash.js:188 -msgid "{count} folders" -msgstr "{count} 個資料夾" +#: js/trash.js:197 +msgid "%n file" +msgid_plural "%n files" +msgstr[0] "" -#: js/trash.js:196 -msgid "1 file" -msgstr "1 個檔案" - -#: js/trash.js:198 -msgid "{count} files" -msgstr "{count} 個檔案" +#: lib/trash.php:819 lib/trash.php:821 +msgid "restored" +msgstr "" #: templates/index.php:9 msgid "Nothing in here. Your trash bin is empty!" diff --git a/l10n/zh_TW/files_versions.po b/l10n/zh_TW/files_versions.po index dbe4ec462d0c82a88ccf3cd897b517f37525645a..bd093d7fda8962bdae5e87e5b8c4ba1ddf1ea187 100644 --- a/l10n/zh_TW/files_versions.po +++ b/l10n/zh_TW/files_versions.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-05-25 02:01+0200\n" -"PO-Revision-Date: 2013-05-24 13:28+0000\n" -"Last-Translator: pellaeon \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" "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" @@ -18,41 +18,27 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ajax/rollbackVersion.php:15 +#: ajax/rollbackVersion.php:13 #, php-format msgid "Could not revert: %s" msgstr "無法還原:%s" -#: history.php:40 -msgid "success" -msgstr "成功" - -#: history.php:42 -#, php-format -msgid "File %s was reverted to version %s" -msgstr "檔案 %s 已被復原至版本 %s" - -#: history.php:49 -msgid "failure" -msgstr "失敗" - -#: history.php:51 -#, php-format -msgid "File %s could not be reverted to version %s" -msgstr "檔案 %s 無法復原至版本 %s" +#: js/versions.js:7 +msgid "Versions" +msgstr "版本" -#: history.php:69 -msgid "No old versions available" -msgstr "沒有舊的版本" +#: js/versions.js:53 +msgid "Failed to revert {file} to revision {timestamp}." +msgstr "" -#: history.php:74 -msgid "No path specified" -msgstr "沒有指定路徑" +#: js/versions.js:79 +msgid "More versions..." +msgstr "" -#: js/versions.js:6 -msgid "Versions" -msgstr "版本" +#: js/versions.js:116 +msgid "No other versions available" +msgstr "" -#: templates/history.php:20 -msgid "Revert a file to a previous version by clicking on its revert button" -msgstr "按一下復原的按鈕即可把檔案復原至以前的版本" +#: js/versions.js:149 +msgid "Restore" +msgstr "復原" diff --git a/l10n/zh_TW/lib.po b/l10n/zh_TW/lib.po index 813363fd041d3cff0be3b45aed77d6bab31df526..9f99db8fe3c43f733024f9401869600be703c5af 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-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: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -35,19 +35,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 "由您控制的網路服務" @@ -211,54 +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] "" #: 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 "幾年前" -#: template.php:296 +#: template.php:297 msgid "Caused by:" msgstr "" diff --git a/l10n/zh_TW/settings.po b/l10n/zh_TW/settings.po index 67e5af91e948284634b6bf1d1f880b3af58527bb..9e38838ff4861ba7883423ccea96de36f301b4c7 100644 --- a/l10n/zh_TW/settings.po +++ b/l10n/zh_TW/settings.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-23 01:55-0400\n" -"PO-Revision-Date: 2013-07-23 05:55+0000\n" -"Last-Translator: I Robot \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" "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" @@ -170,175 +170,173 @@ msgstr "一定要提供一個有效的密碼" msgid "__language_name__" msgstr "__language_name__" -#: templates/admin.php:17 +#: templates/admin.php:15 msgid "Security Warning" msgstr "安全性警告" -#: templates/admin.php:20 +#: 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." +"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." msgstr "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。" -#: templates/admin.php:31 +#: templates/admin.php:29 msgid "Setup Warning" msgstr "設定警告" -#: templates/admin.php:34 +#: 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 "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。" -#: templates/admin.php:35 +#: templates/admin.php:33 #, php-format -msgid "Please double check the installation guides." +msgid "Please double check the installation guides." msgstr "請參考安裝指南。" -#: templates/admin.php:46 +#: templates/admin.php:44 msgid "Module 'fileinfo' missing" msgstr "遺失 'fileinfo' 模組" -#: templates/admin.php:49 +#: 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 "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。" -#: templates/admin.php:60 +#: templates/admin.php:58 msgid "Locale not working" msgstr "語系無法運作" -#: templates/admin.php:65 +#: 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." +"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 "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。" -#: templates/admin.php:77 +#: templates/admin.php:75 msgid "Internet connection not working" msgstr "無網際網路存取" -#: templates/admin.php:80 +#: 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." +"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." msgstr "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。" -#: templates/admin.php:94 +#: templates/admin.php:92 msgid "Cron" msgstr "Cron" -#: templates/admin.php:103 +#: templates/admin.php:101 msgid "Execute one task with each page loaded" msgstr "當頁面載入時,執行" -#: templates/admin.php:113 +#: 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 "cron.php 已經在 webcron 服務當中註冊,請每分鐘透過 HTTP 呼叫 ownCloud 根目錄當中的 cron.php 一次。" +"cron.php is registered at a webcron service to call cron.php once a minute " +"over http." +msgstr "cron.php 已經註冊 webcron 服務,webcron 每分鐘會呼叫 cron.php 一次。" -#: templates/admin.php:123 -msgid "" -"Use systems cron service. Call the cron.php file in the owncloud folder via " -"a system cronjob once a minute." -msgstr "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。" +#: templates/admin.php:121 +msgid "Use systems cron service to call the cron.php file once a minute." +msgstr "使用系統的 cron 服務來呼叫 cron.php 每分鐘一次。" -#: templates/admin.php:130 +#: templates/admin.php:128 msgid "Sharing" msgstr "分享" -#: templates/admin.php:136 +#: templates/admin.php:134 msgid "Enable Share API" msgstr "啟用分享 API" -#: templates/admin.php:137 +#: templates/admin.php:135 msgid "Allow apps to use the Share API" msgstr "允許 apps 使用分享 API" -#: templates/admin.php:144 +#: templates/admin.php:142 msgid "Allow links" msgstr "允許連結" -#: templates/admin.php:145 +#: templates/admin.php:143 msgid "Allow users to share items to the public with links" msgstr "允許使用者以結連公開分享檔案" -#: templates/admin.php:153 +#: templates/admin.php:151 msgid "Allow public uploads" -msgstr "" +msgstr "允許任何人上傳" -#: templates/admin.php:154 +#: templates/admin.php:152 msgid "" "Allow users to enable others to upload into their publicly shared folders" -msgstr "" +msgstr "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」" -#: templates/admin.php:162 +#: templates/admin.php:160 msgid "Allow resharing" msgstr "允許轉貼分享" -#: templates/admin.php:163 +#: templates/admin.php:161 msgid "Allow users to share items shared with them again" msgstr "允許使用者分享其他使用者分享給他的檔案" -#: templates/admin.php:170 +#: templates/admin.php:168 msgid "Allow users to share with anyone" msgstr "允許使用者與任何人分享檔案" -#: templates/admin.php:173 +#: templates/admin.php:171 msgid "Allow users to only share with users in their groups" msgstr "僅允許使用者在群組內分享" -#: templates/admin.php:180 +#: templates/admin.php:178 msgid "Security" msgstr "安全性" -#: templates/admin.php:193 +#: templates/admin.php:191 msgid "Enforce HTTPS" msgstr "強制啟用 HTTPS" -#: templates/admin.php:194 -msgid "" -"Enforces the clients to connect to ownCloud via an encrypted connection." -msgstr "強制用戶端使用加密的連線連接到 ownCloud" +#: templates/admin.php:193 +#, php-format +msgid "Forces the clients to connect to %s via an encrypted connection." +msgstr "強迫用戶端使用加密連線連接到 %s" -#: templates/admin.php:197 +#: templates/admin.php:199 +#, php-format msgid "" -"Please connect to this ownCloud instance via HTTPS to enable or disable the " -"SSL enforcement." -msgstr "請使用 HTTPS 連線到 ownCloud,或是關閉強制使用 SSL 的選項。" +"Please connect to your %s via HTTPS to enable or disable the SSL " +"enforcement." +msgstr "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。" -#: templates/admin.php:207 +#: templates/admin.php:211 msgid "Log" msgstr "紀錄" -#: templates/admin.php:208 +#: templates/admin.php:212 msgid "Log level" msgstr "紀錄層級" -#: templates/admin.php:239 +#: templates/admin.php:243 msgid "More" msgstr "更多" -#: templates/admin.php:240 +#: templates/admin.php:244 msgid "Less" msgstr "更少" -#: templates/admin.php:246 templates/personal.php:116 +#: templates/admin.php:250 templates/personal.php:114 msgid "Version" msgstr "版本" -#: templates/admin.php:250 templates/personal.php:119 +#: templates/admin.php:254 templates/personal.php:117 msgid "" "Developed by the ownCloud community, the %s of the available %s" msgstr "您已經使用了 %s ,目前可用空間為 %s" -#: templates/personal.php:41 templates/users.php:23 templates/users.php:86 +#: templates/personal.php:39 templates/users.php:23 templates/users.php:86 msgid "Password" msgstr "密碼" -#: templates/personal.php:42 +#: templates/personal.php:40 msgid "Your password was changed" msgstr "你的密碼已更改" -#: templates/personal.php:43 +#: templates/personal.php:41 msgid "Unable to change your password" msgstr "無法變更您的密碼" -#: templates/personal.php:44 +#: templates/personal.php:42 msgid "Current password" msgstr "目前密碼" -#: templates/personal.php:46 +#: templates/personal.php:44 msgid "New password" msgstr "新密碼" -#: templates/personal.php:48 +#: templates/personal.php:46 msgid "Change password" msgstr "變更密碼" -#: templates/personal.php:60 templates/users.php:85 +#: templates/personal.php:58 templates/users.php:85 msgid "Display Name" msgstr "顯示名稱" -#: templates/personal.php:75 +#: templates/personal.php:73 msgid "Email" msgstr "信箱" -#: templates/personal.php:77 +#: templates/personal.php:75 msgid "Your email address" msgstr "您的電子郵件信箱" -#: templates/personal.php:78 +#: templates/personal.php:76 msgid "Fill in an email address to enable password recovery" msgstr "請填入電子郵件信箱以便回復密碼" -#: templates/personal.php:87 templates/personal.php:88 +#: templates/personal.php:85 templates/personal.php:86 msgid "Language" msgstr "語言" -#: templates/personal.php:100 +#: templates/personal.php:98 msgid "Help translate" msgstr "幫助翻譯" -#: templates/personal.php:106 +#: templates/personal.php:104 msgid "WebDAV" msgstr "WebDAV" -#: templates/personal.php:108 +#: templates/personal.php:106 #, php-format msgid "" "Use this address to \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" "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" @@ -89,9 +89,9 @@ 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 " +" experience unexpected behavior. Please ask your system administrator to " "disable one of them." -msgstr "警告: 應用程式user_ldap和user_webdavauth互不相容。可能會造成無法預期的結果。請要求您的系統管理員將兩者其中之一停用。" +msgstr "" #: templates/settings.php:12 msgid "" @@ -222,8 +222,8 @@ msgid "Disable Main Server" msgstr "停用主伺服器" #: templates/settings.php:75 -msgid "When switched on, ownCloud will only connect to the replica server." -msgstr "當開關打開時,ownCloud將只會連接複本伺服器。" +msgid "Only connect to the replica server." +msgstr "" #: templates/settings.php:76 msgid "Use TLS" @@ -242,10 +242,11 @@ msgid "Turn off SSL certificate validation." msgstr "關閉 SSL 憑證驗證" #: templates/settings.php:78 +#, php-format msgid "" "If connection only works with this option, import the LDAP server's SSL " -"certificate in your ownCloud server." -msgstr "若連線只有在此選項開啟時運作,請匯入LDAP伺服器的SSL認證到您的ownCloud伺服器。" +"certificate in your %s server." +msgstr "" #: templates/settings.php:78 msgid "Not recommended, use for testing only." @@ -268,8 +269,8 @@ msgid "User Display Name Field" msgstr "使用者名稱欄位" #: templates/settings.php:83 -msgid "The LDAP attribute to use to generate the user`s ownCloud name." -msgstr "用於產生ownCloud名稱" +msgid "The LDAP attribute to use to generate the user's display name." +msgstr "" #: templates/settings.php:84 msgid "Base User Tree" @@ -292,7 +293,7 @@ msgid "Group Display Name Field" msgstr "群組顯示名稱欄位" #: templates/settings.php:86 -msgid "The LDAP attribute to use to generate the groups`s ownCloud name." +msgid "The LDAP attribute to use to generate the groups's display name." msgstr "" #: templates/settings.php:87 @@ -353,12 +354,12 @@ msgid "" "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." +"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." msgstr "" #: templates/settings.php:103 @@ -371,12 +372,12 @@ 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 " +"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 behaviour. " +" 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 "" @@ -390,17 +391,16 @@ 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." +"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." msgstr "" #: templates/settings.php:109 diff --git a/l10n/zh_TW/user_webdavauth.po b/l10n/zh_TW/user_webdavauth.po index a72b457be2b5a5b927f88debc6fb8011a247eab9..2e684f4150b6075dbd99c393df200fe5de2ed322 100644 --- a/l10n/zh_TW/user_webdavauth.po +++ b/l10n/zh_TW/user_webdavauth.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: ownCloud\n" "Report-Msgid-Bugs-To: http://bugs.owncloud.org/\n" -"POT-Creation-Date: 2013-07-22 01:54-0400\n" -"PO-Revision-Date: 2013-07-21 09:20+0000\n" -"Last-Translator: pellaeon \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" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/owncloud/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,12 +26,12 @@ msgid "WebDAV Authentication" msgstr "WebDAV 認證" #: templates/settings.php:4 -msgid "URL: " -msgstr "URL: " +msgid "Address: " +msgstr "" #: templates/settings.php:7 msgid "" -"ownCloud will send the user credentials to this URL. This plugin checks the " +"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 "ownCloud 將會把用戶的帳密傳送至這個網址以嘗試登入,並檢查回應,HTTP 狀態碼401和403視為登入失敗,所有其他回應視為登入成功。" +msgstr "" diff --git a/lib/app.php b/lib/app.php index 2437896157ae5c272556cfa82c852f84f8d3f356..5fa650044f3c46c6db179282c271b986c276dfad 100644 --- a/lib/app.php +++ b/lib/app.php @@ -401,15 +401,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/cache/file.php b/lib/cache/file.php index 531e1d50f40490aa370d14a297cf3bb552cdf450..ba3dedaf8f3c16404fba969cf6e874ea04bc8563 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -29,22 +29,30 @@ class OC_Cache_File{ } public function get($key) { + $result = null; + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; if ($this->hasKey($key)) { $storage = $this->getStorage(); - return $storage->file_get_contents($key); + $result = $storage->file_get_contents($key); } - return null; + \OC_FileProxy::$enabled = $proxyStatus; + return $result; } public function set($key, $value, $ttl=0) { $storage = $this->getStorage(); + $result = false; + $proxyStatus = \OC_FileProxy::$enabled; + \OC_FileProxy::$enabled = false; if ($storage and $storage->file_put_contents($key, $value)) { if ($ttl === 0) { $ttl = 86400; // 60*60*24 } - return $storage->touch($key, time() + $ttl); + $result = $storage->touch($key, time() + $ttl); } - return false; + \OC_FileProxy::$enabled = $proxyStatus; + return $result; } public function hasKey($key) { diff --git a/lib/db.php b/lib/db.php index e70d66fc2ba2f8c6403aba9f8bf951ea1e1f1095..ebd012c72f812f29cfed7e6da469471bb762aedb 100644 --- a/lib/db.php +++ b/lib/db.php @@ -41,69 +41,25 @@ class DatabaseException extends Exception { * Doctrine with some adaptions. */ class OC_DB { - const BACKEND_DOCTRINE=2; - - static private $preparedQueries = array(); - static private $cachingEnabled = true; - - /** - * @var \Doctrine\DBAL\Connection - */ - static private $connection; //the preferred connection to use, only Doctrine - static private $backend=null; /** - * @var \Doctrine\DBAL\Connection + * @var \OC\DB\Connection $connection */ - static private $DOCTRINE=null; + static private $connection; //the prefered connection to use, only Doctrine - static private $inTransaction=false; static private $prefix=null; static private $type=null; - /** - * check which backend we should use - * @return int BACKEND_DOCTRINE - */ - private static function getDBBackend() { - return self::BACKEND_DOCTRINE; - } - /** * @brief connects to the database - * @param int $backend * @return bool true if connection can be established or false on error * * Connects to the database as specified in config.php */ - public static function connect($backend=null) { + public static function connect() { if(self::$connection) { return true; } - if(is_null($backend)) { - $backend=self::getDBBackend(); - } - if($backend==self::BACKEND_DOCTRINE) { - $success = self::connectDoctrine(); - self::$connection=self::$DOCTRINE; - self::$backend=self::BACKEND_DOCTRINE; - } - return $success; - } - /** - * connect to the database using doctrine - * - * @return bool - */ - public static function connectDoctrine() { - if(self::$connection) { - if(self::$backend!=self::BACKEND_DOCTRINE) { - self::disconnect(); - } else { - return true; - } - } - self::$preparedQueries = array(); // The global data we need $name = OC_Config::getValue( "dbname", "owncloud" ); $host = OC_Config::getValue( "dbhost", "" ); @@ -117,7 +73,7 @@ class OC_DB { } // do nothing if the connection already has been established - if(!self::$DOCTRINE) { + if (!self::$connection) { $config = new \Doctrine\DBAL\Configuration(); switch($type) { case 'sqlite': @@ -129,6 +85,7 @@ class OC_DB { 'path' => $datadir.'/'.$name.'.db', 'driver' => 'pdo_sqlite', ); + $connectionParams['adapter'] = '\OC\DB\AdapterSqlite'; break; case 'mysql': $connectionParams = array( @@ -140,6 +97,7 @@ class OC_DB { 'charset' => 'UTF8', 'driver' => 'pdo_mysql', ); + $connectionParams['adapter'] = '\OC\DB\Adapter'; break; case 'pgsql': $connectionParams = array( @@ -150,6 +108,7 @@ class OC_DB { 'dbname' => $name, 'driver' => 'pdo_pgsql', ); + $connectionParams['adapter'] = '\OC\DB\AdapterPgSql'; break; case 'oci': $connectionParams = array( @@ -163,6 +122,7 @@ class OC_DB { if (!empty($port)) { $connectionParams['port'] = $port; } + $connectionParams['adapter'] = '\OC\DB\AdapterOCI8'; break; case 'mssql': $connectionParams = array( @@ -174,12 +134,20 @@ class OC_DB { 'charset' => 'UTF8', 'driver' => 'pdo_sqlsrv', ); + $connectionParams['adapter'] = '\OC\DB\AdapterSQLSrv'; break; default: return false; } + $connectionParams['wrapperClass'] = 'OC\DB\Connection'; + $connectionParams['tablePrefix'] = OC_Config::getValue('dbtableprefix', 'oc_' ); try { - self::$DOCTRINE = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); + self::$connection = \Doctrine\DBAL\DriverManager::getConnection($connectionParams, $config); + if ($type === 'sqlite' || $type === 'sqlite3') { + // Sqlite doesn't handle query caching and schema changes + // TODO: find a better way to handle this + self::$connection->disableQueryStatementCaching(); + } } catch(\Doctrine\DBAL\DBALException $e) { OC_Log::write('core', $e->getMessage(), OC_Log::FATAL); OC_User::setUserId(null); @@ -194,6 +162,24 @@ class OC_DB { return true; } + /** + * @return \OC\DB\Connection + */ + static public function getConnection() { + self::connect(); + return self::$connection; + } + + /** + * get MDB2 schema manager + * + * @return \OC\DB\MDB2SchemaManager + */ + private static function getMDB2SchemaManager() + { + return new \OC\DB\MDB2SchemaManager(self::getConnection()); + } + /** * @brief Prepare a SQL query * @param string $query Query string @@ -206,25 +192,6 @@ class OC_DB { * SQL query via Doctrine prepare(), needs to be execute()'d! */ static public function prepare( $query , $limit = null, $offset = null, $isManipulation = null) { - - if (!is_null($limit) && $limit != -1) { - if ($limit === -1) { - $limit = null; - } - $platform = self::$connection->getDatabasePlatform(); - $query = $platform->modifyLimitQuery($query, $limit, $offset); - } else { - if (isset(self::$preparedQueries[$query]) and self::$cachingEnabled) { - return self::$preparedQueries[$query]; - } - } - $rawQuery = $query; - - // Optimize the query - $query = self::processQuery( $query ); - if(OC_Config::getValue( "log_query", false)) { - OC_Log::write('core', 'DB prepare : '.$query, OC_Log::DEBUG); - } self::connect(); if ($isManipulation === null) { @@ -233,45 +200,38 @@ class OC_DB { } // return the result - if (self::$backend == self::BACKEND_DOCTRINE) { - try { - $result=self::$connection->prepare($query); - } catch(\Doctrine\DBAL\DBALException $e) { - throw new \DatabaseException($e->getMessage(), $query); - } - // differentiate between query and manipulation - $result=new OC_DB_StatementWrapper($result, $isManipulation); - } - if ((is_null($limit) || $limit == -1) and self::$cachingEnabled ) { - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if( $type != 'sqlite' && $type != 'sqlite3' ) { - self::$preparedQueries[$rawQuery] = $result; - } + try { + $result = self::$connection->prepare($query, $limit, $offset); + } catch (\Doctrine\DBAL\DBALException $e) { + throw new \DatabaseException($e->getMessage(), $query); } + // differentiate between query and manipulation + $result = new OC_DB_StatementWrapper($result, $isManipulation); return $result; } - + /** * tries to guess the type of statement based on the first 10 characters * the current check allows some whitespace but does not work with IF EXISTS or other more complex statements * * @param string $sql + * @return bool */ static public function isManipulation( $sql ) { - $selectOccurence = stripos ($sql, "SELECT"); - if ($selectOccurence !== false && $selectOccurence < 10) { + $selectOccurrence = stripos($sql, 'SELECT'); + if ($selectOccurrence !== false && $selectOccurrence < 10) { return false; } - $insertOccurence = stripos ($sql, "INSERT"); - if ($insertOccurence !== false && $insertOccurence < 10) { + $insertOccurrence = stripos($sql, 'INSERT'); + if ($insertOccurrence !== false && $insertOccurrence < 10) { return true; } - $updateOccurence = stripos ($sql, "UPDATE"); - if ($updateOccurence !== false && $updateOccurence < 10) { + $updateOccurrence = stripos($sql, 'UPDATE'); + if ($updateOccurrence !== false && $updateOccurrence < 10) { return true; } - $deleteOccurance = stripos ($sql, "DELETE"); - if ($deleteOccurance !== false && $deleteOccurance < 10) { + $deleteOccurrence = stripos($sql, 'DELETE'); + if ($deleteOccurrence !== false && $deleteOccurrence < 10) { return true; } return false; @@ -289,7 +249,7 @@ class OC_DB { static public function executeAudited( $stmt, array $parameters = null) { if (is_string($stmt)) { // convert to an array with 'sql' - if (stripos($stmt,'LIMIT') !== false) { //OFFSET requires LIMIT, se we only neet to check for LIMIT + if (stripos($stmt, 'LIMIT') !== false) { //OFFSET requires LIMIT, so we only need to check for LIMIT // TODO try to convert LIMIT OFFSET notation to parameters, see fixLimitClauseForMSSQL $message = 'LIMIT and OFFSET are forbidden for portability reasons,' . ' pass an array with \'limit\' and \'offset\' instead'; @@ -297,7 +257,7 @@ class OC_DB { } $stmt = array('sql' => $stmt, 'limit' => null, 'offset' => null); } - if (is_array($stmt)){ + if (is_array($stmt)) { // convert to prepared statement if ( ! array_key_exists('sql', $stmt) ) { $message = 'statement array must at least contain key \'sql\''; @@ -339,65 +299,59 @@ class OC_DB { */ public static function insertid($table=null) { self::connect(); - $type = OC_Config::getValue( "dbtype", "sqlite" ); - if( $type === 'pgsql' ) { - $result = self::executeAudited('SELECT lastval() AS id'); - $row = $result->fetchRow(); - self::raiseExceptionOnError($row, 'fetching row for insertid failed'); - return $row['id']; - } else if( $type === 'mssql') { - if($table !== null) { - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); - $table = str_replace( '*PREFIX*', $prefix, $table ); - } - return self::$connection->lastInsertId($table); - } - if( $type === 'oci' ) { - if($table !== null) { - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); - $suffix = '_SEQ'; - $table = '"'.str_replace( '*PREFIX*', $prefix, $table ).$suffix.'"'; - } - return self::$connection->lastInsertId($table); - } else { - if($table !== null) { - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); - $suffix = OC_Config::getValue( "dbsequencesuffix", "_id_seq" ); - $table = str_replace( '*PREFIX*', $prefix, $table ).$suffix; - } - $result = self::$connection->lastInsertId($table); - } - self::raiseExceptionOnError($result, 'insertid failed'); - return $result; + return self::$connection->lastInsertId($table); + } + + /** + * @brief Insert a row if a matching row doesn't exists. + * @param string $table. The table to insert into in the form '*PREFIX*tableName' + * @param array $input. An array of fieldname/value pairs + * @return int number of updated rows + */ + public static function insertIfNotExist($table, $input) { + self::connect(); + return self::$connection->insertIfNotExist($table, $input); + } + + /** + * Start a transaction + */ + public static function beginTransaction() { + self::connect(); + self::$connection->beginTransaction(); + } + + /** + * Commit the database changes done during a transaction that is in progress + */ + public static function commit() { + self::connect(); + self::$connection->commit(); } /** * @brief Disconnect - * @return bool * * This is good bye, good bye, yeah! */ public static function disconnect() { // Cut connection if required if(self::$connection) { - self::$connection=false; - self::$DOCTRINE=false; + self::$connection->close(); } - - return true; } - /** else { - * @brief saves database scheme to xml file + /** + * @brief saves database schema to xml file * @param string $file name of file * @param int $mode * @return bool * * TODO: write more documentation */ - public static function getDbStructure( $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { - self::connectDoctrine(); - return OC_DB_Schema::getDbStructure(self::$DOCTRINE, $file); + public static function getDbStructure( $file, $mode = 0) { + $schemaManager = self::getMDB2SchemaManager(); + return $schemaManager->getDbStructure($file); } /** @@ -408,20 +362,21 @@ class OC_DB { * TODO: write more documentation */ public static function createDbFromStructure( $file ) { - self::connectDoctrine(); - return OC_DB_Schema::createDbFromStructure(self::$DOCTRINE, $file); + $schemaManager = self::getMDB2SchemaManager(); + $result = $schemaManager->createDbFromStructure($file); + return $result; } /** - * @brief update the database scheme + * @brief update the database schema * @param string $file file to read structure from * @throws Exception * @return bool */ public static function updateDbFromStructure($file) { - self::connectDoctrine(); + $schemaManager = self::getMDB2SchemaManager(); try { - $result = OC_DB_Schema::updateDbFromStructure(self::$DOCTRINE, $file); + $result = $schemaManager->updateDbFromStructure($file); } catch (Exception $e) { OC_Log::write('core', 'Failed to update database structure ('.$e.')', OC_Log::FATAL); throw $e; @@ -429,179 +384,13 @@ class OC_DB { return $result; } - /** - * @brief Insert a row if a matching row doesn't exists. - * @param string $table. The table to insert into in the form '*PREFIX*tableName' - * @param array $input. An array of fieldname/value pairs - * @returns int number of updated rows - */ - public static function insertIfNotExist($table, $input) { - self::connect(); - $prefix = OC_Config::getValue( "dbtableprefix", "oc_" ); - $table = str_replace( '*PREFIX*', $prefix, $table ); - - if(is_null(self::$type)) { - self::$type=OC_Config::getValue( "dbtype", "sqlite" ); - } - $type = self::$type; - - $query = ''; - $inserts = array_values($input); - // differences in escaping of table names ('`' for mysql) and getting the current timestamp - if( $type == 'sqlite' || $type == 'sqlite3' ) { - // NOTE: For SQLite we have to use this clumsy approach - // otherwise all fieldnames used must have a unique key. - $query = 'SELECT * FROM `' . $table . '` WHERE '; - foreach($input as $key => $value) { - $query .= '`' . $key . '` = ? AND '; - } - $query = substr($query, 0, strlen($query) - 5); - try { - $result = self::executeAudited($query, $inserts); - } catch(DatabaseException $e) { - OC_Template::printExceptionErrorPage( $e ); - } - - if((int)$result->numRows() === 0) { - $query = 'INSERT INTO `' . $table . '` (`' - . implode('`,`', array_keys($input)) . '`) VALUES(' - . str_repeat('?,', count($input)-1).'? ' . ')'; - } else { - return 0; //no rows updated - } - } elseif( $type == 'pgsql' || $type == 'oci' || $type == 'mysql' || $type == 'mssql') { - $query = 'INSERT INTO `' .$table . '` (`' - . implode('`,`', array_keys($input)) . '`) SELECT ' - . str_repeat('?,', count($input)-1).'? ' // Is there a prettier alternative? - . 'FROM `' . $table . '` WHERE '; - - foreach($input as $key => $value) { - $query .= '`' . $key . '` = ? AND '; - } - $query = substr($query, 0, strlen($query) - 5); - $query .= ' HAVING COUNT(*) = 0'; - $inserts = array_merge($inserts, $inserts); - } - - try { - $result = self::executeAudited($query, $inserts); - } catch(\Doctrine\DBAL\DBALException $e) { - OC_Template::printExceptionErrorPage( $e ); - } - - return $result; - } - - /** - * @brief does minor changes to query - * @param string $query Query string - * @return string corrected query string - * - * This function replaces *PREFIX* with the value of $CONFIG_DBTABLEPREFIX - * and replaces the ` with ' or " according to the database driver. - */ - private static function processQuery( $query ) { - self::connect(); - // We need Database type and table prefix - if(is_null(self::$type)) { - self::$type=OC_Config::getValue( "dbtype", "sqlite" ); - } - $type = self::$type; - if(is_null(self::$prefix)) { - self::$prefix=OC_Config::getValue( "dbtableprefix", "oc_" ); - } - $prefix = self::$prefix; - - // differences in escaping of table names ('`' for mysql) and getting the current timestamp - if( $type == 'sqlite' || $type == 'sqlite3' ) { - $query = str_replace( '`', '"', $query ); - $query = str_ireplace( 'NOW()', 'datetime(\'now\')', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $query ); - } elseif( $type == 'pgsql' ) { - $query = str_replace( '`', '"', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', 'cast(extract(epoch from current_timestamp) as integer)', - $query ); - } elseif( $type == 'oci' ) { - $query = str_replace( '`', '"', $query ); - $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400", $query ); - }elseif( $type == 'mssql' ) { - $query = preg_replace( "/\`(.*?)`/", "[$1]", $query ); - $query = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $query ); - $query = str_replace( 'LENGTH(', 'LEN(', $query ); - $query = str_replace( 'SUBSTR(', 'SUBSTRING(', $query ); - $query = str_ireplace( 'UNIX_TIMESTAMP()', 'DATEDIFF(second,{d \'1970-01-01\'},GETDATE())', $query ); - - $query = self::fixLimitClauseForMSSQL($query); - } - - // replace table name prefix - $query = str_replace( '*PREFIX*', $prefix, $query ); - - return $query; - } - - private static function fixLimitClauseForMSSQL($query) { - $limitLocation = stripos ($query, "LIMIT"); - - if ( $limitLocation === false ) { - return $query; - } - - // total == 0 means all results - not zero results - // - // First number is either total or offset, locate it by first space - // - $offset = substr ($query, $limitLocation + 5); - $offset = substr ($offset, 0, stripos ($offset, ' ')); - $offset = trim ($offset); - - // check for another parameter - if (stripos ($offset, ',') === false) { - // no more parameters - $offset = 0; - $total = intval ($offset); - } else { - // found another parameter - $offset = intval ($offset); - - $total = substr ($query, $limitLocation + 5); - $total = substr ($total, stripos ($total, ',')); - - $total = substr ($total, 0, stripos ($total, ' ')); - $total = intval ($total); - } - - $query = trim (substr ($query, 0, $limitLocation)); - - if ($offset == 0 && $total !== 0) { - if (strpos($query, "SELECT") === false) { - $query = "TOP {$total} " . $query; - } else { - $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP '.$total, $query); - } - } else if ($offset > 0) { - $query = preg_replace('/SELECT(\s*DISTINCT)?/Dsi', 'SELECT$1 TOP(10000000) ', $query); - $query = 'SELECT * - FROM (SELECT sub2.*, ROW_NUMBER() OVER(ORDER BY sub2.line2) AS line3 - FROM (SELECT 1 AS line2, sub1.* FROM (' . $query . ') AS sub1) as sub2) AS sub3'; - - if ($total > 0) { - $query .= ' WHERE line3 BETWEEN ' . ($offset + 1) . ' AND ' . ($offset + $total); - } else { - $query .= ' WHERE line3 > ' . $offset; - } - } - return $query; - } - /** * @brief drop a table * @param string $tableName the table to drop */ public static function dropTable($tableName) { - self::connectDoctrine(); - OC_DB_Schema::dropTable(self::$DOCTRINE, $tableName); + $schemaManager = self::getMDB2SchemaManager(); + $schemaManager->dropTable($tableName); } /** @@ -609,8 +398,8 @@ class OC_DB { * @param string $file the xml file describing the tables */ public static function removeDBStructure($file) { - self::connectDoctrine(); - OC_DB_Schema::removeDBStructure(self::$DOCTRINE, $file); + $schemaManager = self::getMDB2SchemaManager(); + $schemaManager->removeDBStructure($file); } /** @@ -618,33 +407,8 @@ class OC_DB { * @param $file string path to the MDB2 xml db export file */ public static function replaceDB( $file ) { - self::connectDoctrine(); - OC_DB_Schema::replaceDB(self::$DOCTRINE, $file); - } - - /** - * Start a transaction - * @return bool - */ - public static function beginTransaction() { - self::connect(); - self::$connection->beginTransaction(); - self::$inTransaction=true; - return true; - } - - /** - * Commit the database changes done during a transaction that is in progress - * @return bool - */ - public static function commit() { - self::connect(); - if(!self::$inTransaction) { - return false; - } - self::$connection->commit(); - self::$inTransaction=false; - return true; + $schemaManager = self::getMDB2SchemaManager(); + $schemaManager->replaceDB($file); } /** @@ -685,17 +449,9 @@ class OC_DB { * @return string */ public static function getErrorMessage($error) { - if (self::$backend==self::BACKEND_DOCTRINE and self::$DOCTRINE) { - $msg = self::$DOCTRINE->errorCode() . ': '; - $errorInfo = self::$DOCTRINE->errorInfo(); - if (is_array($errorInfo)) { - $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; - $msg .= 'Driver Code = '.$errorInfo[1] . ', '; - $msg .= 'Driver Message = '.$errorInfo[2]; - } - return $msg; + if (self::$connection) { + return self::$connection->getError(); } - return ''; } @@ -703,9 +459,10 @@ class OC_DB { * @param bool $enabled */ static public function enableCaching($enabled) { - if (!$enabled) { - self::$preparedQueries = array(); + if ($enabled) { + self::$connection->enableQueryStatementCaching(); + } else { + self::$connection->disableQueryStatementCaching(); } - self::$cachingEnabled = $enabled; } } diff --git a/lib/db/adapter.php b/lib/db/adapter.php new file mode 100644 index 0000000000000000000000000000000000000000..6b31f37dd988333a4375d56e31e5a679b0fdf6b3 --- /dev/null +++ b/lib/db/adapter.php @@ -0,0 +1,72 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\DB; + +/** + * This handles the way we use to write queries, into something that can be + * handled by the database abstraction layer. + */ +class Adapter { + + /** + * @var \OC\DB\Connection $conn + */ + protected $conn; + + public function __construct($conn) { + $this->conn = $conn; + } + + /** + * @param string $table name + * @return int id of last insert statement + */ + public function lastInsertId($table) { + return $this->conn->realLastInsertId($table); + } + + /** + * @param string $statement that needs to be changed so the db can handle it + * @return string changed statement + */ + public function fixupStatement($statement) { + return $statement; + } + + /** + * @brief insert the @input values when they do not exist yet + * @param string $table name + * @param array $input key->value pairs + * @return int count of inserted rows + */ + public function insertIfNotExist($table, $input) { + $query = 'INSERT INTO `' .$table . '` (`' + . implode('`,`', array_keys($input)) . '`) SELECT ' + . str_repeat('?,', count($input)-1).'? ' // Is there a prettier alternative? + . 'FROM `' . $table . '` WHERE '; + + foreach($input as $key => $value) { + $query .= '`' . $key . '` = ? AND '; + } + $query = substr($query, 0, strlen($query) - 5); + $query .= ' HAVING COUNT(*) = 0'; + $inserts = array_values($input); + $inserts = array_merge($inserts, $inserts); + + try { + return $this->conn->executeUpdate($query, $inserts); + } catch(\Doctrine\DBAL\DBALException $e) { + $entry = 'DB Error: "'.$e->getMessage() . '"
'; + $entry .= 'Offending command was: ' . $query.'
'; + \OC_Log::write('core', $entry, \OC_Log::FATAL); + error_log('DB error: ' . $entry); + \OC_Template::printErrorPage( $entry ); + } + } +} diff --git a/lib/db/adapteroci8.php b/lib/db/adapteroci8.php new file mode 100644 index 0000000000000000000000000000000000000000..bc226e979eceae7a4a9463a7e6eb9029b44e71d0 --- /dev/null +++ b/lib/db/adapteroci8.php @@ -0,0 +1,28 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterOCI8 extends Adapter { + public function lastInsertId($table) { + if($table !== null) { + $suffix = '_SEQ'; + $table = '"'.$table.$suffix.'"'; + } + return $this->conn->realLastInsertId($table); + } + + const UNIX_TIMESTAMP_REPLACEMENT = "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400"; + public function fixupStatement($statement) { + $statement = str_replace( '`', '"', $statement ); + $statement = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement ); + return $statement; + } +} diff --git a/lib/db/adapterpgsql.php b/lib/db/adapterpgsql.php new file mode 100644 index 0000000000000000000000000000000000000000..990d71c9f29ff0df3727537e4d3927ee26704f24 --- /dev/null +++ b/lib/db/adapterpgsql.php @@ -0,0 +1,23 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterPgSql extends Adapter { + public function lastInsertId($table) { + return $this->conn->fetchColumn('SELECT lastval()'); + } + + const UNIX_TIMESTAMP_REPLACEMENT = 'cast(extract(epoch from current_timestamp) as integer)'; + public function fixupStatement($statement) { + $statement = str_replace( '`', '"', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement ); + return $statement; + } +} diff --git a/lib/db/adaptersqlite.php b/lib/db/adaptersqlite.php new file mode 100644 index 0000000000000000000000000000000000000000..fa6d308ae328c85d73c2ac1ff16485797aa1c09f --- /dev/null +++ b/lib/db/adaptersqlite.php @@ -0,0 +1,60 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterSqlite extends Adapter { + public function fixupStatement($statement) { + $statement = str_replace( '`', '"', $statement ); + $statement = str_ireplace( 'NOW()', 'datetime(\'now\')', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $statement ); + return $statement; + } + + public function insertIfNotExist($table, $input) { + // NOTE: For SQLite we have to use this clumsy approach + // otherwise all fieldnames used must have a unique key. + $query = 'SELECT COUNT(*) FROM `' . $table . '` WHERE '; + foreach($input as $key => $value) { + $query .= '`' . $key . '` = ? AND '; + } + $query = substr($query, 0, strlen($query) - 5); + try { + $stmt = $this->conn->prepare($query); + $result = $stmt->execute(array_values($input)); + } catch(\Doctrine\DBAL\DBALException $e) { + $entry = 'DB Error: "'.$e->getMessage() . '"
'; + $entry .= 'Offending command was: ' . $query . '
'; + \OC_Log::write('core', $entry, \OC_Log::FATAL); + error_log('DB error: '.$entry); + \OC_Template::printErrorPage( $entry ); + } + + if ($stmt->fetchColumn() === '0') { + $query = 'INSERT INTO `' . $table . '` (`' + . implode('`,`', array_keys($input)) . '`) VALUES(' + . str_repeat('?,', count($input)-1).'? ' . ')'; + } else { + return 0; //no rows updated + } + + try { + $statement = $this->conn->prepare($query); + $result = $statement->execute(array_values($input)); + } catch(\Doctrine\DBAL\DBALException $e) { + $entry = 'DB Error: "'.$e->getMessage() . '"
'; + $entry .= 'Offending command was: ' . $query.'
'; + \OC_Log::write('core', $entry, \OC_Log::FATAL); + error_log('DB error: ' . $entry); + \OC_Template::printErrorPage( $entry ); + } + + return $result; + } +} diff --git a/lib/db/adaptersqlsrv.php b/lib/db/adaptersqlsrv.php new file mode 100644 index 0000000000000000000000000000000000000000..d0a67af28a7a65b83481e7939264966c5b326ced --- /dev/null +++ b/lib/db/adaptersqlsrv.php @@ -0,0 +1,28 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + + +namespace OC\DB; + +class AdapterSQLSrv extends Adapter { + public function lastInsertId($table) { + if($table !== null) { + $table = $this->conn->replaceTablePrefix( $table ); + } + return $this->conn->lastInsertId($table); + } + + public function fixupStatement($statement) { + $statement = preg_replace( "/\`(.*?)`/", "[$1]", $statement ); + $statement = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $statement ); + $statement = str_replace( 'LENGTH(', 'LEN(', $statement ); + $statement = str_replace( 'SUBSTR(', 'SUBSTRING(', $statement ); + $statement = str_ireplace( 'UNIX_TIMESTAMP()', 'DATEDIFF(second,{d \'1970-01-01\'},GETDATE())', $statement ); + return $statement; + } +} diff --git a/lib/db/connection.php b/lib/db/connection.php new file mode 100644 index 0000000000000000000000000000000000000000..2581969dbd0a34a7a1ab3d61e381f49810943095 --- /dev/null +++ b/lib/db/connection.php @@ -0,0 +1,197 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\DB; +use Doctrine\DBAL\Driver; +use Doctrine\DBAL\Configuration; +use Doctrine\DBAL\Cache\QueryCacheProfile; +use Doctrine\Common\EventManager; + +class Connection extends \Doctrine\DBAL\Connection { + /** + * @var string $tablePrefix + */ + protected $tablePrefix; + + /** + * @var \OC\DB\Adapter $adapter + */ + protected $adapter; + + /** + * @var \Doctrine\DBAL\Driver\Statement[] $preparedQueries + */ + protected $preparedQueries = array(); + + protected $cachingQueryStatementEnabled = true; + + /** + * Initializes a new instance of the Connection class. + * + * @param array $params The connection parameters. + * @param \Doctrine\DBAL\Driver $driver + * @param \Doctrine\DBAL\Configuration $config + * @param \Doctrine\Common\EventManager $eventManager + * @throws \Exception + */ + public function __construct(array $params, Driver $driver, Configuration $config = null, + EventManager $eventManager = null) + { + if (!isset($params['adapter'])) { + throw new \Exception('adapter not set'); + } + if (!isset($params['tablePrefix'])) { + throw new \Exception('tablePrefix not set'); + } + parent::__construct($params, $driver, $config, $eventManager); + $this->adapter = new $params['adapter']($this); + $this->tablePrefix = $params['tablePrefix']; + } + + /** + * Prepares an SQL statement. + * + * @param string $statement The SQL statement to prepare. + * @param int $limit + * @param int $offset + * @return \Doctrine\DBAL\Driver\Statement The prepared statement. + */ + public function prepare( $statement, $limit=null, $offset=null ) { + if ($limit === -1) { + $limit = null; + } + if (!is_null($limit)) { + $platform = $this->getDatabasePlatform(); + $statement = $platform->modifyLimitQuery($statement, $limit, $offset); + } else { + if (isset($this->preparedQueries[$statement]) && $this->cachingQueryStatementEnabled) { + return $this->preparedQueries[$statement]; + } + $origStatement = $statement; + } + $statement = $this->replaceTablePrefix($statement); + $statement = $this->adapter->fixupStatement($statement); + + if(\OC_Config::getValue( 'log_query', false)) { + \OC_Log::write('core', 'DB prepare : '.$statement, \OC_Log::DEBUG); + } + $result = parent::prepare($statement); + if (is_null($limit) && $this->cachingQueryStatementEnabled) { + $this->preparedQueries[$origStatement] = $result; + } + return $result; + } + + /** + * Executes an, optionally parameterized, SQL query. + * + * If the query is parameterized, a prepared statement is used. + * If an SQLLogger is configured, the execution is logged. + * + * @param string $query The SQL query to execute. + * @param array $params The parameters to bind to the query, if any. + * @param array $types The types the previous parameters are in. + * @param QueryCacheProfile $qcp + * @return \Doctrine\DBAL\Driver\Statement The executed statement. + * @internal PERF: Directly prepares a driver statement, not a wrapper. + */ + public function executeQuery($query, array $params = array(), $types = array(), QueryCacheProfile $qcp = null) + { + $query = $this->replaceTablePrefix($query); + $query = $this->adapter->fixupStatement($query); + return parent::executeQuery($query, $params, $types, $qcp); + } + + /** + * Executes an SQL INSERT/UPDATE/DELETE query with the given parameters + * and returns the number of affected rows. + * + * This method supports PDO binding types as well as DBAL mapping types. + * + * @param string $query The SQL query. + * @param array $params The query parameters. + * @param array $types The parameter types. + * @return integer The number of affected rows. + * @internal PERF: Directly prepares a driver statement, not a wrapper. + */ + public function executeUpdate($query, array $params = array(), array $types = array()) + { + $query = $this->replaceTablePrefix($query); + $query = $this->adapter->fixupStatement($query); + return parent::executeUpdate($query, $params, $types); + } + + /** + * Returns the ID of the last inserted row, or the last value from a sequence object, + * depending on the underlying driver. + * + * Note: This method may not return a meaningful or consistent result across different drivers, + * because the underlying database may not even support the notion of AUTO_INCREMENT/IDENTITY + * columns or sequences. + * + * @param string $seqName Name of the sequence object from which the ID should be returned. + * @return string A string representation of the last inserted ID. + */ + public function lastInsertId($seqName = null) + { + if ($seqName) { + $seqName = $this->replaceTablePrefix($seqName); + } + return $this->adapter->lastInsertId($seqName); + } + + // internal use + public function realLastInsertId($seqName = null) + { + return parent::lastInsertId($seqName); + } + + /** + * @brief Insert a row if a matching row doesn't exists. + * @param string $table. The table to insert into in the form '*PREFIX*tableName' + * @param array $input. An array of fieldname/value pairs + * @return bool The return value from execute() + */ + public function insertIfNotExist($table, $input) { + return $this->adapter->insertIfNotExist($table, $input); + } + + /** + * returns the error code and message as a string for logging + * works with DoctrineException + * @return string + */ + public function getError() { + $msg = $this->errorCode() . ': '; + $errorInfo = $this->errorInfo(); + if (is_array($errorInfo)) { + $msg .= 'SQLSTATE = '.$errorInfo[0] . ', '; + $msg .= 'Driver Code = '.$errorInfo[1] . ', '; + $msg .= 'Driver Message = '.$errorInfo[2]; + } + return $msg; + } + + // internal use + /** + * @param string $statement + * @return string + */ + protected function replaceTablePrefix($statement) { + return str_replace( '*PREFIX*', $this->tablePrefix, $statement ); + } + + public function enableQueryStatementCaching() { + $this->cachingQueryStatementEnabled = true; + } + + public function disableQueryStatementCaching() { + $this->cachingQueryStatementEnabled = false; + $this->preparedQueries = array(); + } +} diff --git a/lib/db/schema.php b/lib/db/mdb2schemamanager.php similarity index 52% rename from lib/db/schema.php rename to lib/db/mdb2schemamanager.php index fa053c64ef05c38b4d8fe4a26d4fecf491ce7ea3..8e76f46c78fba481265e22a8cab6c92204ae5382 100644 --- a/lib/db/schema.php +++ b/lib/db/mdb2schemamanager.php @@ -6,20 +6,33 @@ * See the COPYING-README file. */ -class OC_DB_Schema { +namespace OC\DB; + +class MDB2SchemaManager { + /** + * @var \OC\DB\Connection $conn + */ + protected $conn; + + /** + * @param \OC\DB\Connection $conn + */ + public function __construct($conn) { + $this->conn = $conn; + } + /** * @brief saves database scheme to xml file - * @param \Doctrine\DBAL\Connection $conn * @param string $file name of file * @param int|string $mode * @return bool * * TODO: write more documentation */ - public static function getDbStructure( $conn, $file, $mode=MDB2_SCHEMA_DUMP_STRUCTURE) { - $sm = $conn->getSchemaManager(); + public function getDbStructure( $file, $mode = MDB2_SCHEMA_DUMP_STRUCTURE) { + $sm = $this->conn->getSchemaManager(); - return OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm); + return \OC_DB_MDB2SchemaWriter::saveSchemaToFile($file, $sm); } /** @@ -29,9 +42,10 @@ class OC_DB_Schema { * * TODO: write more documentation */ - public static function createDbFromStructure( $conn, $file ) { - $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); - return self::executeSchemaChange($conn, $toSchema); + public function createDbFromStructure( $file ) { + $schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); + $toSchema = $schemaReader->loadSchemaFromFile($file); + return $this->executeSchemaChange($toSchema); } /** @@ -39,11 +53,12 @@ class OC_DB_Schema { * @param string $file file to read structure from * @return bool */ - public static function updateDbFromStructure($conn, $file) { - $sm = $conn->getSchemaManager(); + public function updateDbFromStructure($file) { + $sm = $this->conn->getSchemaManager(); $fromSchema = $sm->createSchema(); - $toSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + $schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); + $toSchema = $schemaReader->loadSchemaFromFile($file); // remove tables we don't know about foreach($fromSchema->getTables() as $table) { @@ -61,76 +76,75 @@ class OC_DB_Schema { $comparator = new \Doctrine\DBAL\Schema\Comparator(); $schemaDiff = $comparator->compare($fromSchema, $toSchema); - $platform = $conn->getDatabasePlatform(); + $platform = $this->conn->getDatabasePlatform(); $tables = $schemaDiff->newTables + $schemaDiff->changedTables + $schemaDiff->removedTables; foreach($tables as $tableDiff) { $tableDiff->name = $platform->quoteIdentifier($tableDiff->name); } - - //$from = $fromSchema->toSql($conn->getDatabasePlatform()); - //$to = $toSchema->toSql($conn->getDatabasePlatform()); - //echo($from[9]); - //echo '
'; - //echo($to[9]); - //var_dump($from, $to); - return self::executeSchemaChange($conn, $schemaDiff); + return $this->executeSchemaChange($schemaDiff); } /** * @brief drop a table * @param string $tableName the table to drop */ - public static function dropTable($conn, $tableName) { - $sm = $conn->getSchemaManager(); + public function dropTable($tableName) { + $sm = $this->conn->getSchemaManager(); $fromSchema = $sm->createSchema(); $toSchema = clone $fromSchema; $toSchema->dropTable($tableName); - $sql = $fromSchema->getMigrateToSql($toSchema, $conn->getDatabasePlatform()); - $conn->execute($sql); + $sql = $fromSchema->getMigrateToSql($toSchema, $this->conn->getDatabasePlatform()); + $this->conn->executeQuery($sql); } /** * remove all tables defined in a database structure xml file * @param string $file the xml file describing the tables */ - public static function removeDBStructure($conn, $file) { - $fromSchema = OC_DB_MDB2SchemaReader::loadSchemaFromFile($file, $conn->getDatabasePlatform()); + public function removeDBStructure($file) { + $schemaReader = new MDB2SchemaReader(\OC_Config::getObject(), $this->conn->getDatabasePlatform()); + $fromSchema = $schemaReader->loadSchemaFromFile($file); $toSchema = clone $fromSchema; foreach($toSchema->getTables() as $table) { $toSchema->dropTable($table->getName()); } $comparator = new \Doctrine\DBAL\Schema\Comparator(); $schemaDiff = $comparator->compare($fromSchema, $toSchema); - self::executeSchemaChange($conn, $schemaDiff); + $this->executeSchemaChange($schemaDiff); } /** * @brief replaces the ownCloud tables with a new set * @param $file string path to the MDB2 xml db export file */ - public static function replaceDB( $conn, $file ) { - $apps = OC_App::getAllApps(); - self::beginTransaction(); + public function replaceDB( $file ) { + $apps = \OC_App::getAllApps(); + $this->conn->beginTransaction(); // Delete the old tables - self::removeDBStructure( $conn, OC::$SERVERROOT . '/db_structure.xml' ); + $this->removeDBStructure( \OC::$SERVERROOT . '/db_structure.xml' ); foreach($apps as $app) { - $path = OC_App::getAppPath($app).'/appinfo/database.xml'; + $path = \OC_App::getAppPath($app).'/appinfo/database.xml'; if(file_exists($path)) { - self::removeDBStructure( $conn, $path ); + $this->removeDBStructure( $path ); } } // Create new tables - self::commit(); + $this->conn->commit(); } - private static function executeSchemaChange($conn, $schema) { - $conn->beginTransaction(); - foreach($schema->toSql($conn->getDatabasePlatform()) as $sql) { - $conn->query($sql); + /** + * @param \Doctrine\DBAL\Schema\Schema $schema + * @return bool + */ + private function executeSchemaChange($schema) { + $this->conn->beginTransaction(); + foreach($schema->toSql($this->conn->getDatabasePlatform()) as $sql) { + $this->conn->query($sql); } - $conn->commit(); + $this->conn->commit(); + return true; } } diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 0ead9528c937d5b41d85b2103a7eb5182dbcf80a..b7128a2f176bedce181c0a88b0ea6cd7329f8210 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -6,35 +6,57 @@ * See the COPYING-README file. */ -class OC_DB_MDB2SchemaReader { - static protected $DBNAME; - static protected $DBTABLEPREFIX; - static protected $platform; +namespace OC\DB; +class MDB2SchemaReader { /** - * @param $file - * @param $platform + * @var string $DBNAME + */ + protected $DBNAME; + + /** + * @var string $DBTABLEPREFIX + */ + protected $DBTABLEPREFIX; + + /** + * @var \Doctrine\DBAL\Platforms\AbstractPlatform $platform + */ + protected $platform; + + /** + * @param \OC\Config $config + * @param \Doctrine\DBAL\Platforms\AbstractPlatform $platform + */ + public function __construct($config, $platform) { + $this->platform = $platform; + $this->DBNAME = $config->getValue('dbname', 'owncloud'); + $this->DBTABLEPREFIX = $config->getValue('dbtableprefix', 'oc_'); + } + + /** + * @param string $file * @return \Doctrine\DBAL\Schema\Schema - * @throws DomainException + * @throws \DomainException */ - public static function loadSchemaFromFile($file, $platform) { - self::$DBNAME = OC_Config::getValue( "dbname", "owncloud" ); - self::$DBTABLEPREFIX = OC_Config::getValue( "dbtableprefix", "oc_" ); - self::$platform = $platform; + public function loadSchemaFromFile($file) { $schema = new \Doctrine\DBAL\Schema\Schema(); $xml = simplexml_load_file($file); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': case 'create': case 'overwrite': case 'charset': break; case 'table': - self::loadTable($schema, $child); + $this->loadTable($schema, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -43,16 +65,20 @@ class OC_DB_MDB2SchemaReader { /** * @param\Doctrine\DBAL\Schema\Schema $schema - * @param $xml - * @throws DomainException + * @param \SimpleXMLElement $xml + * @throws \DomainException */ - private static function loadTable($schema, $xml) { - foreach($xml->children() as $child) { - switch($child->getName()) { + private function loadTable($schema, $xml) { + $table = null; + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; - $name = str_replace( '*dbprefix*', self::$DBTABLEPREFIX, $name ); - $name = self::$platform->quoteIdentifier($name); + $name = str_replace('*dbprefix*', $this->DBTABLEPREFIX, $name); + $name = $this->platform->quoteIdentifier($name); $table = $schema->createTable($name); break; case 'create': @@ -60,10 +86,13 @@ class OC_DB_MDB2SchemaReader { case 'charset': break; case 'declaration': - self::loadDeclaration($table, $child); + if (is_null($table)) { + throw new \DomainException('Table declaration before table name'); + } + $this->loadDeclaration($table, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -71,36 +100,47 @@ class OC_DB_MDB2SchemaReader { /** * @param \Doctrine\DBAL\Schema\Table $table - * @param $xml - * @throws DomainException + * @param \SimpleXMLElement $xml + * @throws \DomainException */ - private static function loadDeclaration($table, $xml) { - foreach($xml->children() as $child) { - switch($child->getName()) { + private function loadDeclaration($table, $xml) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'field': - self::loadField($table, $child); + $this->loadField($table, $child); break; case 'index': - self::loadIndex($table, $child); + $this->loadIndex($table, $child); break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } } - private static function loadField($table, $xml) { + /** + * @param \Doctrine\DBAL\Schema\Table $table + * @param \SimpleXMLElement $xml + * @throws \DomainException + */ + private function loadField($table, $xml) { $options = array(); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; - $name = self::$platform->quoteIdentifier($name); + $name = $this->platform->quoteIdentifier($name); break; case 'type': $type = (string)$child; - switch($type) { + switch ($type) { case 'text': $type = 'string'; break; @@ -110,8 +150,6 @@ class OC_DB_MDB2SchemaReader { case 'timestamp': $type = 'datetime'; break; - // TODO - return; } break; case 'length': @@ -119,15 +157,15 @@ class OC_DB_MDB2SchemaReader { $options['length'] = $length; break; case 'unsigned': - $unsigned = self::asBool($child); + $unsigned = $this->asBool($child); $options['unsigned'] = $unsigned; break; case 'notnull': - $notnull = self::asBool($child); + $notnull = $this->asBool($child); $options['notnull'] = $notnull; break; case 'autoincrement': - $autoincrement = self::asBool($child); + $autoincrement = $this->asBool($child); $options['autoincrement'] = $autoincrement; break; case 'default': @@ -138,8 +176,12 @@ class OC_DB_MDB2SchemaReader { $comment = (string)$child; $options['comment'] = $comment; break; + case 'primary': + $primary = $this->asBool($child); + $options['primary'] = $primary; + break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -153,22 +195,30 @@ class OC_DB_MDB2SchemaReader { } if ($type == 'integer') { $options['default'] = 0; + } elseif ($type == 'boolean') { + $options['default'] = false; } if (!empty($options['autoincrement']) && $options['autoincrement']) { unset($options['default']); } } - if ($type == 'integer' && isset($options['length'])) { + if ($type === 'integer' && isset($options['default'])) { + $options['default'] = (int)$options['default']; + } + if ($type === 'integer' && isset($options['length'])) { $length = $options['length']; if ($length < 4) { $type = 'smallint'; - } - else if ($length > 4) { + } else if ($length > 4) { $type = 'bigint'; } } + if ($type === 'boolean' && isset($options['default'])) { + $options['default'] = $this->asBool($options['default']); + } if (!empty($options['autoincrement']) - && !empty($options['notnull'])) { + && !empty($options['notnull']) + ) { $options['primary'] = true; } $table->addColumn($name, $type, $options); @@ -178,38 +228,49 @@ class OC_DB_MDB2SchemaReader { } } - private static function loadIndex($table, $xml) { + /** + * @param \Doctrine\DBAL\Schema\Table $table + * @param \SimpleXMLElement $xml + * @throws \DomainException + */ + private function loadIndex($table, $xml) { $name = null; $fields = array(); - foreach($xml->children() as $child) { - switch($child->getName()) { + foreach ($xml->children() as $child) { + /** + * @var \SimpleXMLElement $child + */ + switch ($child->getName()) { case 'name': $name = (string)$child; break; case 'primary': - $primary = self::asBool($child); + $primary = $this->asBool($child); break; case 'unique': - $unique = self::asBool($child); + $unique = $this->asBool($child); break; case 'field': - foreach($child->children() as $field) { - switch($field->getName()) { + foreach ($child->children() as $field) { + /** + * @var \SimpleXMLElement $field + */ + switch ($field->getName()) { case 'name': $field_name = (string)$field; - $field_name = self::$platform->quoteIdentifier($field_name); + $field_name = $this->platform->quoteIdentifier($field_name); $fields[] = $field_name; break; case 'sorting': break; default: - throw new DomainException('Unknown element: '.$field->getName()); + throw new \DomainException('Unknown element: ' . $field->getName()); } } break; default: - throw new DomainException('Unknown element: '.$child->getName()); + throw new \DomainException('Unknown element: ' . $child->getName()); } } @@ -217,22 +278,25 @@ class OC_DB_MDB2SchemaReader { if (isset($primary) && $primary) { $table->setPrimaryKey($fields, $name); } else - if (isset($unique) && $unique) { - $table->addUniqueIndex($fields, $name); - } else { - $table->addIndex($fields, $name); - } + if (isset($unique) && $unique) { + $table->addUniqueIndex($fields, $name); + } else { + $table->addIndex($fields, $name); + } } else { - throw new DomainException('Empty index definition: '.$name.' options:'. print_r($fields, true)); + throw new \DomainException('Empty index definition: ' . $name . ' options:' . print_r($fields, true)); } } - private static function asBool($xml) { + /** + * @param \SimpleXMLElement | string $xml + * @return bool + */ + private function asBool($xml) { $result = (string)$xml; if ($result == 'true') { $result = true; - } else - if ($result == 'false') { + } elseif ($result == 'false') { $result = false; } return (bool)$result; diff --git a/lib/db/statementwrapper.php b/lib/db/statementwrapper.php index f7bc45e068f8385fcbabbfee5602ddd4039fdcab..b8da1afc0e5c5bcb84c1b2f7a28c0e78a87593e2 100644 --- a/lib/db/statementwrapper.php +++ b/lib/db/statementwrapper.php @@ -53,7 +53,7 @@ class OC_DB_StatementWrapper { */ public function execute($input=array()) { if(OC_Config::getValue( "log_query", false)) { - $params_str = str_replace("\n"," ",var_export($input,true)); + $params_str = str_replace("\n", " ", var_export($input, true)); OC_Log::write('core', 'DB execute with arguments : '.$params_str, OC_Log::DEBUG); } $this->lastArguments = $input; @@ -134,7 +134,7 @@ class OC_DB_StatementWrapper { $host = OC_Config::getValue( "dbhost", "" ); $user = OC_Config::getValue( "dbuser", "" ); $pass = OC_Config::getValue( "dbpassword", "" ); - if (strpos($host,':')) { + if (strpos($host, ':')) { list($host, $port) = explode(':', $host, 2); } else { $port = false; diff --git a/lib/files/cache/cache.php b/lib/files/cache/cache.php index 3818fdbd84065fb43b7ed2d9f731dddcd3e74674..39e36684b7ba1a4bc878e6253cb61081fd2a7e30 100644 --- a/lib/files/cache/cache.php +++ b/lib/files/cache/cache.php @@ -200,7 +200,7 @@ class Cache { $data['path'] = $file; $data['parent'] = $this->getParentId($file); - $data['name'] = basename($file); + $data['name'] = \OC_Util::basename($file); $data['encrypted'] = isset($data['encrypted']) ? ((int)$data['encrypted']) : 0; list($queryParts, $params) = $this->buildParts($data); @@ -485,28 +485,28 @@ class Cache { * @return int */ public function calculateFolderSize($path) { - $id = $this->getId($path); - if ($id === -1) { - return 0; - } - $sql = 'SELECT `size` FROM `*PREFIX*filecache` WHERE `parent` = ? AND `storage` = ?'; - $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); $totalSize = 0; - $hasChilds = 0; - while ($row = $result->fetchRow()) { - $hasChilds = true; - $size = (int)$row['size']; - if ($size === -1) { - $totalSize = -1; - break; - } else { - $totalSize += $size; + $entry = $this->get($path); + if ($entry && $entry['mimetype'] === 'httpd/unix-directory') { + $id = $entry['fileid']; + $sql = 'SELECT SUM(`size`), MIN(`size`) FROM `*PREFIX*filecache` '. + 'WHERE `parent` = ? AND `storage` = ?'; + $result = \OC_DB::executeAudited($sql, array($id, $this->getNumericStorageId())); + if ($row = $result->fetchRow()) { + list($sum, $min) = array_values($row); + $sum = (int)$sum; + $min = (int)$min; + if ($min === -1) { + $totalSize = $min; + } else { + $totalSize = $sum; + } + if ($entry['size'] !== $totalSize) { + $this->update($id, array('size' => $totalSize)); + } + } } - - if ($hasChilds) { - $this->update($id, array('size' => $totalSize)); - } return $totalSize; } diff --git a/lib/files/cache/scanner.php b/lib/files/cache/scanner.php index bcd6032fcac7649e108afc5c72607451936deb48..597eabecf54532c2db0667478b082f37fa89de35 100644 --- a/lib/files/cache/scanner.php +++ b/lib/files/cache/scanner.php @@ -75,9 +75,10 @@ class Scanner extends BasicEmitter { * * @param string $file * @param int $reuseExisting + * @param bool $parentExistsInCache * @return array with metadata of the scanned file */ - public function scanFile($file, $reuseExisting = 0) { + public function scanFile($file, $reuseExisting = 0, $parentExistsInCache = false) { if (!self::isPartialFile($file) and !Filesystem::isFileBlacklisted($file) ) { @@ -85,7 +86,7 @@ class Scanner extends BasicEmitter { \OC_Hook::emit('\OC\Files\Cache\Scanner', 'scan_file', array('path' => $file, 'storage' => $this->storageId)); $data = $this->getData($file); if ($data) { - if ($file) { + if ($file and !$parentExistsInCache) { $parent = dirname($file); if ($parent === '.' or $parent === '/') { $parent = ''; @@ -97,7 +98,7 @@ class Scanner extends BasicEmitter { $newData = $data; if ($reuseExisting and $cacheData = $this->cache->get($file)) { // only reuse data if the file hasn't explicitly changed - if ($data['mtime'] === $cacheData['mtime']) { + if (isset($data['mtime']) && isset($cacheData['mtime']) && $data['mtime'] === $cacheData['mtime']) { if (($reuseExisting & self::REUSE_SIZE) && ($data['size'] === -1)) { $data['size'] = $cacheData['size']; } @@ -108,9 +109,9 @@ class Scanner extends BasicEmitter { // Only update metadata that has changed $newData = array_diff($data, $cacheData); } - } - if (!empty($newData)) { - $this->cache->put($file, $newData); + if (!empty($newData)) { + $this->cache->put($file, $newData); + } } return $data; } @@ -162,7 +163,7 @@ class Scanner extends BasicEmitter { $child = ($path) ? $path . '/' . $file : $file; if (!Filesystem::isIgnoredDir($file)) { $newChildren[] = $file; - $data = $this->scanFile($child, $reuse); + $data = $this->scanFile($child, $reuse, true); if ($data) { if ($data['size'] === -1) { if ($recursive === self::SCAN_RECURSIVE) { @@ -183,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 0000000000000000000000000000000000000000..242a81cb5a4f1097123c9a9c0d7a6732a4231cbd --- /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 0000000000000000000000000000000000000000..cd1536d2732897a4e85f87c3eda6a20202d68ec7 --- /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/files/utils/scanner.php b/lib/files/utils/scanner.php index 800bb64993429ba5f5dba1bd7149ac419f1984ab..f0dc41ffad3fe040190338e83383e4d97f5707fa 100644 --- a/lib/files/utils/scanner.php +++ b/lib/files/utils/scanner.php @@ -8,8 +8,8 @@ namespace OC\Files\Utils; -use OC\Hooks\BasicEmitter; use OC\Files\Filesystem; +use OC\Hooks\PublicEmitter; /** * Class Scanner @@ -20,7 +20,7 @@ use OC\Files\Filesystem; * * @package OC\Files\Utils */ -class Scanner extends BasicEmitter { +class Scanner extends PublicEmitter { /** * @var string $user */ @@ -60,11 +60,12 @@ class Scanner extends BasicEmitter { */ protected function attachListener($mount) { $scanner = $mount->getStorage()->getScanner(); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount) { - $this->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); + $emitter = $this; + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFile', function ($path) use ($mount, $emitter) { + $emitter->emit('\OC\Files\Utils\Scanner', 'scanFile', array($mount->getMountPoint() . $path)); }); - $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount) { - $this->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); + $scanner->listen('\OC\Files\Cache\Scanner', 'scanFolder', function ($path) use ($mount, $emitter) { + $emitter->emit('\OC\Files\Utils\Scanner', 'scanFolder', array($mount->getMountPoint() . $path)); }); } diff --git a/lib/group.php b/lib/group.php index 8fbf5f8641885cbee4500774e324b56eb84839c4..ba93dc129a11f09c3972446246af9f94f235ca3d 100644 --- a/lib/group.php +++ b/lib/group.php @@ -230,7 +230,7 @@ class OC_Group { public static function usersInGroup($gid, $search = '', $limit = -1, $offset = 0) { $group = self::getManager()->get($gid); if ($group) { - $users = $group->searchUsers($search . $limit, $offset); + $users = $group->searchUsers($search, $limit, $offset); $userIds = array(); foreach ($users as $user) { $userIds[] = $user->getUID(); diff --git a/lib/helper.php b/lib/helper.php index 0d55682bdb0630316277589d385a92ffdc366221..1024a570e36bd7979e66587285be84f15033be9a 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,7 +50,7 @@ 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. @@ -58,29 +59,26 @@ class OC_Helper { 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\SPACE_UNKNOWN){ + if ($freeSpace !== \OC\Files\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/image.php b/lib/image.php index c1b187608a6e1662f4ede1cc7855a6cb51500655..4bc38e20e56898f751d9463e13072653dd9aa767 100644 --- a/lib/image.php +++ b/lib/image.php @@ -392,7 +392,7 @@ class OC_Image { */ public function loadFromFile($imagepath=false) { // exif_imagetype throws "read error!" if file is less than 12 byte - if(!is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) { + if(!@is_file($imagepath) || !file_exists($imagepath) || filesize($imagepath) < 12 || !is_readable($imagepath)) { // Debug output disabled because this method is tried before loadFromBase64? OC_Log::write('core', 'OC_Image->loadFromFile, couldn\'t load: '.$imagepath, OC_Log::DEBUG); return false; diff --git a/lib/l10n.php b/lib/l10n.php index d35ce5fed14f4b19b3007f9e8b71c919b6ef4780..f93443b886a52e1794e2f39c5a14e13c2f588d7a 100644 --- a/lib/l10n.php +++ b/lib/l10n.php @@ -2,8 +2,10 @@ /** * ownCloud * + * @author Frank Karlitschek * @author Jakob Sack * @copyright 2012 Frank Karlitschek frank@owncloud.org + * @copyright 2013 Jakob Sack * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE @@ -23,7 +25,7 @@ /** * This class is for i18n and l10n */ -class OC_L10N{ +class OC_L10N { /** * cached instances */ @@ -54,6 +56,16 @@ class OC_L10N{ */ private $translations = array(); + /** + * Plural forms (string) + */ + private $plural_form_string = 'nplurals=2; plural=(n != 1);'; + + /** + * Plural forms (function) + */ + private $plural_form_function = null; + /** * Localization */ @@ -66,6 +78,8 @@ class OC_L10N{ /** * get an L10N instance + * @param $app string + * @param $lang string|null * @return OC_L10N */ public static function get($app, $lang=null) { @@ -81,8 +95,8 @@ class OC_L10N{ /** * @brief The constructor - * @param $app the app requesting l10n - * @param $lang default: null Language + * @param $app string app requesting l10n + * @param $lang string default: null Language * @returns OC_L10N-Object * * If language is not set, the constructor tries to find the right @@ -93,6 +107,17 @@ class OC_L10N{ $this->lang = $lang; } + public function load($transFile) { + $this->app = true; + include $transFile; + if(isset($TRANSLATIONS) && is_array($TRANSLATIONS)) { + $this->translations = $TRANSLATIONS; + } + if(isset($PLURAL_FORMS)) { + $this->plural_form_string = $PLURAL_FORMS; + } + } + protected function init() { if ($this->app === true) { return; @@ -138,6 +163,9 @@ class OC_L10N{ } } } + if(isset($PLURAL_FORMS)) { + $this->plural_form_string = $PLURAL_FORMS; + } } if(file_exists(OC::$SERVERROOT.'/core/l10n/l10n-'.$lang.'.php')) { @@ -153,6 +181,65 @@ class OC_L10N{ } } + /** + * @brief Creates a function that The constructor + * + * If language is not set, the constructor tries to find the right + * language. + * + * Parts of the code is copied from Habari: + * https://github.com/habari/system/blob/master/classes/locale.php + * @param $string string + * @return string + */ + protected function createPluralFormFunction($string){ + if(preg_match( '/^\s*nplurals\s*=\s*(\d+)\s*;\s*plural=(.*)$/u', $string, $matches)) { + // sanitize + $nplurals = preg_replace( '/[^0-9]/', '', $matches[1] ); + $plural = preg_replace( '#[^n0-9:\(\)\?\|\&=!<>+*/\%-]#', '', $matches[2] ); + + $body = str_replace( + array( 'plural', 'n', '$n$plurals', ), + array( '$plural', '$n', '$nplurals', ), + 'nplurals='. $nplurals . '; plural=' . $plural + ); + + // add parents + // important since PHP's ternary evaluates from left to right + $body .= ';'; + $res = ''; + $p = 0; + for($i = 0; $i < strlen($body); $i++) { + $ch = $body[$i]; + switch ( $ch ) { + case '?': + $res .= ' ? ('; + $p++; + break; + case ':': + $res .= ') : ('; + break; + case ';': + $res .= str_repeat( ')', $p ) . ';'; + $p = 0; + break; + default: + $res .= $ch; + } + } + + $body = $res . 'return ($plural>=$nplurals?$nplurals-1:$plural);'; + return create_function('$n', $body); + } + else { + // default: one plural form for all cases but n==1 (english) + return create_function( + '$n', + '$nplurals=2;$plural=($n==1?0:1);return ($plural>=$nplurals?$nplurals-1:$plural);' + ); + } + } + /** * @brief Translating * @param $text String The text we need a translation for @@ -166,6 +253,37 @@ class OC_L10N{ return new OC_L10N_String($this, $text, $parameters); } + /** + * @brief Translating + * @param $text_singular String the string to translate for exactly one object + * @param $text_plural String the string to translate for n objects + * @param $count Integer Number of objects + * @param array $parameters default:array() Parameters for sprintf + * @return \OC_L10N_String Translation or the same text + * + * Returns the translation. If no translation is found, $text will be + * returned. %n will be replaced with the number of objects. + * + * The correct plural is determined by the plural_forms-function + * provided by the po file. + * + */ + public function n($text_singular, $text_plural, $count, $parameters = array()) { + $this->init(); + $identifier = "_${text_singular}__${text_plural}_"; + if( array_key_exists($identifier, $this->translations)) { + return new OC_L10N_String( $this, $identifier, $parameters, $count ); + } + else{ + if($count === 1) { + return new OC_L10N_String($this, $text_singular, $parameters, $count); + } + else{ + return new OC_L10N_String($this, $text_plural, $parameters, $count); + } + } + } + /** * @brief Translating * @param $textArray The text array we need a translation for @@ -200,6 +318,42 @@ class OC_L10N{ return $this->translations; } + /** + * @brief getPluralFormString + * @returns string containing the gettext "Plural-Forms"-string + * + * Returns a string like "nplurals=2; plural=(n != 1);" + */ + public function getPluralFormString() { + $this->init(); + return $this->plural_form_string; + } + + /** + * @brief getPluralFormFunction + * @returns string the plural form function + * + * returned function accepts the argument $n + */ + public function getPluralFormFunction() { + $this->init(); + if(is_null($this->plural_form_function)) { + $this->plural_form_function = $this->createPluralFormFunction($this->plural_form_string); + } + return $this->plural_form_function; + } + + /** + * @brief get localizations + * @returns Fetch all localizations + * + * Returns an associative array with all localizations + */ + public function getLocalizations() { + $this->init(); + return $this->localizations; + } + /** * @brief Localization * @param $type Type of localization @@ -230,8 +384,11 @@ class OC_L10N{ case 'date': case 'datetime': case 'time': - if($data instanceof DateTime) return $data->format($this->localizations[$type]); - elseif(is_string($data)) $data = strtotime($data); + if($data instanceof DateTime) { + return $data->format($this->localizations[$type]); + } elseif(is_string($data) && !is_numeric($data)) { + $data = strtotime($data); + } $locales = array(self::findLanguage()); if (strlen($locales[0]) == 2) { $locales[] = $locales[0].'_'.strtoupper($locales[0]); @@ -298,6 +455,12 @@ class OC_L10N{ } } + $default_language = OC_Config::getValue('default_language', false); + + if($default_language !== false) { + return $default_language; + } + if(isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { $accepted_languages = preg_split('/,\s*/', strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE'])); if(is_array($app)) { diff --git a/lib/l10n/af_ZA.php b/lib/l10n/af_ZA.php index de32778026fbad9c6158e0fc0496e3b35a21b40c..d6bf5771e8dbaf0fa09969eccc848ca5901622a7 100644 --- a/lib/l10n/af_ZA.php +++ b/lib/l10n/af_ZA.php @@ -1,9 +1,14 @@ - "Hulp", "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 107b27a1fc861333ac41c7a863e2dad3551f7f04..2e95f28841e54362aa4efb18bf7b8d97c29a4b6c 100644 --- a/lib/l10n/ar.php +++ b/lib/l10n/ar.php @@ -1,9 +1,9 @@ - "المساعدة", "Personal" => "شخصي", "Settings" => "إعدادات", "Users" => "المستخدمين", -"Apps" => "التطبيقات", "Admin" => "المدير", "web services under your control" => "خدمات الشبكة تحت سيطرتك", "ZIP download is turned off." => "تحميل ملفات ZIP متوقف", @@ -37,16 +37,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/lib/l10n/be.php b/lib/l10n/be.php new file mode 100644 index 0000000000000000000000000000000000000000..1570411eb8630b92fbeaef1c55fe0a5183d450ad --- /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 e23112c83025bf73744d7c9bf53049786404db9d..10d3bb610afd0137e198b6585f432f6260a6f04e 100644 --- a/lib/l10n/bg_BG.php +++ b/lib/l10n/bg_BG.php @@ -1,9 +1,9 @@ - "Помощ", "Personal" => "Лични", "Settings" => "Настройки", "Users" => "Потребители", -"Apps" => "Приложения", "Admin" => "Админ", "web services under your control" => "уеб услуги под Ваш контрол", "ZIP download is turned off." => "Изтеглянето като ZIP е изключено.", @@ -38,16 +38,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/bn_BD.php b/lib/l10n/bn_BD.php index ab1d9b94d0dc1471ba7db57034fa680de38d9ccf..a42435a2a4729d3ba359401d25b0fad11707f834 100644 --- a/lib/l10n/bn_BD.php +++ b/lib/l10n/bn_BD.php @@ -1,9 +1,9 @@ - "সহায়িকা", "Personal" => "ব্যক্তিগত", "Settings" => "নিয়ামকসমূহ", "Users" => "ব্যবহারকারী", -"Apps" => "অ্যাপ", "Admin" => "প্রশাসন", "web services under your control" => "ওয়েব সার্ভিস আপনার হাতের মুঠোয়", "ZIP download is turned off." => "ZIP ডাউনলোড বন্ধ করা আছে।", @@ -16,13 +16,14 @@ "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" => "বছর পূর্বে" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/bs.php b/lib/l10n/bs.php new file mode 100644 index 0000000000000000000000000000000000000000..3cb98906e623a59a4dc0ee42739b3e245c8a1470 --- /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 93f7fa5f7bc456516f72740777f8aaece7b94414..95faed498cd2638ce6eb522d31d3dacc07ca82ec 100644 --- a/lib/l10n/ca.php +++ b/lib/l10n/ca.php @@ -1,15 +1,18 @@ - "Ajuda", "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", +"cannot open \"%s\"" => "no es pot obrir \"%s\"", "ZIP download is turned off." => "La baixada en ZIP està desactivada.", "Files need to be downloaded one by one." => "Els fitxers s'han de baixar d'un en un.", "Back to Files" => "Torna a Fitxers", "Selected files too large to generate zip file." => "Els fitxers seleccionats son massa grans per generar un fitxer zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixeu els fitxers en trossos petits, de forma separada, o pregunteu a l'administrador.", "couldn't be determined" => "no s'ha pogut determinar", "Application is not enabled" => "L'aplicació no està habilitada", "Authentication error" => "Error d'autenticació", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "No s'ha trobat la categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/cs_CZ.php b/lib/l10n/cs_CZ.php index 917f383bb8989bb7c1e6ee041a7626523276c821..ec54376024d748641efb7124cc66e147f8f6faa2 100644 --- a/lib/l10n/cs_CZ.php +++ b/lib/l10n/cs_CZ.php @@ -1,15 +1,18 @@ - "Nápověda", "Personal" => "Osobní", "Settings" => "Nastavení", "Users" => "Uživatelé", -"Apps" => "Aplikace", "Admin" => "Administrace", -"web services under your control" => "služby webu pod Vaší kontrolou", -"ZIP download is turned off." => "Stahování ZIPu je vypnuto.", +"Failed to upgrade \"%s\"." => "Selhala aktualizace verze \"%s\".", +"web services under your control" => "webové služby pod Vaší kontrolou", +"cannot open \"%s\"" => "nelze otevřít \"%s\"", +"ZIP download is turned off." => "Stahování v ZIPu je vypnuto.", "Files need to be downloaded one by one." => "Soubory musí být stahovány jednotlivě.", "Back to Files" => "Zpět k souborům", -"Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření zip souboru.", +"Selected files too large to generate zip file." => "Vybrané soubory jsou příliš velké pro vytvoření ZIP souboru.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stáhněte soubory po menších částech, samostatně, nebo se obraťte na správce.", "couldn't be determined" => "nelze zjistit", "Application is not enabled" => "Aplikace není povolena", "Authentication error" => "Chyba ověření", @@ -20,34 +23,34 @@ "%s enter the database username." => "Zadejte uživatelské jméno %s databáze.", "%s enter the database name." => "Zadejte název databáze pro %s databáze.", "%s you may not use dots in the database name" => "V názvu databáze %s nesmíte používat tečky.", -"MS SQL username and/or password not valid: %s" => "Uživatelské jméno, či heslo MSSQL není platné: %s", -"You need to enter either an existing account or the administrator." => "Musíte zadat existující účet, či správce.", -"MySQL username and/or password not valid" => "Uživatelské jméno, či heslo MySQL není platné", -"DB Error: \"%s\"" => "Chyba DB: \"%s\"", -"Offending command was: \"%s\"" => "Podezřelý příkaz byl: \"%s\"", +"MS SQL username and/or password not valid: %s" => "Uživatelské jméno či heslo MSSQL není platné: %s", +"You need to enter either an existing account or the administrator." => "Musíte zadat existující účet či správce.", +"MySQL username and/or password not valid" => "Uživatelské jméno či heslo MySQL není platné", +"DB Error: \"%s\"" => "Chyba databáze: \"%s\"", +"Offending command was: \"%s\"" => "Příslušný příkaz byl: \"%s\"", "MySQL user '%s'@'localhost' exists already." => "Uživatel '%s'@'localhost' již v MySQL existuje.", -"Drop this user from MySQL" => "Zahodit uživatele z MySQL", +"Drop this user from MySQL" => "Zrušte tohoto uživatele z MySQL", "MySQL user '%s'@'%%' already exists" => "Uživatel '%s'@'%%' již v MySQL existuje", -"Drop this user from MySQL." => "Zahodit uživatele z MySQL.", +"Drop this user from MySQL." => "Zrušte tohoto uživatele z MySQL", "Oracle connection could not be established" => "Spojení s Oracle nemohlo být navázáno", -"Oracle username and/or password not valid" => "Uživatelské jméno, či heslo Oracle není platné", -"Offending command was: \"%s\", name: %s, password: %s" => "Podezřelý příkaz byl: \"%s\", jméno: %s, heslo: %s", -"PostgreSQL username and/or password not valid" => "Uživatelské jméno, či heslo PostgreSQL není platné", +"Oracle username and/or password not valid" => "Uživatelské jméno či heslo Oracle není platné", +"Offending command was: \"%s\", name: %s, password: %s" => "Příslušný příkaz byl: \"%s\", jméno: %s, heslo: %s", +"PostgreSQL username and/or password not valid" => "Uživatelské jméno či heslo PostgreSQL není platné", "Set an admin username." => "Zadejte uživatelské jméno správce.", "Set an admin password." => "Zadejte heslo správce.", -"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, protože rozhraní WebDAV je rozbité.", +"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 vteřinami", -"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", +"seconds ago" => "před pár sekundami", +"_%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:", "Could not find category \"%s\"" => "Nelze nalézt kategorii \"%s\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/cy_GB.php b/lib/l10n/cy_GB.php index 27140ba6dbbd52f1e9969e158a0bde94db2448e3..649a1ebffac0062a20d61d1b5ef7dc209cd0f3af 100644 --- a/lib/l10n/cy_GB.php +++ b/lib/l10n/cy_GB.php @@ -1,9 +1,9 @@ - "Cymorth", "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.", @@ -37,16 +37,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/lib/l10n/da.php b/lib/l10n/da.php index 5f11453bcdd6c78e992b9ea9eb31c2bad5a72e08..cbf6b16debb967cc21505e0d997da8b3d0f82d06 100644 --- a/lib/l10n/da.php +++ b/lib/l10n/da.php @@ -1,15 +1,18 @@ - "Hjælp", "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", +"cannot open \"%s\"" => "Kan ikke åbne \"%s\"", "ZIP download is turned off." => "ZIP-download er slået fra.", "Files need to be downloaded one by one." => "Filer skal downloades en for en.", "Back to Files" => "Tilbage til Filer", "Selected files too large to generate zip file." => "De markerede filer er for store til at generere en ZIP-fil.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download filerne i små bider, seperat, eller kontakt venligst din administrator.", "couldn't be determined" => "kunne ikke fastslås", "Application is not enabled" => "Programmet er ikke aktiveret", "Authentication error" => "Adgangsfejl", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Kunne ikke finde kategorien \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de.php b/lib/l10n/de.php index 4ef02402b9bc0c76e80ac9837503e1056768d284..798322fdb472eb136491987fe6b865e8e1f05166 100644 --- a/lib/l10n/de.php +++ b/lib/l10n/de.php @@ -1,15 +1,18 @@ - "Hilfe", "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", +"cannot open \"%s\"" => "Öffnen von \"%s\" fehlgeschlagen", "ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Lade die Dateien in kleineren, separaten, Stücken herunter oder bitte deinen Administrator.", "couldn't be determined" => "konnte nicht festgestellt werden", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Fehler bei der Anmeldung", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_AT.php b/lib/l10n/de_AT.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /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 new file mode 100644 index 0000000000000000000000000000000000000000..d99c144f18541a33561ebab762423c7b173a7cd4 --- /dev/null +++ b/lib/l10n/de_CH.php @@ -0,0 +1,56 @@ + "Hilfe", +"Personal" => "Persönlich", +"Settings" => "Einstellungen", +"Users" => "Benutzer", +"Admin" => "Administrator", +"Failed to upgrade \"%s\"." => "Konnte \"%s\" nicht aktualisieren.", +"web services under your control" => "Web-Services unter Ihrer Kontrolle", +"cannot open \"%s\"" => "Öffnen von \"%s\" fehlgeschlagen", +"ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", +"Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", +"Back to Files" => "Zurück zu \"Dateien\"", +"Selected files too large to generate zip file." => "Die gewählten Dateien sind zu gross, um eine ZIP-Datei zu erstellen.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", +"couldn't be determined" => "konnte nicht ermittelt werden", +"Application is not enabled" => "Die Anwendung ist nicht aktiviert", +"Authentication error" => "Authentifizierungs-Fehler", +"Token expired. Please reload page." => "Token abgelaufen. Bitte laden Sie die Seite neu.", +"Files" => "Dateien", +"Text" => "Text", +"Images" => "Bilder", +"%s enter the database username." => "%s geben Sie den Datenbank-Benutzernamen an.", +"%s enter the database name." => "%s geben Sie den Datenbank-Namen an.", +"%s you may not use dots in the database name" => "%s Der Datenbank-Name darf keine Punkte enthalten", +"MS SQL username and/or password not valid: %s" => "MS SQL Benutzername und/oder Passwort ungültig: %s", +"You need to enter either an existing account or the administrator." => "Sie müssen entweder ein existierendes Benutzerkonto oder das Administratoren-Konto angeben.", +"MySQL username and/or password not valid" => "MySQL Benutzername und/oder Passwort ungültig", +"DB Error: \"%s\"" => "DB Fehler: \"%s\"", +"Offending command was: \"%s\"" => "Fehlerhafter Befehl war: \"%s\"", +"MySQL user '%s'@'localhost' exists already." => "MySQL Benutzer '%s'@'localhost' existiert bereits.", +"Drop this user from MySQL" => "Lösche diesen Benutzer aus MySQL", +"MySQL user '%s'@'%%' already exists" => "MySQL Benutzer '%s'@'%%' existiert bereits", +"Drop this user from MySQL." => "Lösche diesen Benutzer aus MySQL.", +"Oracle connection could not be established" => "Die Oracle-Verbindung konnte nicht aufgebaut werden.", +"Oracle username and/or password not valid" => "Oracle Benutzername und/oder Passwort ungültig", +"Offending command was: \"%s\", name: %s, password: %s" => "Fehlerhafter Befehl war: \"%s\", Name: %s, Passwort: %s", +"PostgreSQL username and/or password not valid" => "PostgreSQL Benutzername und/oder Passwort ungültig", +"Set an admin username." => "Setze Administrator Benutzername.", +"Set an admin password." => "Setze Administrator Passwort", +"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", +"_%n minute ago_::_%n minutes ago_" => array("",""), +"_%n hour ago_::_%n hours ago_" => array("",""), +"today" => "Heute", +"yesterday" => "Gestern", +"_%n day go_::_%n days ago_" => array("",""), +"last month" => "Letzten Monat", +"_%n month ago_::_%n months ago_" => array("",""), +"last year" => "Letztes Jahr", +"years ago" => "Vor Jahren", +"Caused by:" => "Verursacht durch:", +"Could not find category \"%s\"" => "Die Kategorie «%s» konnte nicht gefunden werden." +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/de_DE.php b/lib/l10n/de_DE.php index 823d423abcd533a1e7c371ac254db720c5618f88..698a36bd78071b7fc3d2e9f98c50e2a5dde26237 100644 --- a/lib/l10n/de_DE.php +++ b/lib/l10n/de_DE.php @@ -1,15 +1,18 @@ - "Hilfe", "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", +"cannot open \"%s\"" => "Öffnen von \"%s\" fehlgeschlagen", "ZIP download is turned off." => "Der ZIP-Download ist deaktiviert.", "Files need to be downloaded one by one." => "Die Dateien müssen einzeln heruntergeladen werden.", "Back to Files" => "Zurück zu \"Dateien\"", "Selected files too large to generate zip file." => "Die gewählten Dateien sind zu groß, um eine ZIP-Datei zu erstellen.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laden Sie die Dateien in kleineren, separaten, Stücken herunter oder bitten Sie Ihren Administrator.", "couldn't be determined" => "konnte nicht ermittelt werden", "Application is not enabled" => "Die Anwendung ist nicht aktiviert", "Authentication error" => "Authentifizierungs-Fehler", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Die Kategorie \"%s\" konnte nicht gefunden werden." ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/el.php b/lib/l10n/el.php index 3e876aefdfec1f92f03ebd5bcba8363353112f9f..0fbd134ae92c5fce4ec112568821f9b8e765f787 100644 --- a/lib/l10n/el.php +++ b/lib/l10n/el.php @@ -1,15 +1,18 @@ - "Βοήθεια", "Personal" => "Προσωπικά", "Settings" => "Ρυθμίσεις", "Users" => "Χρήστες", -"Apps" => "Εφαρμογές", "Admin" => "Διαχειριστής", +"Failed to upgrade \"%s\"." => "Αποτυχία αναβάθμισης του \"%s\".", "web services under your control" => "υπηρεσίες δικτύου υπό τον έλεγχό σας", +"cannot open \"%s\"" => "αδυναμία ανοίγματος \"%s\"", "ZIP download is turned off." => "Η λήψη ZIP απενεργοποιήθηκε.", "Files need to be downloaded one by one." => "Τα αρχεία πρέπει να ληφθούν ένα-ένα.", "Back to Files" => "Πίσω στα Αρχεία", "Selected files too large to generate zip file." => "Τα επιλεγμένα αρχεία είναι μεγάλα ώστε να δημιουργηθεί αρχείο zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Λήψη των αρχείων σε μικρότερα κομμάτια, χωριστά ή ρωτήστε τον διαχειριστή σας.", "couldn't be determined" => "δεν μπορούσε να προσδιορισθεί", "Application is not enabled" => "Δεν ενεργοποιήθηκε η εφαρμογή", "Authentication error" => "Σφάλμα πιστοποίησης", @@ -38,16 +41,16 @@ "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:" => "Προκλήθηκε από:", "Could not find category \"%s\"" => "Αδυναμία εύρεσης κατηγορίας \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/en@pirate.php b/lib/l10n/en@pirate.php index 02ff0331e0513195a656150f57f4da764945a17d..a8175b1400f397396cd3cea4d8a5d1bf6cd0b641 100644 --- a/lib/l10n/en@pirate.php +++ b/lib/l10n/en@pirate.php @@ -1,3 +1,9 @@ - "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 fd45f30c69bf1197dff7e7ada28b7c6ded7dee05..5311dd6eb159722129f1b0c44c01cddc5344592c 100644 --- a/lib/l10n/eo.php +++ b/lib/l10n/eo.php @@ -1,9 +1,9 @@ - "Helpo", "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.", @@ -34,16 +34,15 @@ "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”" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es.php b/lib/l10n/es.php index 1f243a224e41e15c1ab24aca67b8c92fbd5299b3..2029c9b17fef3591db7316465ee2cebc7079013e 100644 --- a/lib/l10n/es.php +++ b/lib/l10n/es.php @@ -1,15 +1,18 @@ - "Ayuda", "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", +"cannot open \"%s\"" => "No se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados uno por uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargue los archivos en trozos más pequeños, por separado o solicítelos amablemente su administrador.", "couldn't be determined" => "no pudo ser determinado", "Application is not enabled" => "La aplicación no está habilitada", "Authentication error" => "Error de autenticación", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "No puede encontrar la categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/es_AR.php b/lib/l10n/es_AR.php index cd1a0fbb530dd6b38c551ae14a0f2e6b60dfadbb..0632c7540526f75264b6896d1b9913ee3f7ee83e 100644 --- a/lib/l10n/es_AR.php +++ b/lib/l10n/es_AR.php @@ -1,15 +1,18 @@ - "Ayuda", "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", +"cannot open \"%s\"" => "no se puede abrir \"%s\"", "ZIP download is turned off." => "La descarga en ZIP está desactivada.", "Files need to be downloaded one by one." => "Los archivos deben ser descargados de a uno.", "Back to Files" => "Volver a Archivos", "Selected files too large to generate zip file." => "Los archivos seleccionados son demasiado grandes para generar el archivo zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargá los archivos en partes más chicas, de forma separada, o pedíselos al administrador", "couldn't be determined" => "no se pudo determinar", "Application is not enabled" => "La aplicación no está habilitada", "Authentication error" => "Error al autenticar", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "No fue posible encontrar la categoría \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/et_EE.php b/lib/l10n/et_EE.php index 4da2c36d6acc508824d08c520db3054b61e8d58e..a7d823a62c1819498a1767a760f3526c6c4b6deb 100644 --- a/lib/l10n/et_EE.php +++ b/lib/l10n/et_EE.php @@ -1,15 +1,18 @@ - "Abiinfo", "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", +"cannot open \"%s\"" => "ei suuda avada \"%s\"", "ZIP download is turned off." => "ZIP-ina allalaadimine on välja lülitatud.", "Files need to be downloaded one by one." => "Failid tuleb alla laadida ükshaaval.", "Back to Files" => "Tagasi failide juurde", "Selected files too large to generate zip file." => "Valitud failid on ZIP-faili loomiseks liiga suured.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Laadi failid alla eraldi väiksemate osadena või küsi nõu oma süsteemiadminstraatorilt.", "couldn't be determined" => "ei suudetud tuvastada", "Application is not enabled" => "Rakendus pole sisse lülitatud", "Authentication error" => "Autentimise viga", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Ei leia kategooriat \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/eu.php b/lib/l10n/eu.php index 131ac6d7daa3f25517554c7fca9a40ab09d2737c..c5ce243f2fae321b384aa80a42183c66bad2e616 100644 --- a/lib/l10n/eu.php +++ b/lib/l10n/eu.php @@ -1,15 +1,18 @@ - "Laguntza", "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", +"cannot open \"%s\"" => "ezin da \"%s\" ireki", "ZIP download is turned off." => "ZIP deskarga ez dago gaituta.", "Files need to be downloaded one by one." => "Fitxategiak banan-banan deskargatu behar dira.", "Back to Files" => "Itzuli fitxategietara", "Selected files too large to generate zip file." => "Hautatuko fitxategiak oso handiak dira zip fitxategia sortzeko.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Deskargatu fitzategiak zati txikiagoetan, banan-banan edo eskatu mesedez zure administradoreari", "couldn't be determined" => "ezin izan da zehaztu", "Application is not enabled" => "Aplikazioa ez dago gaituta", "Authentication error" => "Autentifikazio errorea", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Ezin da \"%s\" kategoria aurkitu" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fa.php b/lib/l10n/fa.php index 40a778e2126808eb12423e05df095b1c54bf7778..e2d8ed50aa34feaa92fc99a1c4d48f87234c7ba7 100644 --- a/lib/l10n/fa.php +++ b/lib/l10n/fa.php @@ -1,9 +1,9 @@ - "راه‌نما", "Personal" => "شخصی", "Settings" => "تنظیمات", "Users" => "کاربران", -"Apps" => " برنامه ها", "Admin" => "مدیر", "web services under your control" => "سرویس های تحت وب در کنترل شما", "ZIP download is turned off." => "دانلود به صورت فشرده غیر فعال است", @@ -38,16 +38,15 @@ "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 یافت نشد" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/fi.php b/lib/l10n/fi.php index daaddb25e48f83ccb62f74982992765348296cae..ac1f80a8f738f26db3c05aebbb7e85f22dbaf51f 100644 --- a/lib/l10n/fi.php +++ b/lib/l10n/fi.php @@ -1,3 +1,5 @@ - "asetukset" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/fi_FI.php b/lib/l10n/fi_FI.php index 75576c3034dc59edf81d50ef96a3d6d73139486e..dccb1753042deebc63918b0f2c8ecdfa231873b5 100644 --- a/lib/l10n/fi_FI.php +++ b/lib/l10n/fi_FI.php @@ -1,9 +1,9 @@ - "Ohje", "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ä.", @@ -34,16 +34,16 @@ "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 9f30b60269654c19a585217b72ae0d80483b48ee..0a040bb9e8e66c4c82948fb2d27ee7de13862b47 100644 --- a/lib/l10n/fr.php +++ b/lib/l10n/fr.php @@ -1,9 +1,9 @@ - "Aide", "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é.", @@ -38,16 +38,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/gl.php b/lib/l10n/gl.php index 351f18c715588f9a45bbb25e0ab3f09331f6bafc..f105578ace22fc2c9afbb23bc36890eb8aa683f2 100644 --- a/lib/l10n/gl.php +++ b/lib/l10n/gl.php @@ -1,15 +1,18 @@ - "Axuda", "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", +"cannot open \"%s\"" => "non foi posíbel abrir «%s»", "ZIP download is turned off." => "As descargas ZIP están desactivadas.", "Files need to be downloaded one by one." => "Os ficheiros necesitan seren descargados dun en un.", "Back to Files" => "Volver aos ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados son demasiado grandes como para xerar un ficheiro zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descargue os ficheiros en cachos máis pequenos e por separado, ou pídallos amabelmente ao seu administrador.", "couldn't be determined" => "non foi posíbel determinalo", "Application is not enabled" => "O aplicativo non está activado", "Authentication error" => "Produciuse un erro de autenticación", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Non foi posíbel atopar a categoría «%s»" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/he.php b/lib/l10n/he.php index 2e011e342a07d923cc0902c68e71758e6251bad1..bab1a6ff42499711a367ac55571361564bf4a0fe 100644 --- a/lib/l10n/he.php +++ b/lib/l10n/he.php @@ -1,9 +1,9 @@ - "עזרה", "Personal" => "אישי", "Settings" => "הגדרות", "Users" => "משתמשים", -"Apps" => "יישומים", "Admin" => "מנהל", "web services under your control" => "שירותי רשת תחת השליטה שלך", "ZIP download is turned off." => "הורדת ZIP כבויה", @@ -19,16 +19,15 @@ "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“" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hi.php b/lib/l10n/hi.php index f507993f494c76d4035c2df996be026801af2130..039dfa4465d96c001ae18f2339313e1db0e20087 100644 --- a/lib/l10n/hi.php +++ b/lib/l10n/hi.php @@ -1,7 +1,12 @@ - "सहयोग", "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 41c34d3108cafab4f3795a0b2aa0c5f613f89f0e..d217f924099cd86f4a041ceb06aa9141646e9993 100644 --- a/lib/l10n/hr.php +++ b/lib/l10n/hr.php @@ -1,18 +1,23 @@ - "Pomoć", "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" ); +$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/hu_HU.php b/lib/l10n/hu_HU.php index 3aa04274fa3a7db07fd3bcf58ab037920684c543..c8aff3add724eaaac87f220581fdc6a7cf468d0b 100644 --- a/lib/l10n/hu_HU.php +++ b/lib/l10n/hu_HU.php @@ -1,15 +1,18 @@ - "Súgó", "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", +"cannot open \"%s\"" => "nem sikerült megnyitni \"%s\"", "ZIP download is turned off." => "A ZIP-letöltés nincs engedélyezve.", "Files need to be downloaded one by one." => "A fájlokat egyenként kell letölteni.", "Back to Files" => "Vissza a Fájlokhoz", "Selected files too large to generate zip file." => "A kiválasztott fájlok túl nagyok a zip tömörítéshez.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Tölts le a fileokat kisebb chunkokban, kölün vagy kérj segitséget a rendszergazdádtól.", "couldn't be determined" => "nem határozható meg", "Application is not enabled" => "Az alkalmazás nincs engedélyezve", "Authentication error" => "Azonosítási hiba", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Ez a kategória nem található: \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/hy.php b/lib/l10n/hy.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /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 e5f6e3ddf581c438612c158c524950ca50166836..34f43bc424a641fac3dfc07db3b8548b051e354a 100644 --- a/lib/l10n/ia.php +++ b/lib/l10n/ia.php @@ -1,11 +1,16 @@ - "Adjuta", "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 c247651f0c969246ce7c89d0ceab175673dd4ec6..eaec65516b84756f32e8f7a214deccccdf86c048 100644 --- a/lib/l10n/id.php +++ b/lib/l10n/id.php @@ -1,9 +1,9 @@ - "Bantuan", "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.", @@ -37,16 +37,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/is.php b/lib/l10n/is.php index 0f7a22fd13ef1e34560201d2b6952ac13f44c824..7512d278fb85f89daec1755772a04772a89a85a9 100644 --- a/lib/l10n/is.php +++ b/lib/l10n/is.php @@ -1,9 +1,9 @@ - "Hjálp", "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.", @@ -17,16 +17,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/it.php b/lib/l10n/it.php index 74483315ca016f9fbe1fc23722e3e324a94202bf..c29ab4833e30bae5c214d70e86a6cc67d068627b 100644 --- a/lib/l10n/it.php +++ b/lib/l10n/it.php @@ -1,15 +1,18 @@ - "Aiuto", "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", +"cannot open \"%s\"" => "impossibile aprire \"%s\"", "ZIP download is turned off." => "Lo scaricamento in formato ZIP è stato disabilitato.", "Files need to be downloaded one by one." => "I file devono essere scaricati uno alla volta.", "Back to Files" => "Torna ai file", "Selected files too large to generate zip file." => "I file selezionati sono troppo grandi per generare un file zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Scarica i file in blocchi più piccoli, separatamente o chiedi al tuo amministratore.", "couldn't be determined" => "non può essere determinato", "Application is not enabled" => "L'applicazione non è abilitata", "Authentication error" => "Errore di autenticazione", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Impossibile trovare la categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ja_JP.php b/lib/l10n/ja_JP.php index 36d06d360b95ec3158e0440812d39db9bf3e2cb0..482806d49461c2606d9c128804c116f101d2750a 100644 --- a/lib/l10n/ja_JP.php +++ b/lib/l10n/ja_JP.php @@ -1,15 +1,18 @@ - "ヘルプ", "Personal" => "個人", "Settings" => "設定", "Users" => "ユーザ", -"Apps" => "アプリ", "Admin" => "管理", +"Failed to upgrade \"%s\"." => "\"%s\" へのアップグレードに失敗しました。", "web services under your control" => "管理下のウェブサービス", +"cannot open \"%s\"" => "\"%s\" が開けません", "ZIP download is turned off." => "ZIPダウンロードは無効です。", "Files need to be downloaded one by one." => "ファイルは1つずつダウンロードする必要があります。", "Back to Files" => "ファイルに戻る", "Selected files too large to generate zip file." => "選択したファイルはZIPファイルの生成には大きすぎます。", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "ファイルは、小さいファイルに分割されてダウンロードされます。もしくは、管理者にお尋ねください。", "couldn't be determined" => "測定できませんでした", "Application is not enabled" => "アプリケーションは無効です", "Authentication error" => "認証エラー", @@ -38,16 +41,16 @@ "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:" => "原因は以下:", "Could not find category \"%s\"" => "カテゴリ \"%s\" が見つかりませんでした" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ka.php b/lib/l10n/ka.php index e5a3e6596684f6dc2dbeb860d626c135ec61e103..04fefe8bdf1edfa27eb427e67c89ec0cc1e7e5e4 100644 --- a/lib/l10n/ka.php +++ b/lib/l10n/ka.php @@ -1,4 +1,5 @@ - "შველა", "Personal" => "პერსონა", "Users" => "მომხმარებლები", @@ -6,10 +7,11 @@ "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 c6e77da2dac6ce36a9e3a3ebcced02731639ab14..3cb55277d6c146b9c66c45ac16aad50a0c416411 100644 --- a/lib/l10n/ka_GE.php +++ b/lib/l10n/ka_GE.php @@ -1,9 +1,9 @@ - "დახმარება", "Personal" => "პირადი", "Settings" => "პარამეტრები", "Users" => "მომხმარებელი", -"Apps" => "აპლიკაციები", "Admin" => "ადმინისტრატორი", "web services under your control" => "web services under your control", "ZIP download is turned off." => "ZIP download–ი გათიშულია", @@ -37,16 +37,15 @@ "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\" კატეგორიის მოძებნა ვერ მოხერხდა" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/kn.php b/lib/l10n/kn.php new file mode 100644 index 0000000000000000000000000000000000000000..e7b09649a240500e39096daf02b7cc137312f444 --- /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 1f32ebe402a10c7496f361692d2bc95eb44e4b83..824882c984d360d635496a3e025433d736e58525 100644 --- a/lib/l10n/ko.php +++ b/lib/l10n/ko.php @@ -1,9 +1,9 @@ - "도움말", "Personal" => "개인", "Settings" => "설정", "Users" => "사용자", -"Apps" => "앱", "Admin" => "관리자", "web services under your control" => "내가 관리하는 웹 서비스", "ZIP download is turned off." => "ZIP 다운로드가 비활성화되었습니다.", @@ -27,16 +27,15 @@ "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\"을(를) 찾을 수 없습니다." ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/ku_IQ.php b/lib/l10n/ku_IQ.php index 6d7461a1685ba084616659529e6b7f6b73a2f3b0..c99f9dd2a1277d24777163957417d5e0f4c5ca23 100644 --- a/lib/l10n/ku_IQ.php +++ b/lib/l10n/ku_IQ.php @@ -1,8 +1,13 @@ - "یارمەتی", "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 867b0a3740933c066ac22a84fe4da5944df54660..c25f5b55bd5b9f7458374ff48ae71cfe82bc1f47 100644 --- a/lib/l10n/lb.php +++ b/lib/l10n/lb.php @@ -1,20 +1,23 @@ - "Hëllef", "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" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/lt_LT.php b/lib/l10n/lt_LT.php index 5e3a04820330d63a346239f9f6384a0a3d62e9da..fb109b86339be00a87c5865ffbc5dcb6aea431e2 100644 --- a/lib/l10n/lt_LT.php +++ b/lib/l10n/lt_LT.php @@ -1,9 +1,9 @@ - "Pagalba", "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.", @@ -17,15 +17,14 @@ "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" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/lv.php b/lib/l10n/lv.php index 662f4d5b245647f280d516cd40a23a7faacb230a..2a2daee8d89f5638a5d9d60249b402a20b4d3021 100644 --- a/lib/l10n/lv.php +++ b/lib/l10n/lv.php @@ -1,9 +1,9 @@ - "Palīdzība", "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.", @@ -37,16 +37,15 @@ "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”" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/lib/l10n/mk.php b/lib/l10n/mk.php index 30fa9ab73c1671dd28921507f9bda614491a42aa..69d4a1cb6946947650c59036be7ae1ad9a2d06bf 100644 --- a/lib/l10n/mk.php +++ b/lib/l10n/mk.php @@ -1,9 +1,9 @@ - "Помош", "Personal" => "Лично", "Settings" => "Подесувања", "Users" => "Корисници", -"Apps" => "Аппликации", "Admin" => "Админ", "web services under your control" => "веб сервиси под Ваша контрола", "ZIP download is turned off." => "Преземање во ZIP е исклучено", @@ -17,16 +17,15 @@ "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“" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/lib/l10n/ml_IN.php b/lib/l10n/ml_IN.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /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 a2930597971a22f126aa800211f9e23feed0a7b8..17ef07f83dd46266bf42842b10722504d152371d 100644 --- a/lib/l10n/ms_MY.php +++ b/lib/l10n/ms_MY.php @@ -1,12 +1,17 @@ - "Bantuan", "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 f214a1ed79426afd8c884f434201550cca719f25..b2e9ca181397bd13be4de3a1016626785aed3b5c 100644 --- a/lib/l10n/my_MM.php +++ b/lib/l10n/my_MM.php @@ -1,7 +1,7 @@ - "အကူအညီ", "Users" => "သုံးစွဲသူ", -"Apps" => "Apps", "Admin" => "အက်ဒမင်", "web services under your control" => "သင်၏ထိန်းချုပ်မှု့အောက်တွင်ရှိသော Web services", "ZIP download is turned off." => "ZIP ဒေါင်းလုတ်ကိုပိတ်ထားသည်", @@ -14,16 +14,15 @@ "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\"ခေါင်းစဉ်ကို ရှာမတွေ့ပါ" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/nb_NO.php b/lib/l10n/nb_NO.php index ab2d4f91920f8772a5f2a1d1a17617e8bc47de24..8e7d095d369b2efea37ae0710658e4a4adeb5b0c 100644 --- a/lib/l10n/nb_NO.php +++ b/lib/l10n/nb_NO.php @@ -1,9 +1,9 @@ - "Hjelp", "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", @@ -19,16 +19,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ne.php b/lib/l10n/ne.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /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 de80d1b5d56045a40e9435711892deb80f644deb..2d737bd5ebdd1a1ae22e9d491d43a7622a87b169 100644 --- a/lib/l10n/nl.php +++ b/lib/l10n/nl.php @@ -1,15 +1,18 @@ - "Help", "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", +"cannot open \"%s\"" => "Kon \"%s\" niet openen", "ZIP download is turned off." => "ZIP download is uitgeschakeld.", "Files need to be downloaded one by one." => "Bestanden moeten één voor één worden gedownload.", "Back to Files" => "Terug naar bestanden", "Selected files too large to generate zip file." => "De geselecteerde bestanden zijn te groot om een zip bestand te maken.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Download de bestanden in kleinere brokken, appart of vraag uw administrator.", "couldn't be determined" => "kon niet worden vastgesteld", "Application is not enabled" => "De applicatie is niet actief", "Authentication error" => "Authenticatie fout", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Kon categorie \"%s\" niet vinden" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/nn_NO.php b/lib/l10n/nn_NO.php index c17393981095d8b4e545dcc466894654632b41d7..28b4f7b7d945b8d74cc0d9b68a9408a042a808df 100644 --- a/lib/l10n/nn_NO.php +++ b/lib/l10n/nn_NO.php @@ -1,9 +1,9 @@ - "Hjelp", "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", @@ -12,11 +12,14 @@ "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" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/oc.php b/lib/l10n/oc.php index a72da90790aca632ed309f0e5f7f6a43b0414fc7..40a527cc76c0cf8ecf0a28ba295c22b91ae8ae6d 100644 --- a/lib/l10n/oc.php +++ b/lib/l10n/oc.php @@ -1,9 +1,9 @@ - "Ajuda", "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.", @@ -12,12 +12,14 @@ "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" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/pl.php b/lib/l10n/pl.php index bbca1913b70c1417e918b0044eb9770d9e1d6cec..1740676080e88b434742bf360ff8aab235e127db 100644 --- a/lib/l10n/pl.php +++ b/lib/l10n/pl.php @@ -1,15 +1,18 @@ - "Pomoc", "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", +"cannot open \"%s\"" => "Nie można otworzyć \"%s\"", "ZIP download is turned off." => "Pobieranie ZIP jest wyłączone.", "Files need to be downloaded one by one." => "Pliki muszą zostać pobrane pojedynczo.", "Back to Files" => "Wróć do plików", "Selected files too large to generate zip file." => "Wybrane pliki są zbyt duże, aby wygenerować plik zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Pobierz pliki w mniejszy kawałkach, oddzielnie lub poproś administratora o zwiększenie limitu.", "couldn't be determined" => "nie może zostać znaleziony", "Application is not enabled" => "Aplikacja nie jest włączona", "Authentication error" => "Błąd uwierzytelniania", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Nie można odnaleźć kategorii \"%s\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/pl_PL.php b/lib/l10n/pl_PL.php index 67cf0a33259224384df3bdc17b8b5eb84385d08e..5494e3dab25cc64b2ebc7fbcd2adad3f1595bb29 100644 --- a/lib/l10n/pl_PL.php +++ b/lib/l10n/pl_PL.php @@ -1,3 +1,5 @@ - "Ustawienia" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/lib/l10n/pt_BR.php b/lib/l10n/pt_BR.php index 029331fdec8206b9f6d769619fcac3ece2424287..4ebf587cf868222dd9f89c69a46f3791677f69c9 100644 --- a/lib/l10n/pt_BR.php +++ b/lib/l10n/pt_BR.php @@ -1,15 +1,18 @@ - "Ajuda", "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", +"cannot open \"%s\"" => "não pode abrir \"%s\"", "ZIP download is turned off." => "Download ZIP está desligado.", "Files need to be downloaded one by one." => "Arquivos precisam ser baixados um de cada vez.", "Back to Files" => "Voltar para Arquivos", "Selected files too large to generate zip file." => "Arquivos selecionados são muito grandes para gerar arquivo zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Baixe os arquivos em pedaços menores, separadamente ou solicite educadamente ao seu administrador.", "couldn't be determined" => "não pôde ser determinado", "Application is not enabled" => "Aplicação não está habilitada", "Authentication error" => "Erro de autenticação", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Impossível localizar categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/lib/l10n/pt_PT.php b/lib/l10n/pt_PT.php index 7480026e920d43f5fd42e18989a5219c6effd90f..3131499e130c4eeb8d9d81a8c54b5bbe3a148fb9 100644 --- a/lib/l10n/pt_PT.php +++ b/lib/l10n/pt_PT.php @@ -1,15 +1,18 @@ - "Ajuda", "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", +"cannot open \"%s\"" => "Não foi possível abrir \"%s\"", "ZIP download is turned off." => "Descarregamento em ZIP está desligado.", "Files need to be downloaded one by one." => "Os ficheiros precisam de ser descarregados um por um.", "Back to Files" => "Voltar a Ficheiros", "Selected files too large to generate zip file." => "Os ficheiros seleccionados são grandes demais para gerar um ficheiro zip.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Descarregue os ficheiros em partes menores, separados ou peça gentilmente ao seu administrador.", "couldn't be determined" => "Não foi possível determinar", "Application is not enabled" => "A aplicação não está activada", "Authentication error" => "Erro na autenticação", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Não foi encontrado a categoria \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/ro.php b/lib/l10n/ro.php index 5a34e9571e5dbcc4b13c2e0ca67fbdf9b1d181d2..2b6d14d58f3ce4c8f751e73e3464425fe6ca3940 100644 --- a/lib/l10n/ro.php +++ b/lib/l10n/ro.php @@ -1,9 +1,9 @@ - "Ajutor", "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ă.", @@ -18,18 +18,17 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/lib/l10n/ru.php b/lib/l10n/ru.php index 052b0487c6cb554f5ba0755e27dc87c8916b833c..92b14b9b89ea6c8884052d9e8824890626156bdc 100644 --- a/lib/l10n/ru.php +++ b/lib/l10n/ru.php @@ -1,15 +1,18 @@ - "Помощь", "Personal" => "Личное", "Settings" => "Конфигурация", "Users" => "Пользователи", -"Apps" => "Приложения", "Admin" => "Admin", +"Failed to upgrade \"%s\"." => "Не смог обновить \"%s\".", "web services under your control" => "веб-сервисы под вашим управлением", +"cannot open \"%s\"" => "не могу открыть \"%s\"", "ZIP download is turned off." => "ZIP-скачивание отключено.", "Files need to be downloaded one by one." => "Файлы должны быть загружены по одному.", "Back to Files" => "Назад к файлам", "Selected files too large to generate zip file." => "Выбранные файлы слишком велики, чтобы создать zip файл.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Загрузите файл маленьшими порциями, раздельно или вежливо попросите Вашего администратора.", "couldn't be determined" => "Невозможно установить", "Application is not enabled" => "Приложение не разрешено", "Authentication error" => "Ошибка аутентификации", @@ -38,16 +41,16 @@ "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:" => "Вызвано:", "Could not find category \"%s\"" => "Категория \"%s\" не найдена" ); +$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/ru_RU.php b/lib/l10n/ru_RU.php deleted file mode 100644 index 7639a3cc97e4f605e1343ad34ee941cc1fddb2cb..0000000000000000000000000000000000000000 --- a/lib/l10n/ru_RU.php +++ /dev/null @@ -1,4 +0,0 @@ - "Настройки", -"Text" => "Текст" -); diff --git a/lib/l10n/si_LK.php b/lib/l10n/si_LK.php index 49ded7026e0a6227a7306c3bb063f3d6fa92b778..d10804cae69396d929b1fb5683e5de1901ca54c2 100644 --- a/lib/l10n/si_LK.php +++ b/lib/l10n/si_LK.php @@ -1,9 +1,9 @@ - "උදව්", "Personal" => "පෞද්ගලික", "Settings" => "සිටුවම්", "Users" => "පරිශීලකයන්", -"Apps" => "යෙදුම්", "Admin" => "පරිපාලක", "web services under your control" => "ඔබට පාලනය කළ හැකි වෙබ් සේවාවන්", "ZIP download is turned off." => "ZIP භාගත කිරීම් අක්‍රියයි", @@ -17,12 +17,14 @@ "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" => "අවුරුදු කීපයකට පෙර" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sk.php b/lib/l10n/sk.php new file mode 100644 index 0000000000000000000000000000000000000000..54812b15a6f41bb15db873cda47fe6648fd5e474 --- /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 64ad1e540f3c14036aa166d13e359576552f9e73..ef3dc6eb9776a7005d791ba69b53135af198b25a 100644 --- a/lib/l10n/sk_SK.php +++ b/lib/l10n/sk_SK.php @@ -1,15 +1,18 @@ - "Pomoc", "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", +"cannot open \"%s\"" => "nemožno otvoriť \"%s\"", "ZIP download is turned off." => "Sťahovanie súborov ZIP je vypnuté.", "Files need to be downloaded one by one." => "Súbory musia byť nahrávané jeden za druhým.", "Back to Files" => "Späť na súbory", "Selected files too large to generate zip file." => "Zvolené súbory sú príliš veľké na vygenerovanie zip súboru.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Stiahnite súbory po menších častiach, samostatne, alebo sa obráťte na správcu.", "couldn't be determined" => "nedá sa zistiť", "Application is not enabled" => "Aplikácia nie je zapnutá", "Authentication error" => "Chyba autentifikácie", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Nemožno nájsť danú kategóriu \"%s\"" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/lib/l10n/sl.php b/lib/l10n/sl.php index a5b4decd61a0ab01d27f4ea1bb7f4149990f0e1e..73a397f3c84f2dc12faaa8ac01c75568fe3d06d1 100644 --- a/lib/l10n/sl.php +++ b/lib/l10n/sl.php @@ -1,9 +1,9 @@ - "Pomoč", "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.", @@ -38,16 +38,15 @@ "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." ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/lib/l10n/sq.php b/lib/l10n/sq.php index df5e2a317433c50d6da794b50e5bd02ecdd83cb0..ca2364f9864832df253525d1de0e699cf06d7bd9 100644 --- a/lib/l10n/sq.php +++ b/lib/l10n/sq.php @@ -1,9 +1,9 @@ - "Ndihmë", "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.", @@ -37,16 +37,15 @@ "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" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sr.php b/lib/l10n/sr.php index 71d627e78900df2bf632c3894f0eac8587dba017..c42419b6d92973358fdc0c0716851ad9cd2a0ef0 100644 --- a/lib/l10n/sr.php +++ b/lib/l10n/sr.php @@ -1,9 +1,9 @@ - "Помоћ", "Personal" => "Лично", "Settings" => "Поставке", "Users" => "Корисници", -"Apps" => "Апликације", "Admin" => "Администратор", "web services under your control" => "веб сервиси под контролом", "ZIP download is turned off." => "Преузимање ZIP-а је искључено.", @@ -20,16 +20,15 @@ "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“." ); +$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/sr@latin.php b/lib/l10n/sr@latin.php index 13cedc832791bab4f8bdb66b4f47fe16fe227a52..5ba51bc0ba708e4de0adc9dcae752a4ff1f65584 100644 --- a/lib/l10n/sr@latin.php +++ b/lib/l10n/sr@latin.php @@ -1,11 +1,16 @@ - "Pomoć", "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/string.php b/lib/l10n/string.php index 8eef10071e6451010dfb385f889bcfc1cb5536af..88c85b32e70f8551093e4d342d0f362e098000dd 100644 --- a/lib/l10n/string.php +++ b/lib/l10n/string.php @@ -7,19 +7,50 @@ */ class OC_L10N_String{ + /** + * @var OC_L10N + */ protected $l10n; - public function __construct($l10n, $text, $parameters) { + + /** + * @var string + */ + protected $text; + + /** + * @var array + */ + protected $parameters; + + /** + * @var integer + */ + protected $count; + + public function __construct($l10n, $text, $parameters, $count = 1) { $this->l10n = $l10n; $this->text = $text; $this->parameters = $parameters; - + $this->count = $count; } public function __toString() { $translations = $this->l10n->getTranslations(); + + $text = $this->text; if(array_key_exists($this->text, $translations)) { - return vsprintf($translations[$this->text], $this->parameters); + if(is_array($translations[$this->text])) { + $fn = $this->l10n->getPluralFormFunction(); + $id = $fn($this->count); + $text = $translations[$this->text][$id]; + } + else{ + $text = $translations[$this->text]; + } } - return vsprintf($this->text, $this->parameters); + + // Replace %n first (won't interfere with vsprintf) + $text = str_replace('%n', $this->count, $text); + return vsprintf($text, $this->parameters); } } diff --git a/lib/l10n/sv.php b/lib/l10n/sv.php index 56776e574aaf153b1c38ba8ae4306a018029f419..fa3ae318cee55d01271c0236d8ec1895e94fa485 100644 --- a/lib/l10n/sv.php +++ b/lib/l10n/sv.php @@ -1,15 +1,18 @@ - "Hjälp", "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", +"cannot open \"%s\"" => "Kan inte öppna \"%s\"", "ZIP download is turned off." => "Nerladdning av ZIP är avstängd.", "Files need to be downloaded one by one." => "Filer laddas ner en åt gången.", "Back to Files" => "Tillbaka till Filer", "Selected files too large to generate zip file." => "Valda filer är för stora för att skapa zip-fil.", +"Download the files in smaller chunks, seperately or kindly ask your administrator." => "Ladda ner filerna i mindre bitar, separat eller fråga din administratör.", "couldn't be determined" => "kunde inte bestämmas", "Application is not enabled" => "Applikationen är inte aktiverad", "Authentication error" => "Fel vid autentisering", @@ -38,16 +41,16 @@ "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:", "Could not find category \"%s\"" => "Kunde inte hitta kategorin \"%s\"" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/sw_KE.php b/lib/l10n/sw_KE.php new file mode 100644 index 0000000000000000000000000000000000000000..15f78e0bce6d7e36688d2913f6affa4c17472a65 --- /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 9193f6f1d2f9c45cbcd79d541d72a1065eebd248..e70e65845bea2d65fda8ec396c7ff99aeb01508b 100644 --- a/lib/l10n/ta_LK.php +++ b/lib/l10n/ta_LK.php @@ -1,9 +1,9 @@ - "உதவி", "Personal" => "தனிப்பட்ட", "Settings" => "அமைப்புகள்", "Users" => "பயனாளர்", -"Apps" => "செயலிகள்", "Admin" => "நிர்வாகம்", "web services under your control" => "வலைய சேவைகள் உங்களுடைய கட்டுப்பாட்டின் கீழ் உள்ளது", "ZIP download is turned off." => "வீசொலிப் பூட்டு பதிவிறக்கம் நிறுத்தப்பட்டுள்ளது.", @@ -17,16 +17,15 @@ "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\" ஐ கண்டுப்பிடிக்க முடியவில்லை" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/te.php b/lib/l10n/te.php index 87c73d790e2c4dbe164e7e706ba9bc1b960daf1a..524ea0c60248b396ddbd63f641dd315b4b114e94 100644 --- a/lib/l10n/te.php +++ b/lib/l10n/te.php @@ -1,13 +1,17 @@ - "సహాయం", "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" => "సంవత్సరాల క్రితం" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/lib/l10n/th_TH.php b/lib/l10n/th_TH.php index 4ec6ef55f4e91210aba933c9d434dad3e861716f..53a150d8f1e76c6ae2b04ff758fd97891abb22c6 100644 --- a/lib/l10n/th_TH.php +++ b/lib/l10n/th_TH.php @@ -1,9 +1,9 @@ - "ช่วยเหลือ", "Personal" => "ส่วนตัว", "Settings" => "ตั้งค่า", "Users" => "ผู้ใช้งาน", -"Apps" => "แอปฯ", "Admin" => "ผู้ดูแล", "web services under your control" => "เว็บเซอร์วิสที่คุณควบคุมการใช้งานได้", "ZIP download is turned off." => "คุณสมบัติการดาวน์โหลด zip ถูกปิดการใช้งานไว้", @@ -18,16 +18,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/tr.php b/lib/l10n/tr.php index 6325ad9886aecdd86efc67e290579c98a79d181a..f95933645dae6031ff9507866dfba77be34d8555 100644 --- a/lib/l10n/tr.php +++ b/lib/l10n/tr.php @@ -1,15 +1,18 @@ - "Yardım", "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ı", @@ -38,16 +41,16 @@ "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 62d91616c1d3cd02a9270195be5d287eb578a673..731ad904d7e7480a3c094a52d6ab1ed4b095ff3b 100644 --- a/lib/l10n/ug.php +++ b/lib/l10n/ug.php @@ -1,19 +1,18 @@ - "ياردەم", "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 7ff7829e1a25e126bca179f54f6ecaf87b13e22c..26617396e06bb3ff6a728070f5161e94f645a4fb 100644 --- a/lib/l10n/uk.php +++ b/lib/l10n/uk.php @@ -1,9 +1,9 @@ - "Допомога", "Personal" => "Особисте", "Settings" => "Налаштування", "Users" => "Користувачі", -"Apps" => "Додатки", "Admin" => "Адмін", "web services under your control" => "підконтрольні Вам веб-сервіси", "ZIP download is turned off." => "ZIP завантаження вимкнено.", @@ -37,16 +37,15 @@ "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\"" ); +$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/ur_PK.php b/lib/l10n/ur_PK.php index 21e711c6df5fb10e46739f6be8d69dbac4bbe124..7dc967ccd9323ff236cccbb31a49b183e43d6c1a 100644 --- a/lib/l10n/ur_PK.php +++ b/lib/l10n/ur_PK.php @@ -1,9 +1,14 @@ - "مدد", "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 f2a7d669b8f25607ed7671163798c7024c0833bc..ebdb3ab281076573db1f6fc48a372c24b5e99f52 100644 --- a/lib/l10n/vi.php +++ b/lib/l10n/vi.php @@ -1,9 +1,9 @@ - "Giúp đỡ", "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.", @@ -18,16 +18,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_CN.GB2312.php b/lib/l10n/zh_CN.GB2312.php index 4780a69eb34aa84d6c4b55a50ed72b49a17a6ff3..bc81ff8fe1b8a5d12528f27dce766edc809efa44 100644 --- a/lib/l10n/zh_CN.GB2312.php +++ b/lib/l10n/zh_CN.GB2312.php @@ -1,9 +1,9 @@ - "帮助", "Personal" => "私人", "Settings" => "设置", "Users" => "用户", -"Apps" => "程序", "Admin" => "管理员", "web services under your control" => "您控制的网络服务", "ZIP download is turned off." => "ZIP 下载已关闭", @@ -19,13 +19,14 @@ "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" => "年前" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_CN.php b/lib/l10n/zh_CN.php index 7630f885c4a2ccec67b3ae591c179d78293609f5..b814b055a224ca06e1f11cbd681e6542864dad64 100644 --- a/lib/l10n/zh_CN.php +++ b/lib/l10n/zh_CN.php @@ -1,9 +1,9 @@ - "帮助", "Personal" => "个人", "Settings" => "设置", "Users" => "用户", -"Apps" => "应用", "Admin" => "管理", "web services under your control" => "您控制的web服务", "ZIP download is turned off." => "ZIP 下载已经关闭", @@ -38,16 +38,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/l10n/zh_HK.php b/lib/l10n/zh_HK.php index cfa33ec36f5e5b30ee168e173a6c629be10a6360..ca3e6d504e7e4af4d8e2d107b2f38698d5079a0a 100644 --- a/lib/l10n/zh_HK.php +++ b/lib/l10n/zh_HK.php @@ -1,13 +1,18 @@ - "幫助", "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 afd196f7c821315f49f40649e98bbf7d2b9eab72..83e0dff39268dd3c19066d7dcb4098a4c4815481 100644 --- a/lib/l10n/zh_TW.php +++ b/lib/l10n/zh_TW.php @@ -1,9 +1,9 @@ - "說明", "Personal" => "個人", "Settings" => "設定", "Users" => "使用者", -"Apps" => "應用程式", "Admin" => "管理", "web services under your control" => "由您控制的網路服務", "ZIP download is turned off." => "ZIP 下載已關閉。", @@ -38,16 +38,15 @@ "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\"" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/lib/legacy/config.php b/lib/legacy/config.php index 5294a48ea44a428cea76efd6b71209230729a01a..7e4980137377baadc8959bd1fe2a8326a753b752 100644 --- a/lib/legacy/config.php +++ b/lib/legacy/config.php @@ -46,6 +46,10 @@ class OC_Config { */ public static $object; + public static function getObject() { + return self::$object; + } + /** * @brief Lists all available config keys * @return array with key names diff --git a/lib/log/owncloud.php b/lib/log/owncloud.php index 7a11a588330c7a79902fda7e82a25a0fcf4aaebe..d16b9537a1658ca4f9835494e2d9265433dd0b41 100644 --- a/lib/log/owncloud.php +++ b/lib/log/owncloud.php @@ -44,12 +44,14 @@ class OC_Log_Owncloud { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { $minLevel=min(OC_Config::getValue( "loglevel", OC_Log::WARN ), OC_Log::ERROR); if($level>=$minLevel) { - $time = date("F d, Y H:i:s", time()); + // default to ISO8601 + $format = OC_Config::getValue('logdateformat', 'c'); + $time = date($format, time()); $entry=array('app'=>$app, 'message'=>$message, 'level'=>$level, 'time'=> $time); $handle = @fopen(self::$logFile, 'a'); if ($handle) { @@ -61,8 +63,8 @@ class OC_Log_Owncloud { /** * get entries from the log in reverse chronological order - * @param int limit - * @param int offset + * @param int $limit + * @param int $offset * @return array */ public static function getEntries($limit=50, $offset=0) { diff --git a/lib/log/syslog.php b/lib/log/syslog.php index d1fb28d8b0a7f7e1a36c5ac2601f49eaf2845dbb..c98deab7109bed68359baaa4fc41429c98df3825 100644 --- a/lib/log/syslog.php +++ b/lib/log/syslog.php @@ -28,10 +28,13 @@ class OC_Log_Syslog { * write a message in the log * @param string $app * @param string $message - * @param int level + * @param int $level */ public static function write($app, $message, $level) { - $syslog_level = self::$levels[$level]; - syslog($syslog_level, '{'.$app.'} '.$message); + $minLevel = min(OC_Config::getValue("loglevel", OC_Log::WARN), OC_Log::ERROR); + if ($level >= $minLevel) { + $syslog_level = self::$levels[$level]; + syslog($syslog_level, '{'.$app.'} '.$message); + } } } diff --git a/lib/memcache/apcu.php b/lib/memcache/apcu.php new file mode 100644 index 0000000000000000000000000000000000000000..ccc1aa6e5622652d9c43bfaef608bbb8d75472ce --- /dev/null +++ b/lib/memcache/apcu.php @@ -0,0 +1,28 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace OC\Memcache; + +class APCu extends APC { + public function clear($prefix = '') { + $ns = $this->getNamespace() . $prefix; + $ns = preg_quote($ns, '/'); + $iter = new \APCIterator('/^'.$ns.'/'); + return apc_delete($iter); + } + + static public function isAvailable() { + if (!extension_loaded('apcu')) { + return false; + } elseif (!ini_get('apc.enable_cli') && \OC::$CLI) { + return false; + } else { + return true; + } + } +} diff --git a/lib/memcache/factory.php b/lib/memcache/factory.php index b1b49971031f2063e0f9f3d431c2925bb841782f..4c1b1ab207f228cbb5bb7a1774d2820733b0c6ad 100644 --- a/lib/memcache/factory.php +++ b/lib/memcache/factory.php @@ -18,6 +18,8 @@ class Factory { function create($prefix = '') { if (XCache::isAvailable()) { return new XCache($prefix); + } elseif (APCu::isAvailable()) { + return new APCu($prefix); } elseif (APC::isAvailable()) { return new APC($prefix); } elseif (Memcached::isAvailable()) { @@ -33,6 +35,6 @@ class Factory { * @return bool */ public function isAvailable() { - return XCache::isAvailable() || APC::isAvailable() || Memcached::isAvailable(); + return XCache::isAvailable() || APCu::isAvailable() || APC::isAvailable() || Memcached::isAvailable(); } } diff --git a/lib/migration/content.php b/lib/migration/content.php index 400a46a434041c7d9a4799a214eb58beb0294f49..2d8268a1d74b2a08fbcd15cea3d25ff18e20fc34 100644 --- a/lib/migration/content.php +++ b/lib/migration/content.php @@ -112,7 +112,7 @@ class OC_Migration_Content{ foreach( $options['matchval'] as $matchval ) { // Run the query for this match value (where x = y value) - $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` LIKE ?'; + $sql = 'SELECT * FROM `*PREFIX*' . $options['table'] . '` WHERE `' . $options['matchcol'] . '` = ?'; $query = OC_DB::prepare( $sql ); $results = $query->execute( array( $matchval ) ); $newreturns = $this->insertData( $results, $options ); diff --git a/lib/mimetypes.list.php b/lib/mimetypes.list.php index 2aac3bbfd27b1b88e6faee225b9144e48497d0d2..8ab8ac81bd83025a911e60cfa647bc17210f892e 100644 --- a/lib/mimetypes.list.php +++ b/lib/mimetypes.list.php @@ -102,5 +102,6 @@ return array( 'md' => 'text/markdown', 'markdown' => 'text/markdown', 'mdown' => 'text/markdown', - 'mdwn' => 'text/markdown' + 'mdwn' => 'text/markdown', + 'reveal' => 'text/reveal' ); diff --git a/lib/public/files.php b/lib/public/files.php index 4975bbb7dfa03456b252ece8d0c89017113f6452..852b041eefb1bc1af72cce4640bff5d41c6f44e7 100644 --- a/lib/public/files.php +++ b/lib/public/files.php @@ -61,7 +61,7 @@ class Files { * @param string $query * @return array */ - public function searchByMime($mimetype) { + static public function searchByMime($mimetype) { return(\OC\Files\Filesystem::searchByMime( $mimetype )); } diff --git a/lib/public/share.php b/lib/public/share.php index 596a729a47d06a3c02357c99584235014ae38c33..63645e6fa34bd15bb2f8ec493ecda0531d6b8fc5 100644 --- a/lib/public/share.php +++ b/lib/public/share.php @@ -454,6 +454,9 @@ class Share { $forcePortable = (CRYPT_BLOWFISH != 1); $hasher = new \PasswordHash(8, $forcePortable); $shareWith = $hasher->HashPassword($shareWith.\OC_Config::getValue('passwordsalt', '')); + } else { + // reuse the already set password + $shareWith = $checkExists['share_with']; } // Generate token @@ -1285,6 +1288,8 @@ class Share { if ($shareType == self::SHARE_TYPE_GROUP) { $groupItemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith['group'], $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; \OC_Hook::emit('OCP\Share', 'pre_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1294,8 +1299,15 @@ class Share { 'uidOwner' => $uidOwner, 'permissions' => $permissions, 'fileSource' => $fileSource, - 'token' => $token + 'token' => $token, + 'run' => &$run, + 'error' => &$error )); + + if ($run === false) { + throw new \Exception($error); + } + if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { @@ -1371,6 +1383,8 @@ class Share { } else { $itemTarget = self::generateTarget($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $suggestedItemTarget); + $run = true; + $error = ''; \OC_Hook::emit('OCP\Share', 'pre_shared', array( 'itemType' => $itemType, 'itemSource' => $itemSource, @@ -1380,8 +1394,15 @@ class Share { 'uidOwner' => $uidOwner, 'permissions' => $permissions, 'fileSource' => $fileSource, - 'token' => $token + 'token' => $token, + 'run' => &$run, + 'error' => &$error )); + + if ($run === false) { + throw new \Exception($error); + } + if (isset($fileSource)) { if ($parentFolder) { if ($parentFolder === true) { diff --git a/lib/template/functions.php b/lib/template/functions.php index 2d43cae1c0cc2cfce87c6c610471eecc051ff124..717e197c1cb1b73466b31041e58d9d0fbb65fc40 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/user.php b/lib/user.php index ee20f2e097197ff0ccda47a800abe9704b121375..93c7c9d4cd504120ddb2bfdcb094dd0cfb8f613a 100644 --- a/lib/user.php +++ b/lib/user.php @@ -137,7 +137,6 @@ class OC_User { */ public static function useBackend($backend = 'database') { if ($backend instanceof OC_User_Interface) { - OC_Log::write('core', 'Adding user backend instance of ' . get_class($backend) . '.', OC_Log::DEBUG); self::$_usedBackends[get_class($backend)] = $backend; self::getManager()->registerBackend($backend); } else { diff --git a/lib/util.php b/lib/util.php index 4c878f8b2fe6b094de3c7e4ca98f862a50ea7a93..7c610e5400dc9df97995b59a1aaba371bf1542a7 100755 --- a/lib/util.php +++ b/lib/util.php @@ -188,6 +188,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(); @@ -329,6 +333,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; } @@ -891,6 +898,10 @@ class OC_Util { if (function_exists('xcache_clear_cache')) { xcache_clear_cache(XC_TYPE_VAR, 0); } + // Opcache (PHP >= 5.5) + if (function_exists('opcache_reset')) { + opcache_reset(); + } } /** @@ -910,4 +921,11 @@ class OC_Util { return $value; } + + public static function basename($file) + { + $file = rtrim($file, '/'); + $t = explode('/', $file); + return array_pop($t); + } } diff --git a/occ b/occ new file mode 100755 index 0000000000000000000000000000000000000000..e2b71fe4abc09a846921d05ce202c93493f33e50 --- /dev/null +++ b/occ @@ -0,0 +1,11 @@ +#!/usr/bin/php + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +//$argv = $_SERVER['argv']; +require_once __DIR__ . '/console.php'; diff --git a/search/css/results.css b/search/css/results.css index 2f092f3789cc9dc1e38001a9e113286c88d7be60..30cc352fd7b8532e0f591b480e76e6b406acc775 100644 --- a/search/css/results.css +++ b/search/css/results.css @@ -2,67 +2,68 @@ This file is licensed under the Affero General Public License version 3 or later. See the COPYING-README file. */ - #searchresults { - background-color:#fff; - border-bottom-left-radius:1em; - box-shadow:0 0 10px #000; - list-style:none; - max-height:80%; - overflow:hidden; - padding-bottom:1em; - position:fixed; - right:0; - text-overflow:ellipsis; - top:3.5em; - width:26.5em; - z-index:75; - } - - .ie8 #searchresults { - border: 1px solid #666 !important; - } +#searchresults { + background-color:#fff; + border-bottom-left-radius:11px; + box-shadow:0 0 10px #000; + list-style:none; + max-height:80%; + overflow-x:hidden; + overflow-y: scroll; + padding-bottom:6px; + position:fixed; + right:0; + text-overflow:ellipsis; + top:20px; + width:380px; + z-index:75; +} - #searchresults li.resultHeader { - background-color:#eee; - border-bottom:solid 1px #CCC; - font-size:1.2em; - font-weight:700; - padding:.2em; - } +.ie8 #searchresults { + border: 1px solid #666 !important; +} - #searchresults li.result { - margin-left:2em; - } +#searchresults li.resultHeader { + background-color:#eee; + border-bottom:solid 1px #CCC; + font-size:1.2em; + font-weight:700; + padding:.2em; +} - #searchresults table { - border-spacing:0; - table-layout:fixed; - top:0; - width:100%; - } +#searchresults li.result { + margin-left:2em; +} - #searchresults td { - vertical-align:top; - padding:0 .3em; - } +#searchresults table { + border-spacing:0; + table-layout:fixed; + top:0; + width:100%; +} - #searchresults td.result div.text { - padding-left:1em; - white-space:nowrap; - } +#searchresults td { + vertical-align:top; + padding:0 .3em; +} - #searchresults td.result * { - cursor:pointer; - } +#searchresults td.result div.text { + padding-left:1em; + white-space:nowrap; +} - #searchresults td.type { - border-bottom:none; - border-right:1px solid #aaa; - font-weight:700; - text-align:right; - width:3.5em; - } +#searchresults td.result * { + cursor:pointer; +} - #searchresults tr.current { - background-color:#ddd; - } \ No newline at end of file +#searchresults td.type { + border-bottom:none; + border-right:1px solid #aaa; + font-weight:700; + text-align:right; + width:3.5em; +} + +#searchresults tr.current { + background-color:#ddd; +} \ No newline at end of file diff --git a/settings/css/settings.css b/settings/css/settings.css index 3c406109a1f8a63f2070142e0d75c22e2750321c..20df5d86d65100a581a4b462e918f61cfb927d09 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -9,10 +9,10 @@ input#openid, input#webdav { width:20em; } /* PERSONAL */ /* Sync clients */ -.clientsbox { margin:12px; text-align:center; } +.clientsbox { margin:12px; } .clientsbox h1 { font-size:40px; font-weight:bold; margin:50px 0 20px; } .clientsbox h2 { font-size:20px; font-weight:bold; margin:35px 0 10px; } -.clientsbox center { margin-top:10px; } +.clientsbox .center { margin-top:10px; } #passworderror { display:none; } #passwordchanged { display:none; } @@ -57,6 +57,8 @@ select.quota.active { background: #fff; } #newuser .multiselect { top:1px; } #headerGroups, #headerSubAdmins, #headerQuota { padding-left:18px; } +.ie8 table.hascontrols{border-collapse:collapse;width: 100%;} +.ie8 table.hascontrols tbody tr{border-collapse:collapse;border: 1px solid #ddd !important;} /* APPS */ .appinfo { margin: 1em; } diff --git a/settings/help.php b/settings/help.php index 713b23f78570883bfa3e086c907805ff28535f92..88693939b848375bea86c54265f797487f36de78 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 2b18f678a0295f45a82250698440a9b6d9e1ed43..6dc8d4c8a6e1f345d150b19c66badceefed15fe8 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 e2cc48f295697fc61dfdd1349be43714b981345c..338938f256e8372c74f18357370c7cbef8e1063a 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 0540d9b1c58227d9d12e151766678101d93b0441..2ff3f0536d4d183d6e1a98f24027a181084cff46 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -152,7 +152,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/af_ZA.php b/settings/l10n/af_ZA.php index f89e0062928bd27984752c4f67b0f2fb803554af..b6c502526675dd6339c32d94d503aad54c6d4ab9 100644 --- a/settings/l10n/af_ZA.php +++ b/settings/l10n/af_ZA.php @@ -1,5 +1,7 @@ - "Wagwoord", "New password" => "Nuwe wagwoord", "Username" => "Gebruikersnaam" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ar.php b/settings/l10n/ar.php index 0f23111abbb03a60bbff0d9ff07b12f8f403b48b..423c9cec666483cf08fa32f04c9dd6428db2d056 100644 --- a/settings/l10n/ar.php +++ b/settings/l10n/ar.php @@ -1,4 +1,5 @@ - "فشل تحميل القائمة من الآب ستور", "Authentication error" => "لم يتم التأكد من الشخصية بنجاح", "Unable to change display name" => "تعذر تغيير اسم الحساب", @@ -36,20 +37,14 @@ "A valid password must be provided" => "يجب ادخال كلمة مرور صحيحة", "__language_name__" => "__language_name__", "Security Warning" => "تحذير أمان", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "مجلدات data وملفاتك قد تكون قابلة للوصول اليها عن طريق شبكة الانترنت. ملف .htaccess الذي وفرته Owncloud لا يعمل . نقترح أن تقوم باعداد خادمك بطريقة تجعل مجلد data غير قابل للوصول اليه عن طريق الانترنت أو أن تقوم بتغيير مساره الى خارج مسار مجلد الصفحات الافتراضي document root الخاص بخادم الويب .", "Setup Warning" => "تحذير في التنصيب", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "اعدادات خادمك غير صحيحة بشكل تسمح لك بمزامنة ملفاتك وذلك بسبب أن واجهة WebDAV تبدو معطلة", -"Please double check the installation guides." => "الرجاء التحقق من دليل التنصيب.", "Module 'fileinfo' missing" => "الموديل 'fileinfo' مفقود", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "موديل 'fileinfo' الخاص بالـPHP مفقود . نوصي بتفعيل هذا الموديل للحصول على أفضل النتائج مع خاصية التحقق ", "Locale not working" => "اللغه لا تعمل", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "لم يتمكن خادم ownCloud هذا كم ضبط لغة النظام الى %s . هذا يعني انه قد يكون هناك أخطاء في اسماء الملفات. نحن نوصي ان تقوم بتركيب الحزم اللازمة لدعم %s على نظامك . ", "Internet connection not working" => "الاتصال بالانترنت لا يعمل", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "خادم الـ Owncloud هذا غير متصل بالانترنت. هذا يعني أن بعض الميزات مثل الربط بوحدة تخزينية خارجيه, التنبيهات الخاصة بالتحديثات أو تركيب تطبيقات من مصادر خارجية لن يعمل . كما ان الوصول الى الملفات من خارج الخادم وارسال رسائل البريد التنبيهية لن تعمل أيضا . نقترح أن تفعل خدمة الانترنت في هذا الخادم اذا أردت ان تستفيد من كافة ميزات Owncloud", "Cron" => "مجدول", "Execute one task with each page loaded" => "قم بتنفيذ مهمة واحدة مع كل صفحة تم تحميلها", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php مسجلة في خدمة webcron . قم باستدعاء صفحة cron.php الموجودة في owncloud root مره كل دقيقة عن طريق بروتوكول http", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "قم باستخدام خدمة cron . قم باستدعاء ملف cron.php الموجود في مجلد Owncloud عن طريق system cronjob مره كل دقيقة", "Sharing" => "مشاركة", "Enable Share API" => "السماح بالمشاركة عن طريق الAPI ", "Allow apps to use the Share API" => "السماح للتطبيقات بالمشاركة عن طريق الAPI", @@ -61,8 +56,6 @@ "Allow users to only share with users in their groups" => "السماح للمستعمينٍ لإعادة المشاركة فقط مع المستعملين في مجموعاتهم", "Security" => "حماية", "Enforce HTTPS" => "فرض HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "اجبار المستخدم بالاتصال مع Owncloud عن طريق اتصال مشفر", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "الرجاء الاتصال مع خادم Owncloud هذا عن طريق HTTPS لتفعيل أو تعطيل اجبار الدخول باستخدام ", "Log" => "سجل", "Log level" => "مستوى السجل", "More" => "المزيد", @@ -108,3 +101,4 @@ "set new password" => "اعداد كلمة مرور جديدة", "Default" => "افتراضي" ); +$PLURAL_FORMS = "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"; diff --git a/settings/l10n/bg_BG.php b/settings/l10n/bg_BG.php index 31e5132edd28c800e27a543b5ab9b406ff75961f..d7b892bcca753f58c1ba36f23fa15412d770133b 100644 --- a/settings/l10n/bg_BG.php +++ b/settings/l10n/bg_BG.php @@ -1,4 +1,5 @@ - "Възникна проблем с идентификацията", "Group already exists" => "Групата вече съществува", "Unable to add group" => "Невъзможно добавяне на група", @@ -23,7 +24,6 @@ "add group" => "нова група", "__language_name__" => "__language_name__", "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." => "Моля направете повторна справка с ръководството за инсталиране.", "Cron" => "Крон", "Sharing" => "Споделяне", "More" => "Още", @@ -61,3 +61,4 @@ "Storage" => "Хранилище", "Default" => "По подразбиране" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/bn_BD.php b/settings/l10n/bn_BD.php index c5116af74633a24787c3884bc427da66fe9609df..c679fcef8a2b50d60eb4d2e5596095d919aa80ea 100644 --- a/settings/l10n/bn_BD.php +++ b/settings/l10n/bn_BD.php @@ -1,4 +1,5 @@ - "অ্যাপস্টোর থেকে তালিকা লোড করতে সক্ষম নয়", "Authentication error" => "অনুমোদন ঘটিত সমস্যা", "Group already exists" => "গোষ্ঠীটি পূর্ব থেকেই বিদ্যমান", @@ -61,3 +62,4 @@ "Storage" => "সংরক্ষণাগার", "Default" => "পূর্বনির্ধারিত" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/bs.php b/settings/l10n/bs.php index 774f081673dc49395c18685a4bed2e29ed93090b..708e045adebb6fa3a36e65fea2416ead10d58b93 100644 --- a/settings/l10n/bs.php +++ b/settings/l10n/bs.php @@ -1,3 +1,5 @@ - "Spašavam..." ); +$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/ca.php b/settings/l10n/ca.php index ca75653bf851645b520084cfdaf604287395b8ee..52dec3a892effda681b495c4d775174d5641158a 100644 --- a/settings/l10n/ca.php +++ b/settings/l10n/ca.php @@ -1,4 +1,5 @@ - "No s'ha pogut carregar la llista des de l'App Store", "Authentication error" => "Error d'autenticació", "Your display name has been changed." => "El nom a mostrar ha canviat.", @@ -37,33 +38,35 @@ "A valid password must be provided" => "Heu de facilitar una contrasenya vàlida", "__language_name__" => "Català", "Security Warning" => "Avís de seguretat", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La carpeta de dades i els fitxers provablement són accessibles des d'internet. El fitxer .htaccess que proporciona ownCloud no funciona. Us recomanem que configureu el vostre servidor web de manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de la carpeta arrel del servidor web.", +"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." => "La carpeta de dades i els vostres fitxersprobablement són accessibles des d'Internet. La fitxer .htaccess no funciona. Us recomanem que configureu el servidor web de tal manera que la carpeta de dades no sigui accessible o que moveu la carpeta de dades fora de l'arrel de documents del servidor web.", "Setup Warning" => "Avís de configuració", "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ó.", +"Please double check the installation guides." => "Comproveu les guies d'instal·lació.", "Module 'fileinfo' missing" => "No s'ha trobat el mòdul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El mòdul de PHP 'fileinfo' no s'ha trobat. Us recomanem que habiliteu aquest mòdul per obtenir millors resultats amb la detecció mime-type.", "Locale not working" => "Locale no funciona", -"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." => "Aquest servidor ownCloud no pot establir el locale del sistema a %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s.", +"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." => "Les locale del sistema no es poden establir en %s. Això significa que hi poden haver problemes amb alguns caràcters en el nom dels fitxers. Us recomanem instal·lar els paquets necessaris al sistema per donar suport a %s.", "Internet connection not working" => "La connexió a internet no funciona", -"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." => "Aquest servidor ownCloud no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament externs, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu gaudir de totes les possibilitats d'ownCloud.", +"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." => "Aquest servidor no té cap connexió a internet que funcioni. Això significa que algunes de les característiques com el muntatge d'emmagatzemament extern, les notificacions quant a actualitzacions o la instal·lació d'aplicacions de tercers no funcionarà. L'accés remot a fitxers i l'enviament de correus electrònics podria tampoc no funcionar. Us suggerim que habiliteu la connexió a internet per aquest servidor si voleu tenir totes les característiques.", "Cron" => "Cron", "Execute one task with each page loaded" => "Executa una tasca per cada paquet carregat", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php està registrat en un servei webcron. Feu la crida a cron.php a l'arrel d'ownCloud cada minut a través de http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usa un servei cron del sistema. Feu la crida al fitxer cron.php a través d'un cronjob del sistema cada minut.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php està registrat en un servei webcron que fa una crida cada minut a la pàgina cron.php a través de http.", +"Use systems cron service to call the cron.php file once a minute." => "Utilitzeu el sistema de servei cron per cridar el fitxer cron.php cada minut.", "Sharing" => "Compartir", "Enable Share API" => "Habilita l'API de compartir", "Allow apps to use the Share API" => "Permet que les aplicacions utilitzin l'API de compartir", "Allow links" => "Permet enllaços", "Allow users to share items to the public with links" => "Permet als usuaris compartir elements amb el públic amb enllaços", +"Allow public uploads" => "Permet pujada pública", +"Allow users to enable others to upload into their publicly shared folders" => "Permet als usuaris habilitar pujades de tercers en les seves carpetes compartides al públic", "Allow resharing" => "Permet compartir de nou", "Allow users to share items shared with them again" => "Permet als usuaris compartir de nou elements ja compartits amb ells", "Allow users to share with anyone" => "Permet compartir amb qualsevol", "Allow users to only share with users in their groups" => "Permet als usuaris compartir només amb els usuaris del seu grup", "Security" => "Seguretat", "Enforce HTTPS" => "Força HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Força als clients la connexió amb ownCloud via una connexió encriptada.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Connecteu aquesta instància onwCloud via HTTPS per habilitar o deshabilitar el forçament SSL.", +"Forces the clients to connect to %s via an encrypted connection." => "Força la connexió dels clients a %s a través d'una connexió encriptada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Connecteu a %s a través de HTTPS per habilitar o inhabilitar l'accés SSL.", "Log" => "Registre", "Log level" => "Nivell de registre", "More" => "Més", @@ -112,3 +115,4 @@ "set new password" => "estableix nova contrasenya", "Default" => "Per defecte" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/cs_CZ.php b/settings/l10n/cs_CZ.php index 2c4cd545233b8372dde88263984dd27a9bfd2486..68c2f42c529f74174870e4dd94394e0fc1731793 100644 --- a/settings/l10n/cs_CZ.php +++ b/settings/l10n/cs_CZ.php @@ -1,6 +1,7 @@ - "Nelze načíst seznam z App Store", -"Authentication error" => "Chyba ověření", +"Authentication error" => "Chyba přihlášení", "Your display name has been changed." => "Vaše zobrazované jméno bylo změněno.", "Unable to change display name" => "Nelze změnit zobrazované jméno", "Group already exists" => "Skupina již existuje", @@ -14,7 +15,7 @@ "Invalid request" => "Neplatný požadavek", "Admins can't remove themself from the admin group" => "Správci se nemohou odebrat sami ze skupiny správců", "Unable to add user to group %s" => "Nelze přidat uživatele do skupiny %s", -"Unable to remove user from group %s" => "Nelze odstranit uživatele ze skupiny %s", +"Unable to remove user from group %s" => "Nelze odebrat uživatele ze skupiny %s", "Couldn't update app." => "Nelze aktualizovat aplikaci.", "Update to {appversion}" => "Aktualizovat na {appversion}", "Disable" => "Zakázat", @@ -26,7 +27,7 @@ "Updated" => "Aktualizováno", "Saving..." => "Ukládám...", "deleted" => "smazáno", -"undo" => "zpět", +"undo" => "vrátit zpět", "Unable to remove user" => "Nelze odebrat uživatele", "Groups" => "Skupiny", "Group Admin" => "Správa skupiny", @@ -37,40 +38,42 @@ "A valid password must be provided" => "Musíte zadat platné heslo", "__language_name__" => "Česky", "Security Warning" => "Bezpečnostní upozornění", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš adresář dat a všechny Vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess, který je poskytován ownCloud, nefunguje. Důrazně Vám doporučujeme nastavit váš webový server tak, aby nebyl adresář dat přístupný, nebo přesunout adresář dat mimo kořenovou složku dokumentů webového serveru.", +"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." => "Váš datový adresář i vaše soubory jsou pravděpodobně přístupné z internetu. Soubor .htaccess nefunguje. Důrazně doporučujeme nakonfigurovat webový server tak, aby datový adresář nebyl nadále přístupný, nebo přesunout datový adresář mimo prostor zpřístupňovaný webovým serverem.", "Setup Warning" => "Upozornění nastavení", -"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, protože rozhraní WebDAV je rozbité.", -"Please double check the installation guides." => "Zkonzultujte, prosím, průvodce instalací.", +"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, protože rozhraní WebDAV se zdá nefunkční.", +"Please double check the installation guides." => "Zkontrolujte prosím znovu instalační příručku.", "Module 'fileinfo' missing" => "Schází modul 'fileinfo'", -"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází modul PHP 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", -"Locale not working" => "Locale nefunguje", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Server ownCloud nemůže nastavit locale systému na %s. Můžete tedy mít problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat potřebné balíčky pro podporu %s.", -"Internet connection not working" => "Spojení s internetem nefujguje", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Server ownCloud nemá funkční spojení s internetem. Některé moduly jako externí úložiště, oznámení o dostupných aktualizacích, nebo instalace aplikací třetích stran nefungují. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit internetové spojení pro tento server.", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Schází PHP modul 'fileinfo'. Doporučujeme jej povolit pro nejlepší výsledky detekce typů MIME.", +"Locale not working" => "Lokalizace nefunguje", +"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." => "Systémové nastavení lokalizace nemohlo být nastaveno na %s. To znamená, že se mohou vyskytnout problémy s některými znaky v názvech souborů. Důrazně doporučujeme nainstalovat do vašeho systému balíčky potřebné pro podporu %s.", +"Internet connection not working" => "Připojení k internetu nefunguje", +"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." => "Server nemá funkční připojení k internetu. Některé moduly jako např. externí úložiště, oznámení o dostupných aktualizacích nebo instalace aplikací třetích stran nebudou fungovat. Přístup k souborům z jiných míst a odesílání oznamovacích e-mailů také nemusí fungovat. Pokud si přejete využívat všech vlastností ownCloud, doporučujeme povolit připojení k internetu tomuto serveru.", "Cron" => "Cron", -"Execute one task with each page loaded" => "Spustit jednu úlohu s každou načtenou stránkou", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrován u služby webcron. Zavolá stránku cron.php v kořenovém adresáři owncloud každou minutu skrze http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Použít systémovou službu cron. Zavolat soubor cron.php ze složky owncloud pomocí systémové úlohy cron každou minutu.", +"Execute one task with each page loaded" => "Spustit jednu úlohu s každým načtením stránky", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php je registrován u služby webcron pro zavolání stránky cron.php jednou za minutu přes HTTP.", +"Use systems cron service to call the cron.php file once a minute." => "Použít systémovou službu cron pro spouštění souboru cron.php jednou za minutu.", "Sharing" => "Sdílení", "Enable Share API" => "Povolit API sdílení", "Allow apps to use the Share API" => "Povolit aplikacím používat API sdílení", "Allow links" => "Povolit odkazy", -"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky s veřejností pomocí odkazů", +"Allow users to share items to the public with links" => "Povolit uživatelům sdílet položky veřejně pomocí odkazů", +"Allow public uploads" => "Povolit veřejné nahrávání souborů", +"Allow users to enable others to upload into their publicly shared folders" => "Povolit uživatelům, aby mohli ostatním umožnit nahrávat do jejich veřejně sdílené složky", "Allow resharing" => "Povolit znovu-sdílení", "Allow users to share items shared with them again" => "Povolit uživatelům znovu sdílet položky, které jsou pro ně sdíleny", "Allow users to share with anyone" => "Povolit uživatelům sdílet s kýmkoliv", "Allow users to only share with users in their groups" => "Povolit uživatelům sdílet pouze s uživateli v jejich skupinách", "Security" => "Zabezpečení", "Enforce HTTPS" => "Vynutit HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Vynutí připojování klientů ownCloud skrze šifrované spojení.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Připojte se, prosím, k této instanci ownCloud skrze HTTPS pro povolení, nebo zakažte vynucení SSL.", +"Forces the clients to connect to %s via an encrypted connection." => "Vynutí připojování klientů k %s šifrovaným spojením.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Připojte se k %s skrze HTTPS pro povolení nebo zakázání vynucování SSL.", "Log" => "Záznam", -"Log level" => "Úroveň záznamu", +"Log level" => "Úroveň zaznamenávání", "More" => "Více", "Less" => "Méně", "Version" => "Verze", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Vyvinuto komunitou ownCloud, zdrojový kód je licencován pod AGPL.", -"Add your App" => "Přidat Vaší aplikaci", +"Add your App" => "Přidat Vaši aplikaci", "More Apps" => "Více aplikací", "Select an App" => "Vyberte aplikaci", "See application page at apps.owncloud.com" => "Více na stránce s aplikacemi na apps.owncloud.com", @@ -87,14 +90,14 @@ "You have used %s of the available %s" => "Používáte %s z %s dostupných", "Password" => "Heslo", "Your password was changed" => "Vaše heslo bylo změněno", -"Unable to change your password" => "Vaše heslo nelze změnit", +"Unable to change your password" => "Změna vašeho hesla se nezdařila", "Current password" => "Současné heslo", "New password" => "Nové heslo", "Change password" => "Změnit heslo", "Display Name" => "Zobrazované jméno", "Email" => "E-mail", "Your email address" => "Vaše e-mailová adresa", -"Fill in an email address to enable password recovery" => "Pro povolení změny hesla vyplňte adresu e-mailu", +"Fill in an email address to enable password recovery" => "Pro povolení obnovy hesla vyplňte e-mailovou adresu", "Language" => "Jazyk", "Help translate" => "Pomoci s překladem", "WebDAV" => "WebDAV", @@ -112,3 +115,4 @@ "set new password" => "nastavit nové heslo", "Default" => "Výchozí" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/settings/l10n/cy_GB.php b/settings/l10n/cy_GB.php index 98a46f5aca9bc20cd2bd64fa66902d4ba5017b43..b18ace866980b81b19646d9fd278d58e55ef8413 100644 --- a/settings/l10n/cy_GB.php +++ b/settings/l10n/cy_GB.php @@ -1,4 +1,5 @@ - "Gwall dilysu", "Invalid request" => "Cais annilys", "Error" => "Gwall", @@ -8,10 +9,10 @@ "Delete" => "Dileu", "Security Warning" => "Rhybudd Diogelwch", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Nid yw eich gweinydd wedi'i gyflunio eto i ganiatáu cydweddu ffeiliau oherwydd bod y rhyngwyneb WebDAV wedi torri.", -"Please double check the installation guides." => "Gwiriwch y canllawiau gosod eto.", "Password" => "Cyfrinair", "New password" => "Cyfrinair newydd", "Email" => "E-bost", "Other" => "Arall", "Username" => "Enw defnyddiwr" ); +$PLURAL_FORMS = "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"; diff --git a/settings/l10n/da.php b/settings/l10n/da.php index 94312fce495028365c0684d83673ca7c9d0f1320..a36c6bb61fde1374d910c0eedf0e08cbc7413539 100644 --- a/settings/l10n/da.php +++ b/settings/l10n/da.php @@ -1,4 +1,5 @@ - "Kunne ikke indlæse listen fra App Store", "Authentication error" => "Adgangsfejl", "Your display name has been changed." => "Dit skærmnavn blev ændret.", @@ -37,33 +38,35 @@ "A valid password must be provided" => "En gyldig adgangskode skal angives", "__language_name__" => "Dansk", "Security Warning" => "Sikkerhedsadvarsel", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen som ownCloud leverer virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver på en måske så data mappen ikke længere er tilgængelig eller at du flytter data mappen uden for webserverens dokument rod. ", +"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." => "Din data mappe og dine filer er muligvis tilgængelige fra internettet. .htaccess filen virker ikke. Vi anbefaler på det kraftigste at du konfigurerer din webserver så data mappen ikke længere er tilgængelig, eller at du flytter data mappen uden for webserverens dokument rod. ", "Setup Warning" => "Opsætnings Advarsel", "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.", +"Please double check the installation guides." => "Dobbelttjek venligst installations vejledningerne.", "Module 'fileinfo' missing" => "Module 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulet 'fileinfo' mangler. Vi anbefaler stærkt at aktivere dette modul til at få de bedste resultater med mime-type detektion.", "Locale not working" => "Landestandard fungerer ikke", -"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." => "Denne ownCloud server kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s.", +"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." => "Systemet kan ikke indstille systemets landestandard for %s. Det betyder, at der kan være problemer med visse tegn i filnavne. Vi anbefaler kraftigt, at installere de nødvendige pakker på dit system til at understøtte %s.", "Internet connection not working" => "Internetforbindelse fungerer ikke", -"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." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af eksterne applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker alle ownClouds funktioner.", +"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." => "Denne ownCloud-server har ikke en fungerende forbindelse til internettet. Det betyder, at visse funktioner som montering af eksterne drev, oplysninger om opdatering eller installation af 3.-parts applikationer ikke fungerer. Det vil sandsynligvis heller ikke fungere at tilgå filer fra eksterne drev eller informationsemails. Vi opfordrer til at etablere forbindelse til internettet for denne server, såfremt du ønsker samtlige funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Udføre en opgave med hver side indlæst", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php er registreret hos en webcron service. Kald cron.php side i owncloud rod en gang i minuttet over HTTP.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Brug system cron service. Kald cron.php filen i owncloud mappe via et system cronjob en gang i minuttet.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php er registeret hos en webcron-tjeneste til at kalde cron.php en gang i minuttet over http.", +"Use systems cron service to call the cron.php file once a minute." => "Brug systemets cron service til at kalde cron.php filen en gang i minuttet", "Sharing" => "Deling", "Enable Share API" => "Aktiver Share API", "Allow apps to use the Share API" => "Tillad apps til at bruge Share API", "Allow links" => "Tillad links", "Allow users to share items to the public with links" => "Tillad brugere at dele elementer til offentligheden med links", +"Allow public uploads" => "Tillad offentlig upload", +"Allow users to enable others to upload into their publicly shared folders" => "Tillad brugere at give andre mulighed for at uploade i deres offentligt delte mapper", "Allow resharing" => "Tillad videredeling", "Allow users to share items shared with them again" => "Tillad brugere at dele elementer delt med dem igen", "Allow users to share with anyone" => "Tillad brugere at dele med alle", "Allow users to only share with users in their groups" => "Tillad brugere at kun dele med brugerne i deres grupper", "Security" => "Sikkerhed", "Enforce HTTPS" => "Gennemtving HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Håndhæver klienter at oprette forbindelse til ownCloud via en krypteret forbindelse.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Opret forbindelse til denne ownCloud enhed via HTTPS for at aktivere eller deaktivere SSL håndhævelse.", +"Forces the clients to connect to %s via an encrypted connection." => "Tving klienten til at forbinde til %s via en kryptetet forbindelse.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Forbind venligst til din %s via HTTPS for at aktivere eller deaktivere SSL tvang.", "Log" => "Log", "Log level" => "Log niveau", "More" => "Mere", @@ -112,3 +115,4 @@ "set new password" => "skift kodeord", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de.php b/settings/l10n/de.php index b32790f26e0de09488dab27dff6d8e9ddcc7dedf..a195858773d1af01d13011b1ba44554c8558e00e 100644 --- a/settings/l10n/de.php +++ b/settings/l10n/de.php @@ -1,4 +1,5 @@ - "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Fehler bei der Anmeldung", "Your display name has been changed." => "Dein Anzeigename ist geändert worden.", @@ -37,20 +38,20 @@ "A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", "__language_name__" => "Deutsch (Persönlich)", "Security Warning" => "Sicherheitswarnung", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Dein Datenverzeichnis und Deine Datein sind vielleicht vom Internet aus erreichbar. Die .htaccess Datei, die ownCloud verwendet, arbeitet nicht richtig. Wir schlagen Dir dringend vor, dass Du Deinen Webserver so konfigurierst, dass das Datenverzeichnis nicht länger erreichbar ist oder, dass Du Dein Datenverzeichnis aus dem Dokumenten-root des Webservers bewegst.", +"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." => "Dein Datenverzeichnis und deine Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten dir dringend, dass du deinen Webserver dahingehend konfigurierst, dass dein Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder du verschiebst das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Dein Web-Server ist noch nicht für Datei-Synchronisation bereit, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", +"Please double check the installation guides." => "Bitte überprüfe die Instalationsanleitungen.", "Module 'fileinfo' missing" => "Modul 'fileinfo' fehlt ", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen dieses Modul zu aktivieren um die besten Resultate bei der Erkennung der Dateitypen zu erreichen.", "Locale not working" => "Ländereinstellung funktioniert nicht", -"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." => "Dieser ownCloud Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen die für %s benötigten Pakete auf Deinem System zu installieren.", +"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." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", "Internet connection not working" => "Keine Netzwerkverbindung", -"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." => "Dieser ownCloud Server hat keine funktionierende Netzwerkverbindung. Dies bedeutet das einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Netzwerkverbindung für diesen Server zu aktivieren, wenn Du alle Funktionen von ownCloud nutzen möchtest.", +"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." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", "Execute one task with each page loaded" => "Führe eine Aufgabe mit jeder geladenen Seite aus", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist an einem Webcron-Service registriert. Die cron.php Seite wird einmal pro Minute über http abgerufen.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Nutze den Cron Systemdienst. Rufe die Datei cron.php im owncloud Ordner einmal pro Minute über einen Cronjob auf.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", +"Use systems cron service to call the cron.php file once a minute." => "Benutze den System-Crondienst um die cron.php minütlich aufzurufen.", "Sharing" => "Teilen", "Enable Share API" => "Aktiviere Sharing-API", "Allow apps to use the Share API" => "Erlaubt Apps die Nutzung der Share-API", @@ -64,8 +65,8 @@ "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Benutzern ihrer Gruppe zu teilen", "Security" => "Sicherheit", "Enforce HTTPS" => "Erzwinge HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Erzwingt die Verwendung einer verschlüsselten Verbindung", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinde Dich über eine HTTPS Verbindung mit diesem ownCloud Server um diese Einstellung zu ändern", +"Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinde dich zu deinem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren.", "Log" => "Log", "Log level" => "Loglevel", "More" => "Mehr", @@ -114,3 +115,4 @@ "set new password" => "Neues Passwort setzen", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de_CH.php b/settings/l10n/de_CH.php new file mode 100644 index 0000000000000000000000000000000000000000..d874eafd3bf482ebff82cb01cb155d91eb44da28 --- /dev/null +++ b/settings/l10n/de_CH.php @@ -0,0 +1,118 @@ + "Die Liste der Anwendungen im Store konnte nicht geladen werden.", +"Authentication error" => "Authentifizierungs-Fehler", +"Your display name has been changed." => "Dein Anzeigename ist geändert worden.", +"Unable to change display name" => "Das Ändern des Anzeigenamens ist nicht möglich", +"Group already exists" => "Die Gruppe existiert bereits", +"Unable to add group" => "Die Gruppe konnte nicht angelegt werden", +"Could not enable app. " => "Die Anwendung konnte nicht aktiviert werden.", +"Email saved" => "E-Mail-Adresse gespeichert", +"Invalid email" => "Ungültige E-Mail-Adresse", +"Unable to delete group" => "Die Gruppe konnte nicht gelöscht werden", +"Unable to delete user" => "Der Benutzer konnte nicht gelöscht werden", +"Language changed" => "Sprache geändert", +"Invalid request" => "Ungültige Anforderung", +"Admins can't remove themself from the admin group" => "Administratoren können sich nicht selbst aus der admin-Gruppe löschen", +"Unable to add user to group %s" => "Der Benutzer konnte nicht zur Gruppe %s hinzugefügt werden", +"Unable to remove user from group %s" => "Der Benutzer konnte nicht aus der Gruppe %s entfernt werden", +"Couldn't update app." => "Die App konnte nicht aktualisiert werden.", +"Update to {appversion}" => "Update zu {appversion}", +"Disable" => "Deaktivieren", +"Enable" => "Aktivieren", +"Please wait...." => "Bitte warten....", +"Error" => "Fehler", +"Updating...." => "Update...", +"Error while updating app" => "Es ist ein Fehler während des Updates aufgetreten", +"Updated" => "Aktualisiert", +"Saving..." => "Speichern...", +"deleted" => "gelöscht", +"undo" => "rückgängig machen", +"Unable to remove user" => "Der Benutzer konnte nicht entfernt werden.", +"Groups" => "Gruppen", +"Group Admin" => "Gruppenadministrator", +"Delete" => "Löschen", +"add group" => "Gruppe hinzufügen", +"A valid username must be provided" => "Es muss ein gültiger Benutzername angegeben werden", +"Error creating user" => "Beim Erstellen des Benutzers ist ein Fehler aufgetreten", +"A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", +"__language_name__" => "Deutsch (Förmlich: Sie)", +"Security Warning" => "Sicherheitshinweis", +"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." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis ausserhalb des Wurzelverzeichnisses des Webservers.", +"Setup Warning" => "Einrichtungswarnung", +"Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", +"Please double check the installation guides." => "Bitte überprüfen Sie die Instalationsanleitungen.", +"Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", +"The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", +"Locale not working" => "Die Lokalisierung funktioniert nicht", +"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." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", +"Internet connection not working" => "Keine Internetverbindung", +"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." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", +"Cron" => "Cron", +"Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", +"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen.", +"Sharing" => "Teilen", +"Enable Share API" => "Share-API aktivieren", +"Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", +"Allow links" => "Links erlauben", +"Allow users to share items to the public with links" => "Benutzern erlauben, Inhalte per öffentlichem Link zu teilen", +"Allow public uploads" => "Erlaube öffentliches hochladen", +"Allow users to enable others to upload into their publicly shared folders" => "Erlaubt Benutzern die Freigabe anderer Benutzer in ihren öffentlich freigegebene Ordner hochladen zu dürfen", +"Allow resharing" => "Erlaube Weiterverteilen", +"Allow users to share items shared with them again" => "Erlaubt Benutzern, mit ihnen geteilte Inhalte erneut zu teilen", +"Allow users to share with anyone" => "Erlaubt Benutzern, mit jedem zu teilen", +"Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", +"Security" => "Sicherheit", +"Enforce HTTPS" => "HTTPS erzwingen", +"Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren.", +"Log" => "Log", +"Log level" => "Log-Level", +"More" => "Mehr", +"Less" => "Weniger", +"Version" => "Version", +"Developed by the ownCloud community, the source code is licensed under the AGPL." => "Entwickelt von der ownCloud-Community. Der Quellcode ist unter der AGPL lizenziert.", +"Add your App" => "Fügen Sie Ihre Anwendung hinzu", +"More Apps" => "Weitere Anwendungen", +"Select an App" => "Wählen Sie eine Anwendung aus", +"See application page at apps.owncloud.com" => "Weitere Anwendungen finden Sie auf apps.owncloud.com", +"-licensed by " => "-lizenziert von ", +"Update" => "Update durchführen", +"User Documentation" => "Dokumentation für Benutzer", +"Administrator Documentation" => "Dokumentation für Administratoren", +"Online Documentation" => "Online-Dokumentation", +"Forum" => "Forum", +"Bugtracker" => "Bugtracker", +"Commercial Support" => "Kommerzieller Support", +"Get the apps to sync your files" => "Installieren Sie die Anwendungen, um Ihre Dateien zu synchronisieren", +"Show First Run Wizard again" => "Den Einrichtungsassistenten erneut anzeigen", +"You have used %s of the available %s" => "Sie verwenden %s der verfügbaren %s", +"Password" => "Passwort", +"Your password was changed" => "Ihr Passwort wurde geändert.", +"Unable to change your password" => "Das Passwort konnte nicht geändert werden", +"Current password" => "Aktuelles Passwort", +"New password" => "Neues Passwort", +"Change password" => "Passwort ändern", +"Display Name" => "Anzeigename", +"Email" => "E-Mail", +"Your email address" => "Ihre E-Mail-Adresse", +"Fill in an email address to enable password recovery" => "Bitte tragen Sie eine E-Mail-Adresse ein, um die Passwort-Wiederherstellung zu aktivieren.", +"Language" => "Sprache", +"Help translate" => "Helfen Sie bei der Übersetzung", +"WebDAV" => "WebDAV", +"Use this address to access your Files via WebDAV" => "Verwenden Sie diese Adresse, um auf ihre Dateien per WebDAV zuzugreifen.", +"Login Name" => "Loginname", +"Create" => "Erstellen", +"Admin Recovery Password" => "Admin-Passwort-Wiederherstellung", +"Enter the recovery password in order to recover the users files during password change" => "Geben Sie das Wiederherstellungspasswort ein, um die Benutzerdateien während Passwortänderung wiederherzustellen", +"Default Storage" => "Standard-Speicher", +"Unlimited" => "Unbegrenzt", +"Other" => "Andere", +"Username" => "Benutzername", +"Storage" => "Speicher", +"change display name" => "Anzeigenamen ändern", +"set new password" => "Neues Passwort setzen", +"Default" => "Standard" +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/de_DE.php b/settings/l10n/de_DE.php index 07003169c3f20d2707ae1d894cc842d2047173ef..3faa8858e8e344f167070f2d0b1e71b253c99436 100644 --- a/settings/l10n/de_DE.php +++ b/settings/l10n/de_DE.php @@ -1,4 +1,5 @@ - "Die Liste der Anwendungen im Store konnte nicht geladen werden.", "Authentication error" => "Authentifizierungs-Fehler", "Your display name has been changed." => "Dein Anzeigename ist geändert worden.", @@ -37,20 +38,20 @@ "A valid password must be provided" => "Es muss ein gültiges Passwort angegeben werden", "__language_name__" => "Deutsch (Förmlich: Sie)", "Security Warning" => "Sicherheitshinweis", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ihr Datenverzeichnis und Ihre Dateien sind wahrscheinlich über das Internet erreichbar. Die von ownCloud bereitgestellte .htaccess Datei funktioniert nicht. Wir empfehlen Ihnen dringend, Ihren Webserver so zu konfigurieren, dass das Datenverzeichnis nicht mehr über das Internet erreichbar ist. Alternativ können Sie auch das Datenverzeichnis aus dem Dokumentenverzeichnis des Webservers verschieben.", +"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." => "Ihr Datenverzeichnis und Ihre Dateien sind möglicher Weise aus dem Internet erreichbar. Die .htaccess-Datei funktioniert nicht. Wir raten Ihnen dringend, dass Sie Ihren Webserver dahingehend konfigurieren, dass Ihr Datenverzeichnis nicht länger aus dem Internet erreichbar ist, oder Sie verschieben das Datenverzeichnis außerhalb des Wurzelverzeichnisses des Webservers.", "Setup Warning" => "Einrichtungswarnung", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ihr Web-Server ist noch nicht für eine Datei-Synchronisation konfiguriert, weil die WebDAV-Schnittstelle vermutlich defekt ist.", -"Please double check the installation guides." => "Bitte prüfen Sie die Installationsanleitungen.", +"Please double check the installation guides." => "Bitte überprüfen Sie die Instalationsanleitungen.", "Module 'fileinfo' missing" => "Das Modul 'fileinfo' fehlt", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Das PHP-Modul 'fileinfo' fehlt. Wir empfehlen Ihnen dieses Modul zu aktivieren, um die besten Resultate bei der Bestimmung der Dateitypen zu erzielen.", "Locale not working" => "Die Lokalisierung funktioniert nicht", -"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." => "Dieser ownCloud-Server kann die Ländereinstellung nicht auf %s ändern. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", +"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." => "Die System-Ländereinstellung kann nicht auf %s geändert werden. Dies bedeutet, dass es Probleme mit bestimmten Zeichen in Dateinamen geben könnte. Wir empfehlen, die für %s benötigten Pakete auf ihrem System zu installieren.", "Internet connection not working" => "Keine Internetverbindung", -"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." => "Dieser ownCloud-Server hat keine funktionierende Internetverbindung. Dies bedeutet, dass einige Funktionen wie das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungs-E-Mails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren, wenn Sie alle Funktionen von ownCloud nutzen wollen.", +"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." => "Dieser Server hat keine funktionierende Internetverbindung. Dies bedeutet das einige Funktionen wie z.B. das Einbinden von externen Speichern, Update-Benachrichtigungen oder die Installation von Drittanbieter-Apps nicht funktionieren. Der Fernzugriff auf Dateien und das Senden von Benachrichtigungsmails funktioniert eventuell ebenfalls nicht. Wir empfehlen die Internetverbindung für diesen Server zu aktivieren wenn Sie alle Funktionen nutzen wollen.", "Cron" => "Cron", "Execute one task with each page loaded" => "Eine Aufgabe bei jedem Laden der Seite ausführen", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ist bei einem Webcron-Service registriert. Die cron.php Seite im ownCloud-Wurzelverzeichniss wird einmal pro Minute über http abgerufen.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Nutzen Sie den Cron-Systemdienst. Rufen Sie die Datei cron.php im ownCloud-Ordner einmal pro Minute über einen Cronjob auf.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php ist als Webcron-Dienst registriert, der die cron.php minütlich per HTTP aufruft.", +"Use systems cron service to call the cron.php file once a minute." => "Benutzen Sie den System-Crondienst um die cron.php minütlich aufzurufen.", "Sharing" => "Teilen", "Enable Share API" => "Share-API aktivieren", "Allow apps to use the Share API" => "Anwendungen erlauben, die Share-API zu benutzen", @@ -64,8 +65,8 @@ "Allow users to only share with users in their groups" => "Erlaubt Benutzern, nur mit Nutzern in ihrer Gruppe zu teilen", "Security" => "Sicherheit", "Enforce HTTPS" => "HTTPS erzwingen", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung mit ownCloud zu verbinden.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinden Sie sich mit dieser ownCloud-Instanz per HTTPS, um SSL-Erzwingung zu aktivieren oder deaktivieren.", +"Forces the clients to connect to %s via an encrypted connection." => "Zwingt die Clients, sich über eine verschlüsselte Verbindung zu %s zu verbinden.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Bitte verbinden Sie sich zu Ihrem %s über HTTPS um die SSL-Erzwingung zu aktivieren oder zu deaktivieren.", "Log" => "Log", "Log level" => "Log-Level", "More" => "Mehr", @@ -114,3 +115,4 @@ "set new password" => "Neues Passwort setzen", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/el.php b/settings/l10n/el.php index a9f7f1fd18b7c9ee2fe5d4b4bda2983dd92cd016..194e8a61d3dc7b273ae9167c4c352af6d12a938e 100644 --- a/settings/l10n/el.php +++ b/settings/l10n/el.php @@ -1,4 +1,5 @@ - "Σφάλμα στην φόρτωση της λίστας από το App Store", "Authentication error" => "Σφάλμα πιστοποίησης", "Your display name has been changed." => "Το όνομα σας στην οθόνη άλλαξε. ", @@ -37,20 +38,14 @@ "A valid password must be provided" => "Πρέπει να δοθεί έγκυρο συνθηματικό", "__language_name__" => "__όνομα_γλώσσας__", "Security Warning" => "Προειδοποίηση Ασφαλείας", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ο κατάλογος data και τα αρχεία σας πιθανόν να είναι διαθέσιμα στο διαδίκτυο. Το αρχείο .htaccess που παρέχει το ownCloud δεν δουλεύει. Σας προτείνουμε ανεπιφύλακτα να ρυθμίσετε το διακομιστή σας με τέτοιο τρόπο ώστε ο κατάλογος data να μην είναι πλέον προσβάσιμος ή να μετακινήσετε τον κατάλογο data έξω από τον κατάλογο του διακομιστή.", "Setup Warning" => "Ρύθμιση Προειδοποίησης", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ο διακομιστής σας δεν έχει ρυθμιστεί κατάλληλα ώστε να επιτρέπει τον συγχρονισμό αρχείων γιατί η διεπαφή WebDAV πιθανόν να είναι κατεστραμμένη.", -"Please double check the installation guides." => "Ελέγξτε ξανά τις οδηγίες εγκατάστασης.", "Module 'fileinfo' missing" => "Η ενοτητα 'fileinfo' λειπει", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Η PHP ενοτητα 'fileinfo' λειπει. Σας συνιστούμε να ενεργοποιήσετε αυτή την ενότητα για να έχετε καλύτερα αποτελέσματα με τον εντοπισμό τύπου MIME. ", "Locale not working" => "Η μετάφραση δεν δουλεύει", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Αυτός ο ownCloud διακομιστης δεν μπορείτε να εφαρμοσει το σύνολο τοπικής προσαρμογής συστημάτων στο %s. Αυτό σημαίνει ότι μπορεί να υπάρξουν προβλήματα με ορισμένους χαρακτήρες σε ονόματα αρχείων. Σας συνιστούμε να εγκαταστήσετε τις απαραίτητες συσκευασίες στο σύστημά σας για να υποστηρίχθει το %s. ", "Internet connection not working" => "Η σύνδεση στο διαδίκτυο δεν δουλεύει", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Αυτός ο διακομιστής ownCloud δεν έχει σύνδεση στο Διαδίκτυο. Αυτό σημαίνει ότι ορισμένα από τα χαρακτηριστικά γνωρίσματα όπως η τοποθέτηση εξωτερικής αποθήκευσης, οι κοινοποιήσεις σχετικά με ανανεωσεις, ή εγκατάσταση 3ων εφαρμογές δεν λειτουργούν. Η πρόσβαση σε αρχεία και η αποστολή μηνυμάτων ηλεκτρονικού ταχυδρομείου μπορεί επίσης να μην λειτουργεί. Σας προτείνουμε να σύνδεθειτε στο διαδικτυο αυτό τον διακομιστή, εάν θέλετε να έχετε όλα τα χαρακτηριστικά του ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Εκτέλεση μιας διεργασίας με κάθε σελίδα που φορτώνεται", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Το cron.php είναι καταχωρημένο στην υπηρεσία webcron. Να καλείται μια φορά το λεπτό η σελίδα cron.php από τον root του owncloud μέσω http", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Χρήση υπηρεσίας συστήματος cron. Να καλείται μια φορά το λεπτό, το αρχείο cron.php από τον φάκελο του owncloud μέσω του cronjob του συστήματος.", "Sharing" => "Διαμοιρασμός", "Enable Share API" => "Ενεργοποίηση API Διαμοιρασμού", "Allow apps to use the Share API" => "Να επιτρέπεται στις εφαρμογές να χρησιμοποιούν το API Διαμοιρασμού", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "Να επιτρέπεται στους χρήστες ο διαμοιρασμός μόνο με χρήστες της ίδιας ομάδας", "Security" => "Ασφάλεια", "Enforce HTTPS" => "Επιβολή χρήσης HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Επιβολή στους πελάτες να συνδεθούν στο ownCloud μέσω μιας κρυπτογραφημένης σύνδεσης.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Παρακαλώ συνδεθείτε με το ownCloud μέσω HTTPS για να ενεργοποιήσετε ή να απενεργοποιήσετε την επιβολή SSL. ", "Log" => "Καταγραφές", "Log level" => "Επίπεδο καταγραφής", "More" => "Περισσότερα", @@ -112,3 +105,4 @@ "set new password" => "επιλογή νέου κωδικού", "Default" => "Προκαθορισμένο" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/en@pirate.php b/settings/l10n/en@pirate.php index 482632f3fdab19ae3bd7efb9a1ed366c0f00ac9c..e269c57c3d0ab870cda3a02975dc40af05fac9a0 100644 --- a/settings/l10n/en@pirate.php +++ b/settings/l10n/en@pirate.php @@ -1,3 +1,5 @@ - "Passcode" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/eo.php b/settings/l10n/eo.php index 5ca1cea113519d673af8430346bf665712c52937..7cda89f4965035ce844e223d2766d38cb916552b 100644 --- a/settings/l10n/eo.php +++ b/settings/l10n/eo.php @@ -1,4 +1,5 @@ - "Ne eblis ŝargi liston el aplikaĵovendejo", "Authentication error" => "Aŭtentiga eraro", "Group already exists" => "La grupo jam ekzistas", @@ -25,7 +26,6 @@ "__language_name__" => "Esperanto", "Security Warning" => "Sekureca averto", "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.", "Cron" => "Cron", "Sharing" => "Kunhavigo", "Enable Share API" => "Kapabligi API-on por Kunhavigo", @@ -76,3 +76,4 @@ "Storage" => "Konservejo", "Default" => "Defaŭlta" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es.php b/settings/l10n/es.php index 786266f56300100fdc497dbff9891d29befc7a66..ad8b198e1adb2c2a552013b0d01db9154b21a626 100644 --- a/settings/l10n/es.php +++ b/settings/l10n/es.php @@ -1,4 +1,5 @@ - "Imposible cargar la lista desde el App Store", "Authentication error" => "Error de autenticación", "Your display name has been changed." => "Su nombre fue cambiado.", @@ -37,33 +38,35 @@ "A valid password must be provided" => "Se debe usar una contraseña valida", "__language_name__" => "Castellano", "Security Warning" => "Advertencia de seguridad", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Su directorio de datos y sus archivos son probablemente accesibles desde internet. El archivo .htaccess que ownCloud provee no está funcionando. Le recomendamos encarecidamente que configure su servidor web de manera que el directorio de datos no esté accesible, o mueva el directorio de datos fuera del documento raíz de su servidor web.", +"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." => "Su directorio de datos y sus archivos probablemente están accesibles desde Internet. El archivo .htaccess no está funcionando. Nosotros le sugerimos encarecidamente que configure su servidor web de modo que el directorio de datos ya no sea accesible o que mueva el directorio de datos fuera de la raíz de documentos del servidor web.", "Setup Warning" => "Advertencia de configuración", "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.", +"Please double check the installation guides." => "Por favor, vuelva a comprobar las guías de instalación.", "Module 'fileinfo' missing" => "Modulo 'fileinfo' perdido", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El modulo PHP 'fileinfo' no se encuentra. Le recomendamos encarecidamente que habilite este módulo para obtener mejores resultados con la detección del mime-type", "Locale not working" => "La configuración regional no está funcionando", -"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." => "Este servidor ownCloud no puede establecer la configuración regional a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivos. Le recomendamos que instale los paquetes requeridos en su sistema para soportar el %s.", +"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." => "La configuración regional del sistema no se puede ajustar a %s. Esto significa que puede haber problemas con ciertos caracteres en los nombres de archivo. Le recomendamos instalar los paquetes necesarios en el sistema para soportar % s.", "Internet connection not working" => "La conexion a internet no esta funcionando", -"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." => "Este servidor ownCloud no tiene conexion de internet. Esto quiere decir que algunas caracteristicas como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o la instalacion de apps de terceros no funcionarán. Es posible que no pueda acceder remotamente a los archivos ni enviar notificaciones por correo. Sugerimos habilitar la conexión a Internet para este servidor si quiere disfrutar de todas las características de ownCloud.", +"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." => "Este servidor no tiene una conexión a Internet. Esto significa que algunas de las características como el montaje de almacenamiento externo, las notificaciones sobre actualizaciones o instalación de aplicaciones de terceros no funcionan. Podría no funcionar el acceso a los archivos de forma remota y el envío de correos electrónicos de notificación. Sugerimos habilitar la conexión a Internet de este servidor, si quiere tener todas las funciones.", "Cron" => "Cron", "Execute one task with each page loaded" => "Ejecutar una tarea con cada página cargada", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php es un sistema webcron registrado. Llama a la página cron.php en la raíz de owncloud una vez por minuto sobre http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilizar el servicio cron del sistema. Llama al archivo cron.php en la carpeta de owncloud a través de un cronjob del sistema una vez por minuto.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registrado en un servicio WebCron para llamar cron.php una vez por minuto a través de HTTP.", +"Use systems cron service to call the cron.php file once a minute." => "Usar el servicio cron del sistema para llamar al archivo cron.php una vez por minuto.", "Sharing" => "Compartiendo", "Enable Share API" => "Activar API de Compartición", "Allow apps to use the Share API" => "Permitir a las aplicaciones utilizar la API de Compartición", "Allow links" => "Permitir enlaces", "Allow users to share items to the public with links" => "Permitir a los usuarios compartir elementos al público con enlaces", +"Allow public uploads" => "Permitir subidas públicas", +"Allow users to enable others to upload into their publicly shared folders" => "Permitir a los usuarios habilitar a otros para subir archivos en sus carpetas compartidas públicamente", "Allow resharing" => "Permitir re-compartición", "Allow users to share items shared with them again" => "Permitir a los usuarios compartir elementos ya compartidos con ellos mismos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con todo el mundo", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los usuarios en sus grupos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Fuerza la conexión de los clientes a ownCloud con una conexión cifrada.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor, conecte esta instancia de ownCloud vía HTTPS para activar o desactivar la aplicación de SSL.", +"Forces the clients to connect to %s via an encrypted connection." => "Forzar a los clientes a conectarse a %s por medio de una conexión encriptada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, conéctese a su %s a través de HTTPS para habilitar o deshabilitar la aplicación SSL.", "Log" => "Registro", "Log level" => "Nivel de registro", "More" => "Más", @@ -112,3 +115,4 @@ "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/es_AR.php b/settings/l10n/es_AR.php index 78c0c9ecbedd71e6d6d434df68a99789b3c0944a..fad7e52b91cfcfe1687b72cd7b14fa1cfb7f12d7 100644 --- a/settings/l10n/es_AR.php +++ b/settings/l10n/es_AR.php @@ -1,4 +1,5 @@ - "Imposible cargar la lista desde el App Store", "Authentication error" => "Error al autenticar", "Your display name has been changed." => "El nombre mostrado que usás fue cambiado.", @@ -37,33 +38,27 @@ "A valid password must be provided" => "Debe ingresar una contraseña válida", "__language_name__" => "Castellano (Argentina)", "Security Warning" => "Advertencia de seguridad", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Tu directorio de datos y tus archivos son probablemente accesibles desde internet. El archivo .htaccess provisto por ownCloud no está funcionando. Te sugerimos que configures tu servidor web de manera que el directorio de datos ya no esté accesible, o que muevas el directorio de datos afuera del directorio raíz de tu servidor web.", "Setup Warning" => "Alerta de Configuración", "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.", "Module 'fileinfo' missing" => "El módulo 'fileinfo' no existe", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "El módulo PHP 'fileinfo' no existe. Es recomendable que actives este módulo para obtener mejores resultados con la detección mime-type", "Locale not working" => "\"Locale\" no está funcionando", -"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." => "El servidor ownCloud no puede asignar la localización de sistema a %s. Esto puede provocar que existan problemas con algunos caracteres en los nombres de los archivos. Te sugerimos que instales los paquetes necesarios en tu sistema para dar soporte a %s.", "Internet connection not working" => "La conexión a Internet no esta funcionando. ", -"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." => "Este servidor ownCloud no tiene una conexión a internet que funcione. Esto significa que alguno de sus servicios, tales como montar dispositivos externos, notificación de actualizaciones o instalar Apps de otros desarrolladores no funcionan. Puede ser que tampoco puedas acceder a archivos remotos y mandar e-mails. Te sugerimos que actives una conexión a internet si querés estas características en ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Ejecutá una tarea con cada pagina cargada.", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado como un servicio webcron. Llamar la página cron.php en la raíz de ownCloud una vez al minuto sobre http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar el servicio de sistema cron. Llama al archivo cron.php en la carpeta de ownCloud a través del sistema cronjob cada un minuto.", "Sharing" => "Compartiendo", "Enable Share API" => "Habilitar Share API", "Allow apps to use the Share API" => "Permitir a las aplicaciones usar la Share API", "Allow links" => "Permitir enlaces", "Allow users to share items to the public with links" => "Permitir a los usuarios compartir enlaces públicos", +"Allow public uploads" => "Permitir subidas públicas", +"Allow users to enable others to upload into their publicly shared folders" => "Permitir que los usuarios autoricen a otros a subir archivos en sus directorios públicos compartidos", "Allow resharing" => "Permitir Re-Compartir", "Allow users to share items shared with them again" => "Permite a los usuarios volver a compartir items que les fueron compartidos", "Allow users to share with anyone" => "Permitir a los usuarios compartir con cualquiera.", "Allow users to only share with users in their groups" => "Permitir a los usuarios compartir sólo con los de sus mismos grupos", "Security" => "Seguridad", "Enforce HTTPS" => "Forzar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar a los clientes conectar a ownCloud vía conexión encriptada.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor conectate a este ownCloud vía HTTPS para habilitar o deshabilitar el SSL.", "Log" => "Log", "Log level" => "Nivel de Log", "More" => "Más", @@ -112,3 +107,4 @@ "set new password" => "Configurar nueva contraseña", "Default" => "Predeterminado" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/et_EE.php b/settings/l10n/et_EE.php index 1e5b35989b5f69be016a007d46c8481181be83c6..0f0947fa5b8afebf5984d5d23ee1991d914c1a8b 100644 --- a/settings/l10n/et_EE.php +++ b/settings/l10n/et_EE.php @@ -1,4 +1,5 @@ - "App Store'i nimekirja laadimine ebaõnnestus", "Authentication error" => "Autentimise viga", "Your display name has been changed." => "Sinu näidatav nimi on muudetud.", @@ -37,20 +38,20 @@ "A valid password must be provided" => "Sisesta nõuetele vastav parool", "__language_name__" => "Eesti", "Security Warning" => "Turvahoiatus", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, mida pakub ownCloud, ei toimi. Soovitame tungivalt veebiserveri seadistust selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi-juurkataloogist mujale.", +"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." => "Andmete kataloog ja failid on tõenäoliselt internetis avalikult saadaval. .htaccess fail, ei toimi. Soovitame tungivalt veebiserver seadistada selliselt, et andmete kataloog ei oleks enam vabalt saadaval või tõstaksid andmete kataloogi oma veebiserveri veebi juurkataloogist mujale.", "Setup Warning" => "Paigalduse hoiatus", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Veebiserveri ei ole veel korralikult seadistatud võimaldamaks failide sünkroniseerimist, kuna WebDAV liides näib olevat mittetoimiv.", -"Please double check the installation guides." => "Palun tutvu veelkord paigalduse juhenditega.", +"Please double check the installation guides." => "Palun kontrolli uuesti paigaldusjuhendeid.", "Module 'fileinfo' missing" => "Moodul 'fileinfo' puudub", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP moodul 'fileinfo' puudub. Soovitame tungivalt see lisada saavutamaks parimaid tulemusi failitüüpide tuvastamisel.", "Locale not working" => "Lokalisatsioon ei toimi", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud server ei suuda seadistada süsteemi lokalisatsiooni %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s.", +"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." => "Süsteemi lokaliseeringut ei saa panna %s. See tähendab, et võib esineda probleeme teatud tähemärkidega failide nimedes. Soovitame tungivalt paigaldada süsteemi vajalikud pakid toetamaks %s.", "Internet connection not working" => "Internetiühendus ei toimi", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", +"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." => "Serveril puudub toimiv internetiühendus. See tähendab, et mõned funktsionaalsused, nagu näiteks väliste andmehoidlate ühendamine, teavitused uuendustest või kolmandate osapoolte rakenduste paigaldamine ei tööta. Eemalt failidele ligipääs ning teadete saatmine emailiga ei pruugi samuti toimida. Kui soovid täielikku funktsionaalsust, siis soovitame serverile tagada ligipääs internetti.", "Cron" => "Cron", "Execute one task with each page loaded" => "Käivita toiming lehe laadimisel", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php on registreeritud webcron teenusena. Lae cron.php lehte owncloud veebikataloogist iga minut üle http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Kasuta süsteemi cron teenust. Käivita cron.php fail owncloud veebikataloogist kasutades süsteemi crontab toimingut iga minut.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php on registreeritud webcron teenusena laadimaks cron.php iga minut üle http.", +"Use systems cron service to call the cron.php file once a minute." => "Kasuta süsteemi cron teenust käivitamaks faili cron.php kord minutis.", "Sharing" => "Jagamine", "Enable Share API" => "Luba Share API", "Allow apps to use the Share API" => "Luba rakendustel kasutada Share API-t", @@ -64,8 +65,8 @@ "Allow users to only share with users in their groups" => "Luba kasutajatel jagada kirjeid ainult nende grupi liikmetele, millesse nad ise kuuluvad", "Security" => "Turvalisus", "Enforce HTTPS" => "Sunni peale HTTPS-i kasutamine", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Sunnib kliente ownCloudiga ühenduma krüpteeritult.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Palun ühendu selle ownCloud instantsiga üle HTTPS või keela SSL kasutamine.", +"Forces the clients to connect to %s via an encrypted connection." => "Sunnib kliente %s ühenduma krüpteeritult.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Palun ühendu oma %s üle HTTPS või keela SSL kasutamine.", "Log" => "Logi", "Log level" => "Logi tase", "More" => "Rohkem", @@ -114,3 +115,4 @@ "set new password" => "määra uus parool", "Default" => "Vaikeväärtus" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/eu.php b/settings/l10n/eu.php index 94751d916b1f6a454e00cf8dbbaf57f8bd02bdfb..4b6c13127b72811e7a6dda9f12f5651514676fbd 100644 --- a/settings/l10n/eu.php +++ b/settings/l10n/eu.php @@ -1,4 +1,5 @@ - "Ezin izan da App Dendatik zerrenda kargatu", "Authentication error" => "Autentifikazio errorea", "Your display name has been changed." => "Zure bistaratze izena aldatu egin da.", @@ -37,33 +38,32 @@ "A valid password must be provided" => "Baliozko pasahitza eman behar da", "__language_name__" => "Euskera", "Security Warning" => "Segurtasun abisua", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Zure data karpeta eta zure fitxategiak internetetik zuzenean eskuragarri egon daitezke. ownCloudek emandako .htaccess fitxategia ez du bere lana egiten. Aholkatzen dizugu zure web zerbitzaria ongi konfiguratzea data karpeta eskuragarri ez izateko edo data karpeta web zerbitzariaren dokumentu errotik mugitzea.", "Setup Warning" => "Konfiguratu Abisuak", "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.", +"Please double check the installation guides." => "Mesedez birpasatu instalazio gidak.", "Module 'fileinfo' missing" => "'fileinfo' Modulua falta da", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 'fileinfo' modulua falta da. Modulu hau gaitzea aholkatzen dizugu mime-type ezberdinak hobe detektatzeko.", "Locale not working" => "Lokala ez dabil", -"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." => "OwnClud zerbitzari honek ezin du sistemaren lokala %s-ra ezarri. Honek fitxategien izenetan karaktere batzuekin arazoak egon daitekeela esan nahi du. Aholkatzen dizugu zure sistema %s lokalea onartzeko beharrezkoak diren paketeak instalatzea.", "Internet connection not working" => "Interneteko konexioak ez du funtzionatzen", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud zerbitzari honen interneteko konexioa ez dabil. Honek esan nahi du kanpoko biltegiratze zerbitzuak, eguneraketen informazioa edo bestelako aplikazioen instalazioa bezalako programek ez dutela funtzionatuko. Urrunetik fitxategiak eskuratzea eta e-postak bidaltzea ere ezinezkoa izan daiteke. onwCloud-en aukera guztiak erabili ahal izateko zerbitzari honetan interneteko konexioa gaitzea aholkatzen dizugu.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exekutatu zeregin bat orri karga bakoitzean", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago. Deitu cron.php orria ownclouden erroan minuturo http bidez.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Erabili sistemaren cron zerbitzua. Deitu cron.php fitxategia owncloud karpetan minuturo sistemaren cron lan baten bidez.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php webcron zerbitzu batean erregistratua dago cron.php minuturo http bidez deitzeko.", +"Use systems cron service to call the cron.php file once a minute." => "Erabili sistemaren cron zerbitzua cron.php fitxategia minuturo deitzeko.", "Sharing" => "Partekatzea", "Enable Share API" => "Gaitu Elkarbanatze APIa", "Allow apps to use the Share API" => "Baimendu aplikazioak Elkarbanatze APIa erabiltzeko", "Allow links" => "Baimendu loturak", "Allow users to share items to the public with links" => "Baimendu erabiltzaileak loturen bidez fitxategiak publikoki elkarbanatzen", +"Allow public uploads" => "Baimendu igoera publikoak", +"Allow users to enable others to upload into their publicly shared folders" => "Baimendu erabiltzaileak besteak bere partekatutako karpetetan fitxategiak igotzea", "Allow resharing" => "Baimendu birpartekatzea", "Allow users to share items shared with them again" => "Baimendu erabiltzaileak haiekin elkarbanatutako fitxategiak berriz ere elkarbanatzen", "Allow users to share with anyone" => "Baimendu erabiltzaileak edonorekin elkarbanatzen", "Allow users to only share with users in their groups" => "Baimendu erabiltzaileak bakarrik bere taldeko erabiltzaileekin elkarbanatzen", "Security" => "Segurtasuna", "Enforce HTTPS" => "Behartu HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Bezeroak konexio enkriptatu baten bidez ownCloud-era konektatzera behartzen du.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Mesedez konektatu ownCloud honetara HTTPS bidez SSL-ren beharra gaitu edo ezgaitzeko", +"Forces the clients to connect to %s via an encrypted connection." => "Bezeroak %s-ra konexio enkriptatu baten bidez konektatzera behartzen ditu.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Mesedez konektatu zure %s-ra HTTPS bidez SSL zehaztapenak aldatzeko.", "Log" => "Egunkaria", "Log level" => "Erregistro maila", "More" => "Gehiago", @@ -112,3 +112,4 @@ "set new password" => "ezarri pasahitz berria", "Default" => "Lehenetsia" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/fa.php b/settings/l10n/fa.php index a8a5e33824184366625cc64493aceb302e7c5cbc..5d478bc49393450ded5209782b899e1a5018c6c8 100644 --- a/settings/l10n/fa.php +++ b/settings/l10n/fa.php @@ -1,4 +1,5 @@ - "قادر به بارگذاری لیست از فروشگاه اپ نیستم", "Authentication error" => "خطا در اعتبار سنجی", "Your display name has been changed." => "نام نمایش شما تغییر یافته است.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "رمز عبور صحیح باید وارد شود", "__language_name__" => "__language_name__", "Security Warning" => "اخطار امنیتی", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "احتمالاً فهرست و فایلهای شما از طریق اینترنت قابل دسترسی هستند. فایل با فرمت .htaccess که ownCloud اراده کرده است دیگر کار نمی کند. ما قویاً توصیه می کنیم که شما وب سرور خودتان را طوری تنظیم کنید که فهرست اطلاعات شما غیر قابل دسترسی باشند یا فهرست اطلاعات را به خارج از ریشه ی اصلی وب سرور انتقال دهید.", "Setup Warning" => "هشدار راه اندازی", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "احتمالاً وب سرور شما طوری تنظیم نشده است که اجازه ی همگام سازی فایلها را بدهد زیرا به نظر میرسد رابط WebDAV از کار افتاده است.", -"Please double check the installation guides." => "لطفاً دوباره راهنمای نصبرا بررسی کنید.", "Module 'fileinfo' missing" => "ماژول 'fileinfo' از کار افتاده", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "ماژول 'fileinfo' PHP از کار افتاده است.ما اکیدا توصیه می کنیم که این ماژول را فعال کنید تا نتایج بهتری به وسیله ی mime-type detection دریافت کنید.", "Locale not working" => "زبان محلی کار نمی کند.", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "این سرور ownCloud نمی تواند سیستم محلی را بر روی %s تنظیم کند.این به این معنی ست که ممکن است با کاراکترهای خاصی در نام فایل ها مشکل داشته باشد.ما اکیداً نصب کردن بسته های لازم را بر روی سیستم خودتان برای پشتیبانی %s توصیه می کنیم.", "Internet connection not working" => "اتصال اینترنت کار نمی کند", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "این سرور OwnCloud ارتباط اینترنتی ندارد.این بدین معناست که بعضی از خصوصیات نظیر خارج کردن منبع ذخیره ی خارجی، اطلاعات در مورد بروزرسانی ها یا نصب برنامه های نوع 3ام کار نمی کنند.دسترسی به فایل ها از راه دور و ارسال آگاه سازی ایمیل ها ممکن است همچنان کار نکنند.اگرشما همه ی خصوصیات OwnCloud می خواهید ما پیشنهاد می کنیم تا ارتباط اینترنتی مربوط به این سرور را فعال کنید.", "Cron" => "زمانبند", "Execute one task with each page loaded" => "اجرای یک وظیفه با هر بار بارگذاری صفحه", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php در یک سرویس webcron ثبت شده است. تماس یک بار در دقیقه بر روی http با صفحه cron.php در ریشه owncloud .", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "استفاده از سیستم های سرویس cron . تماس یک بار در دقیقه با فایل cron.php در پوشه owncloud از طریق یک سیستم cronjob .", "Sharing" => "اشتراک گذاری", "Enable Share API" => "فعال کردن API اشتراک گذاری", "Allow apps to use the Share API" => "اجازه ی برنامه ها برای استفاده از API اشتراک گذاری", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "اجازه به کاربران برای اشتراک گذاری ، تنها با دیگر کابران گروه خودشان", "Security" => "امنیت", "Enforce HTTPS" => "وادار کردن HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "وادار کردن مشتریان برای ارتباط با ownCloud از طریق رمزگذاری ارتباط", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "از طریق HTTPS به این نسخه از ownCloud متصل شوید تا بتوانید SSL را فعال یا غیر فعال نمایید.", "Log" => "کارنامه", "Log level" => "سطح ورود", "More" => "بیش‌تر", @@ -112,3 +105,4 @@ "set new password" => "تنظیم کلمه عبور جدید", "Default" => "پیش فرض" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/fi_FI.php b/settings/l10n/fi_FI.php index 282e619009a0836f89580d721e4de8b6063a64c2..61d0a51bf923a0dba17fb8054783f9c896e19685 100644 --- a/settings/l10n/fi_FI.php +++ b/settings/l10n/fi_FI.php @@ -1,4 +1,5 @@ - "Ei pystytä lataamaan listaa sovellusvarastosta (App Store)", "Authentication error" => "Tunnistautumisvirhe", "Your display name has been changed." => "Näyttönimesi on muutettu.", @@ -37,8 +38,6 @@ "A valid password must be provided" => "Anna kelvollinen salasana", "__language_name__" => "_kielen_nimi_", "Security Warning" => "Turvallisuusvaroitus", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Data-kansio ja tiedostot ovat ehkä saavutettavissa Internetistä. .htaccess-tiedosto, jolla kontrolloidaan pääsyä, ei toimi. Suosittelemme, että muutat web-palvelimesi asetukset niin ettei data-kansio ole enää pääsyä tai siirrät data-kansion pois web-palvelimen tiedostojen juuresta.", -"Please double check the installation guides." => "Lue tarkasti asennusohjeet.", "Module 'fileinfo' missing" => "Moduuli 'fileinfo' puuttuu", "Internet connection not working" => "Internet-yhteys ei toimi", "Cron" => "Cron", @@ -53,7 +52,6 @@ "Allow users to only share with users in their groups" => "Salli jakaminen vain samoissa ryhmissä olevien käyttäjien kesken", "Security" => "Tietoturva", "Enforce HTTPS" => "Pakota HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Pakottaa salaamaan ownCloudiin kohdistuvat yhteydet.", "Log" => "Loki", "Log level" => "Lokitaso", "More" => "Enemmän", @@ -100,3 +98,4 @@ "set new password" => "aseta uusi salasana", "Default" => "Oletus" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/fr.php b/settings/l10n/fr.php index 3dd89edb90fccb345df2e0b304f2a2c107a1d30a..1c64b01f5668336e1c5a1ba87e629c2c1aff8225 100644 --- a/settings/l10n/fr.php +++ b/settings/l10n/fr.php @@ -1,4 +1,5 @@ - "Impossible de charger la liste depuis l'App Store", "Authentication error" => "Erreur d'authentification", "Your display name has been changed." => "Votre nom d'affichage a bien été modifié.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "Un mot de passe valide doit être saisi", "__language_name__" => "Français", "Security Warning" => "Avertissement de sécurité", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Votre dossier data et vos fichiers sont probablement accessibles depuis internet. Le fichier .htaccess fourni par ownCloud ne fonctionne pas. Nous vous recommandons vivement de configurer votre serveur web de manière à ce que le dossier data ne soit plus accessible ou bien de déplacer le dossier data en dehors du dossier racine des documents du serveur web.", "Setup Warning" => "Avertissement, problème de configuration", "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.", "Module 'fileinfo' missing" => "Module 'fileinfo' manquant", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Le module PHP 'fileinfo' est manquant. Il est vivement recommandé de l'activer afin d'obtenir de meilleurs résultats pour la détection des types de fichiers.", "Locale not working" => "Localisation non fonctionnelle", -"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." => "Ce serveur ownCloud ne peut pas ajuster la localisation du système en %s. Cela signifie qu'il pourra y avoir des problèmes avec certains caractères dans les noms de fichiers. Il est vivement recommandé d'installer les paquets requis pour le support de %s.", "Internet connection not working" => "La connexion internet ne fonctionne pas", -"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." => "Ce serveur ownCloud ne peut pas se connecter à internet. Cela signifie que certaines fonctionnalités, telles que l'utilisation de supports de stockage distants, les notifications de mises à jour, ou l'installation d'applications tierces ne fonctionneront pas. L'accès aux fichiers à distance, ainsi que les notifications par mails ne marcheront pas non plus. Il est recommandé d'activer la connexion internet pour ce serveur si vous souhaitez utiliser toutes les fonctionnalités offertes par ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exécute une tâche à chaque chargement de page", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php est enregistré en tant que service webcron. Veuillez appeler la page cron.php située à la racine du serveur ownCoud via http toute les minutes.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilise le service cron du système. Appelle le fichier cron.php du répertoire owncloud toutes les minutes grâce à une tâche cron du système.", "Sharing" => "Partage", "Enable Share API" => "Activer l'API de partage", "Allow apps to use the Share API" => "Autoriser les applications à utiliser l'API de partage", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "Autoriser les utilisateurs à partager avec des utilisateurs de leur groupe uniquement", "Security" => "Sécurité", "Enforce HTTPS" => "Forcer HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forcer les clients à se connecter à Owncloud via une connexion chiffrée.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Merci de vous connecter à cette instance Owncloud en HTTPS pour activer ou désactiver SSL.", "Log" => "Log", "Log level" => "Niveau de log", "More" => "Plus", @@ -112,3 +105,4 @@ "set new password" => "Changer le mot de passe", "Default" => "Défaut" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/gl.php b/settings/l10n/gl.php index e871ad2a099d02d14dc4be9fd9f7f8ad3d23ac56..85e40f07638ba205c117ee0ad4c71a46b99f11bb 100644 --- a/settings/l10n/gl.php +++ b/settings/l10n/gl.php @@ -1,4 +1,5 @@ - "Non foi posíbel cargar a lista desde a App Store", "Authentication error" => "Produciuse un erro de autenticación", "Your display name has been changed." => "O seu nome visíbel foi cambiado", @@ -37,20 +38,20 @@ "A valid password must be provided" => "Debe fornecer un contrasinal", "__language_name__" => "Galego", "Security Warning" => "Aviso de seguranza", -"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." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través da Internet. O ficheiro .htaccess que fornece ownCloud non está a empregarse. Suxerímoslle que configure o seu servidor web de tal xeito que o cartafol de datos non estea accesíbel ou mova o cartafol de datos fora do directorio raíz de datos do servidor web.", +"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." => "O seu cartafol de datos e os seus ficheiros probabelmente sexan accesíbeis a través de internet. O ficheiro .htaccess non está a traballar. Suxerímoslle que configure o seu servidor web de tal maneira que o cartafol de datos non estea accesíbel ou que mova o o directorio de datos fóra da raíz de documentos do servidor web.", "Setup Warning" => "Configurar os avisos", "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", +"Please double check the installation guides." => "Volva comprobar as guías de instalación", "Module 'fileinfo' missing" => "Non se atopou o módulo «fileinfo»", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Non se atopou o módulo de PHP «fileinfo». É recomendábel activar este módulo para obter os mellores resultados coa detección do tipo MIME.", "Locale not working" => "A configuración rexional non funciona", -"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." => "Este servidor ownCloud non pode estabelecer a configuración rexional do sistema a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que inste os paquetes necesarios no sistema para aceptar o %s.", +"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." => "A configuración rexional do sistema non pode estabelecerse a %s. Isto significa que pode haber problemas con certos caracteres nos nomes de ficheiro. Recomendámoslle que instale os paquetes necesarios no sistema para aceptar o %s.", "Internet connection not working" => "A conexión á Internet non funciona", -"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." => "Este servidor ownCloud non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades de ownCloud.", +"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." => "Este servidor non ten conexión a Internet. Isto significa que algunhas das funcionalidades como a montaxe de almacenamento externo, as notificacións sobre actualizacións ou instalación de aplicativos de terceiros non funcionan. O acceso aos ficheiros de forma remota e o envío de mensaxes de notificación poderían non funcionar. Suxerímoslle que active a conexión a Internet deste servidor se quere dispor de todas as funcionalidades.", "Cron" => "Cron", "Execute one task with each page loaded" => "Executar unha tarefa con cada páxina cargada", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está rexistrado nun servizo de WebCron. Chame á página cron.php na raíz ownCloud unha vez por minuto a través de HTTP.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Use o servizo de sistema cron. Chame ao ficheiro cron.php no cartafol owncloud a través dun sistema de cronjob unha vez por minuto.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está rexistrado nun servizo de WebCron para chamar a cron.php unha vez por minuto a través de HTTP.", +"Use systems cron service to call the cron.php file once a minute." => "Use o servizo de sistema cron para chamar ao ficheiro cron.php unha vez por minuto.", "Sharing" => "Compartindo", "Enable Share API" => "Activar o API para compartir", "Allow apps to use the Share API" => "Permitir que os aplicativos empreguen o API para compartir", @@ -64,8 +65,8 @@ "Allow users to only share with users in their groups" => "Permitir que os usuarios compartan só cos usuarios dos seus grupos", "Security" => "Seguranza", "Enforce HTTPS" => "Forzar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forzar que os clientes se conecten a ownCloud empregando unha conexión cifrada", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Conectese a esta instancia ownCloud empregando HTTPS para activar ou desactivar o forzado de SSL.", +"Forces the clients to connect to %s via an encrypted connection." => "Forzar que os clientes se conecten a %s empregando unha conexión cifrada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Conéctese a %s empregando HTTPS para activar ou desactivar o forzado de SSL.", "Log" => "Rexistro", "Log level" => "Nivel de rexistro", "More" => "Máis", @@ -114,3 +115,4 @@ "set new password" => "estabelecer un novo contrasinal", "Default" => "Predeterminado" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/he.php b/settings/l10n/he.php index 077bc9e97f9c249ed57bba1645ffd7856edfbde1..b82e5a9b3e4a0505fbbf102fbd6bc271daf7e844 100644 --- a/settings/l10n/he.php +++ b/settings/l10n/he.php @@ -1,4 +1,5 @@ - "לא ניתן לטעון רשימה מה־App Store", "Authentication error" => "שגיאת הזדהות", "Your display name has been changed." => "שם התצוגה שלך הוחלף.", @@ -37,10 +38,8 @@ "A valid password must be provided" => "יש לספק ססמה תקנית", "__language_name__" => "עברית", "Security Warning" => "אזהרת אבטחה", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "יתכן שתיקיית הנתונים והקבצים שלך נגישים דרך האינטרנט. קובץ ה־‎.htaccess שמסופק על ידי ownCloud כנראה אינו עובד. אנו ממליצים בחום להגדיר את שרת האינטרנט שלך בדרך שבה תיקיית הנתונים לא תהיה זמינה עוד או להעביר את תיקיית הנתונים מחוץ לספריית העל של שרת האינטרנט.", "Setup Warning" => "שגיאת הגדרה", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "שרת האינטרנט שלך אינו מוגדר לצורכי סנכרון קבצים עדיין כיוון שמנשק ה־WebDAV כנראה אינו תקין.", -"Please double check the installation guides." => "נא לעיין שוב במדריכי ההתקנה.", "Module 'fileinfo' missing" => "המודול „fileinfo“ חסר", "Internet connection not working" => "החיבור לאינטרנט אינו פעיל", "Cron" => "Cron", @@ -102,3 +101,4 @@ "set new password" => "הגדרת ססמה חדשה", "Default" => "בררת מחדל" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/hi.php b/settings/l10n/hi.php index eb3fcc251f4698aee273972059f459f13fea619a..094a9dba298e69ab2e883486fb25f15f3c5062f6 100644 --- a/settings/l10n/hi.php +++ b/settings/l10n/hi.php @@ -1,7 +1,9 @@ - "त्रुटि", "Update" => "अद्यतन", "Password" => "पासवर्ड", "New password" => "नया पासवर्ड", "Username" => "प्रयोक्ता का नाम" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/hr.php b/settings/l10n/hr.php index 4bfbc2d3d50defb11409911fe2c9ddd0dcdff1b5..4a225ed4b8a374ec4bcef8feefc1d22f952e6730 100644 --- a/settings/l10n/hr.php +++ b/settings/l10n/hr.php @@ -1,4 +1,5 @@ - "Nemogićnost učitavanja liste sa Apps Stora", "Authentication error" => "Greška kod autorizacije", "Email saved" => "Email spremljen", @@ -35,3 +36,4 @@ "Other" => "ostali", "Username" => "Korisničko ime" ); +$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/hu_HU.php b/settings/l10n/hu_HU.php index dba63166ef8d16f4fa43db05fb29db6ea041c193..cfc6eff5638f5fc25f403774476e8d0c015514c0 100644 --- a/settings/l10n/hu_HU.php +++ b/settings/l10n/hu_HU.php @@ -1,4 +1,5 @@ - "Nem tölthető le a lista az App Store-ból", "Authentication error" => "Azonosítási hiba", "Your display name has been changed." => "Az Ön megjelenítési neve megváltozott.", @@ -37,33 +38,35 @@ "A valid password must be provided" => "Érvényes jelszót kell megadnia", "__language_name__" => "__language_name__", "Security Warning" => "Biztonsági figyelmeztetés", -"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." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon fontos, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", +"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." => "Az adatkönytára és az itt levő fájlok valószínűleg elérhetők az internetről. Az ownCloud által beillesztett .htaccess fájl nem működik. Nagyon erősen ajánlott, hogy a webszervert úgy konfigurálja, hogy az adatkönyvtár ne legyen közvetlenül kívülről elérhető, vagy az adatkönyvtárt tegye a webszerver dokumentumfáján kívülre.", "Setup Warning" => "A beállítással kapcsolatos figyelmeztetés", "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.", +"Please double check the installation guides." => "Kérjük tüzetesen tanulmányozza át a telepítési útmutatót.", "Module 'fileinfo' missing" => "A 'fileinfo' modul hiányzik", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "A 'fileinfo' PHP modul hiányzik. Erősen javasolt ennek a modulnak a telepítése a MIME-típusok felismerésének eredményessé tételéhez.", "Locale not working" => "A nyelvi lokalizáció nem működik", -"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." => "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást.", +"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." => "Ezen az ownCloud kiszolgálón nem használható a %s nyelvi beállítás. Ez azt jelenti, hogy a fájlnevekben gond lehet bizonyos karakterekkel. Nyomatékosan ajánlott, hogy telepítse a szükséges csomagokat annak érdekében, hogy a rendszer támogassa a %s beállítást.", "Internet connection not working" => "Az internet kapcsolat nem működik", -"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." => "Az ownCloud kiszolgálónak nincs internet kapcsolata. Ez azt jelenti, hogy bizonyos dolgok nem fognak működni, pl. külső tárolók csatolása, programfrissítésekről való értesítések, vagy külső fejlesztői modulok telepítése. Lehet, hogy az állományok távolról történő elérése, ill. az email értesítések sem fog működni. Javasoljuk, hogy engedélyezze az internet kapcsolatot a kiszolgáló számára, ha az ownCloud összes szolgáltatását szeretné használni.", +"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." => "A kiszolgálónak nincs müködő internet kapcsolata. Ez azt jelenti, hogy néhány képességét a kiszolgálónak mint például becsatolni egy külső tárolót, értesítések külső gyártók programjának frissítéséről nem fog müködni. A távolról való elérése a fileoknak és email értesítések küldése szintén nem fog müködni. Ha használni szeretnéd mindezeket a képességeit a szervernek, ahoz javasoljuk, hogy engedélyezzed az internet elérését a szervernek.", "Cron" => "Ütemezett feladatok", "Execute one task with each page loaded" => "Egy-egy feladat végrehajtása minden alkalommal, amikor egy weboldalt letöltenek", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg az owncloud könyvtárban levő cron.php állományt http-n keresztül percenként egyszer.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "A rendszer cron szolgáltatásának használata. Hívja meg az owncloud könyvtárban levő cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "A cron.php webcron szolgáltatásként van regisztrálva. Hívja meg a cron.php állományt http-n keresztül percenként egyszer.", +"Use systems cron service to call the cron.php file once a minute." => "A rendszer cron szolgáltatásának használata. Hívja meg a cron.php állományt percenként egyszer a rendszer cron szolgáltatásának segítségével.", "Sharing" => "Megosztás", "Enable Share API" => "A megosztás API-jának engedélyezése", "Allow apps to use the Share API" => "Lehetővé teszi, hogy a programmodulok is használhassák a megosztást", "Allow links" => "Linkek engedélyezése", "Allow users to share items to the public with links" => "Lehetővé teszi, hogy a felhasználók linkek segítségével külsősökkel is megoszthassák az adataikat", +"Allow public uploads" => "Feltöltést engedélyezése mindenki számára", +"Allow users to enable others to upload into their publicly shared folders" => "Engedélyezni a felhasználóknak, hogy beállíithassák, hogy mások feltölthetnek a nyilvánosan megosztott mappákba.", "Allow resharing" => "A továbbosztás engedélyezése", "Allow users to share items shared with them again" => "Lehetővé teszi, hogy a felhasználók a velük megosztott állományokat megosszák egy további, harmadik féllel", "Allow users to share with anyone" => "A felhasználók bárkivel megoszthatják állományaikat", "Allow users to only share with users in their groups" => "A felhasználók csak olyanokkal oszthatják meg állományaikat, akikkel közös csoportban vannak", "Security" => "Biztonság", "Enforce HTTPS" => "Kötelező HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak az ownCloud szolgáltatáshoz.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Kérjük, hogy HTTPS protokollt használjon, ha be vagy ki akarja kapcsolni a kötelező SSL beállítást.", +"Forces the clients to connect to %s via an encrypted connection." => "Kötelezővé teszi, hogy a böngészőprogramok titkosított csatornán kapcsolódjanak a %s szolgáltatáshoz.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Kérjük kapcsolodjon a %s rendszerhez HTTPS protokollon keresztül, hogy be vagy ki kapcsoljaa kötelező SSL beállítást.", "Log" => "Naplózás", "Log level" => "Naplózási szint", "More" => "Több", @@ -112,3 +115,4 @@ "set new password" => "új jelszó beállítása", "Default" => "Alapértelmezett" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/hy.php b/settings/l10n/hy.php index 9a9e46085ef5ea94f5a0191efce9e8e44c17bcfa..d73cb37a765755991fd92b529b9f342e180788e3 100644 --- a/settings/l10n/hy.php +++ b/settings/l10n/hy.php @@ -1,4 +1,6 @@ - "Ջնջել", "Other" => "Այլ" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ia.php b/settings/l10n/ia.php index d6d1c9eb86e102d0d80aa9d71fa1c1dc6440de01..3f61ff8eefee8ae7a8ad6bc3faf0a6573bfc9474 100644 --- a/settings/l10n/ia.php +++ b/settings/l10n/ia.php @@ -1,4 +1,5 @@ - "Linguage cambiate", "Invalid request" => "Requesta invalide", "Error" => "Error", @@ -24,3 +25,4 @@ "Other" => "Altere", "Username" => "Nomine de usator" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/id.php b/settings/l10n/id.php index 012f5885b423af7bda95431ae535fe368758a040..6c3ad8b3e771362ddf84bd9d8fb3409c2b0f6d33 100644 --- a/settings/l10n/id.php +++ b/settings/l10n/id.php @@ -1,4 +1,5 @@ - "Tidak dapat memuat daftar dari App Store", "Authentication error" => "Galat saat autentikasi", "Unable to change display name" => "Tidak dapat mengubah nama tampilan", @@ -36,20 +37,14 @@ "A valid password must be provided" => "Tuliskan sandi yang valid", "__language_name__" => "__language_name__", "Security Warning" => "Peringatan Keamanan", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Mungkin direktori data dan berkas Anda dapat diakses dari internet. Berkas .htaccess yang disediakan oleh ownCloud tidak berfungsi. Kami sangat menyarankan Anda untuk mengonfigurasi webserver Anda agar direktori data tidak lagi dapat diakses atau pindahkan direktori data ke luar akar dokumen webserver.", "Setup Warning" => "Peringatan Persiapan", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Web server Anda belum dikonfigurasikan dengan baik untuk mengizinkan sinkronisasi berkas karena tampaknya antarmuka WebDAV rusak.", -"Please double check the installation guides." => "Silakan periksa ulang panduan instalasi.", "Module 'fileinfo' missing" => "Module 'fileinfo' tidak ada", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Module 'fileinfo' pada PHP tidak ada. Kami sangat menyarankan untuk mengaktifkan modul ini untuk mendapatkan hasil terbaik pada proses pendeteksian mime-type.", "Locale not working" => "Kode pelokalan tidak berfungsi", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Server ownCloud ini tidak dapat menyetel kode pelokalan sistem ke nilai %s. Ini berarti mungkin akan terjadi masalah pada karakter tertentu pada nama berkas. Kami sarankan untuk menginstal paket yang dibutuhkan pada sistem Anda untuk mendukung %s.", "Internet connection not working" => "Koneksi internet tidak berfungsi", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Server ownCloud ini tidak memiliki koneksi internet yang berfungsi. Artinya, beberapa fitur misalnya mengaitkan penyimpanan eksternal, notifikasi tentang pembaruan, atau instalasi aplikasi dari pihak ketiga tidak akan dapat berfungsi. Pengaksesan berkas secara online dan pengiriman email notifikasi mungkin juga tidak dapat berfungsi. Kami sarankan untuk mengaktifkan koneksi internet server ini agar mendapatkan semua fitur ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Jalankan tugas setiap kali halaman dimuat", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php telah terdaftar sebagai layanan webcron. Panggil halaman cron.php pada akar direktori ownCloud tiap menit lewat http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Gunakan layanan cron sistem. Panggil berkas cron.php pada folder ownCloud lewat cronjob sistem tiap menit.", "Sharing" => "Berbagi", "Enable Share API" => "Aktifkan API Pembagian", "Allow apps to use the Share API" => "Izinkan aplikasi untuk menggunakan API Pembagian", @@ -61,8 +56,6 @@ "Allow users to only share with users in their groups" => "Hanya izinkan pengguna untuk berbagi dengan pengguna pada grup mereka sendiri", "Security" => "Keamanan", "Enforce HTTPS" => "Selalu Gunakan HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Paksa klien untuk tersambung ke ownCloud lewat koneksi yang dienkripsi.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Silakan sambungkan ke instalasi ownCloud lewat HTTPS untuk mengaktifkan atau menonaktifkan fitur SSL.", "Log" => "Catat", "Log level" => "Level pencatatan", "More" => "Lainnya", @@ -108,3 +101,4 @@ "set new password" => "setel sandi baru", "Default" => "Baku" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/is.php b/settings/l10n/is.php index fecc82ec6d73c2ba6a75cc0da61bd921b563ccfe..2e97650bdb8563beeeb426f148974c2d417fe5c0 100644 --- a/settings/l10n/is.php +++ b/settings/l10n/is.php @@ -1,4 +1,5 @@ - "Ekki tókst að hlaða lista frá forrita síðu", "Authentication error" => "Villa við auðkenningu", "Group already exists" => "Hópur er þegar til", @@ -27,7 +28,6 @@ "Delete" => "Eyða", "__language_name__" => "__nafn_tungumáls__", "Security Warning" => "Öryggis aðvörun", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Gagnamappan þín er að öllum líkindum aðgengileg frá internetinu. Skráin .htaccess sem fylgir með ownCloud er ekki að virka. Við mælum eindregið með því að þú stillir vefþjóninn þannig að gagnamappan verði ekki aðgengileg frá internetinu eða færir hana út fyrir vefrótina.", "More" => "Meira", "Less" => "Minna", "Version" => "Útgáfa", @@ -66,3 +66,4 @@ "Storage" => "gagnapláss", "Default" => "Sjálfgefið" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/it.php b/settings/l10n/it.php index 995be0e99800524930e06866437aed4d929f61b8..b6a508ba46ba43efbf3bed26fb2d6a9858390da0 100644 --- a/settings/l10n/it.php +++ b/settings/l10n/it.php @@ -1,4 +1,5 @@ - "Impossibile caricare l'elenco dall'App Store", "Authentication error" => "Errore di autenticazione", "Your display name has been changed." => "Il tuo nome visualizzato è stato cambiato.", @@ -37,20 +38,20 @@ "A valid password must be provided" => "Deve essere fornita una password valida", "__language_name__" => "Italiano", "Security Warning" => "Avviso di sicurezza", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet. Il file .htaccess fornito da ownCloud non funziona. Ti suggeriamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o sposta tale cartella fuori dalla radice del sito.", +"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." => "La cartella dei dati e i tuoi file sono probabilmente accessibili da Internet.\nIl file .htaccess non funziona. Ti consigliamo vivamente di configurare il server web in modo che la cartella dei dati non sia più accessibile o spostare la cartella fuori dalla radice del server web.", "Setup Warning" => "Avviso di configurazione", "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.", +"Please double check the installation guides." => "Leggi attentamente le guide d'installazione.", "Module 'fileinfo' missing" => "Modulo 'fileinfo' mancante", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Il modulo PHP 'fileinfo' non è presente. Consigliamo vivamente di abilitare questo modulo per ottenere risultati migliori con il rilevamento dei tipi MIME.", "Locale not working" => "Locale non funzionante", -"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." => "Questo server ownCloud non può impostare la localizzazione a %s. Ciò significa che potrebbero esserci problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti richiesti sul sistema per supportare %s.", +"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." => "La localizzazione di sistema è impostata a %s. Ciò significa che potrebbero verificarsi dei problemi con alcuni caratteri nei nomi dei file. Consigliamo vivamente di installare i pacchetti necessari a supportare %s.", "Internet connection not working" => "Concessione Internet non funzionante", -"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." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. Anche l'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità di ownCloud.", +"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." => "Questo server ownCloud non ha una connessione a Internet funzionante. Ciò significa che alcune delle funzionalità come il montaggio di archivi esterni, le notifiche degli aggiornamenti o l'installazione di applicazioni di terze parti non funzioneranno. L'accesso remoto ai file e l'invio di email di notifica potrebbero non funzionare. Ti suggeriamo di abilitare la connessione a Internet del server se desideri disporre di tutte le funzionalità.", "Cron" => "Cron", "Execute one task with each page loaded" => "Esegui un'operazione con ogni pagina caricata", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php è registrato su un sevizio webcron. Invoca la pagina cron.php nella radice di ownCloud ogni minuto, tramite http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utilizza il servizio cron di sistema. Invoca il file cron.php nella cartella di ownCloud tramite un job ogni minuto.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php è registrato su un servizio webcron per invocare la pagina cron.php ogni minuto su http.", +"Use systems cron service to call the cron.php file once a minute." => "Usa il servizio cron di sistema per invocare il file cron.php ogni minuto.", "Sharing" => "Condivisione", "Enable Share API" => "Abilita API di condivisione", "Allow apps to use the Share API" => "Consenti alle applicazioni di utilizzare le API di condivisione", @@ -64,8 +65,8 @@ "Allow users to only share with users in their groups" => "Consenti agli utenti di condividere solo con utenti dei loro gruppi", "Security" => "Protezione", "Enforce HTTPS" => "Forza HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Obbliga i client a connettersi a ownCloud tramite una confessione cifrata.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Connettiti a questa istanza di ownCloud tramite HTTPS per abilitare o disabilitare la protezione SSL.", +"Forces the clients to connect to %s via an encrypted connection." => "Forza i client a connettersi a %s tramite una connessione cifrata.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Connettiti al tuo %s tramite HTTPS per abilitare o disabilitare l'applicazione di SSL.", "Log" => "Log", "Log level" => "Livello di log", "More" => "Altro", @@ -114,3 +115,4 @@ "set new password" => "imposta una nuova password", "Default" => "Predefinito" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ja_JP.php b/settings/l10n/ja_JP.php index 2ec69194925d6df74f7827024586385cdfc75278..2fbe05befa9fe7aaaf45bfa85ab7719e14ebc404 100644 --- a/settings/l10n/ja_JP.php +++ b/settings/l10n/ja_JP.php @@ -1,4 +1,5 @@ - "アプリストアからリストをロードできません", "Authentication error" => "認証エラー", "Your display name has been changed." => "表示名を変更しました。", @@ -37,33 +38,35 @@ "A valid password must be provided" => "有効なパスワードを指定する必要があります", "__language_name__" => "Japanese (日本語)", "Security Warning" => "セキュリティ警告", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "データディレクトリとファイルが恐らくインターネットからアクセスできるようになっています。ownCloudが提供する .htaccessファイルが機能していません。データディレクトリを全くアクセスできないようにするか、データディレクトリをウェブサーバのドキュメントルートの外に置くようにウェブサーバを設定することを強くお勧めします。 ", +"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." => "データディレクトリとファイルがインターネットからアクセス可能になっている可能性があります。.htaccessファイルが機能していません。データディレクトリがアクセスされないようにウェブサーバーを設定するか、ウェブサーバーのドキュメントルートからデータディレクトリを移動するように強くお勧めします。", "Setup Warning" => "セットアップ警告", "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." => "インストールガイドをよく確認してください。", +"Please double check the installation guides." => "installation guidesをもう一度チェックするようにお願いいたします。", "Module 'fileinfo' missing" => "モジュール 'fileinfo' が見つかりません", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP のモジュール 'fileinfo' が見つかりません。mimeタイプの検出を精度良く行うために、このモジュールを有効にすることを強くお勧めします。", "Locale not working" => "ロケールが動作していません", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "この ownCloud サーバは、システムロケールを %s に設定できません。これは、ファイル名の特定の文字で問題が発生する可能性があることを意味しています。%s をサポートするために、システムに必要なパッケージをインストールすることを強く推奨します。", +"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." => "システムロケールが %s に設定出来ません。この場合、ファイル名にそのロケールの文字が入っていたときに問題になる可能性があります。必要なパッケージをシステムにインストールして、%s をサポートすることを強くお勧めします。", "Internet connection not working" => "インターネット接続が動作していません", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "この ownCloud サーバには有効なインターネット接続がありません。これは、外部ストレージのマウント、更新の通知、サードパーティ製アプリのインストール、のようないくつかの機能が動作しないことを意味しています。リモートからファイルにアクセスしたり、通知メールを送信したりすることもできません。全ての機能を利用するためには、このサーバのインターネット接続を有効にすることを推奨します。", +"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." => "このサーバーはインターネットに接続していません。この場合、外部ストレージのマウント、更新の通知やサードパーティアプリといったいくつかの機能が使えません。また、リモート接続でのファイルアクセス、通知メールの送信と言った機能も利用できないかもしれません。全ての機能を利用したいのであれば、このサーバーからインターネットに接続できるようにすることをお勧めします。", "Cron" => "Cron", "Execute one task with each page loaded" => "各ページの読み込み時にタスクを実行する", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php は webcron サービスに登録されています。owncloud のルートにある cron.php のページを http 経由で1分に1回呼び出して下さい。", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "システムの cron サービスを利用する。システムの cronjob を通して1分に1回 owncloud 内の cron.php ファイルを呼び出して下さい。", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "http経由で1分間に1回cron.phpを呼び出すように cron.phpがwebcron サービスに登録されています。", +"Use systems cron service to call the cron.php file once a minute." => "cron.phpファイルを1分間に1回実行する為にサーバーのcronサービスを利用する。", "Sharing" => "共有", "Enable Share API" => "共有APIを有効にする", "Allow apps to use the Share API" => "アプリからの共有APIの利用を許可する", "Allow links" => "リンクを許可する", "Allow users to share items to the public with links" => "リンクによりアイテムを公開することを許可する", +"Allow public uploads" => "パブリックなアップロードを許可", +"Allow users to enable others to upload into their publicly shared folders" => "公開している共有フォルダへのアップロードを共有しているメンバーにも許可", "Allow resharing" => "再共有を許可する", "Allow users to share items shared with them again" => "ユーザが共有しているアイテムの再共有を許可する", "Allow users to share with anyone" => "ユーザが誰とでも共有することを許可する", "Allow users to only share with users in their groups" => "ユーザにグループ内のユーザとのみ共有を許可する", "Security" => "セキュリティ", "Enforce HTTPS" => "常にHTTPSを使用する", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "クライアントからownCloudへの接続を常に暗号化する", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "常にSSL接続を有効/無効にするために、HTTPS経由でこの ownCloud に接続して下さい。", +"Forces the clients to connect to %s via an encrypted connection." => "クライアントから %sへの接続を常に暗号化する。", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "強制的なSSL接続を有効/無効にするために、HTTPS経由で %s へ接続してください。", "Log" => "ログ", "Log level" => "ログレベル", "More" => "もっと見る", @@ -112,3 +115,4 @@ "set new password" => "新しいパスワードを設定", "Default" => "デフォルト" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ka.php b/settings/l10n/ka.php index 63425e555b057dbd1d31ae80ca0c39dd35657bbc..e9024a3c1c95381b61d33acf3db821e2f39dd036 100644 --- a/settings/l10n/ka.php +++ b/settings/l10n/ka.php @@ -1,3 +1,5 @@ - "პაროლი" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ka_GE.php b/settings/l10n/ka_GE.php index 302745052cc5f994f996e666dc501e8dbbdf8e02..09a948a0574971ebd2028335321b3d69bf08dbf7 100644 --- a/settings/l10n/ka_GE.php +++ b/settings/l10n/ka_GE.php @@ -1,4 +1,5 @@ - "აპლიკაციების სია ვერ ჩამოიტვირთა App Store", "Authentication error" => "ავთენტიფიკაციის შეცდომა", "Your display name has been changed." => "თქვენი დისფლეის სახელი უკვე შეიცვალა", @@ -37,20 +38,14 @@ "A valid password must be provided" => "უნდა მიუთითოთ არსებული პაროლი", "__language_name__" => "__language_name__", "Security Warning" => "უსაფრთხოების გაფრთხილება", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "თქვენი data დირექტორია და ფაილები არის დაშვებადი ინტერნეტიდან. .htaccess ფაილი რომელსაც ownCloud გვთავაზობს არ მუშაობს. ჩვენ გირჩევთ რომ თქვენი ვებსერვერი დააკონფიგურიროთ ისე რომ data დირექტორია არ იყოს დაშვებადი, ან გაიტანოთ data დირექტორია ვებსერვერის document root დირექტორიის გარეთ.", "Setup Warning" => "გაფრთხილება დაყენებისას", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "თქვენი web სერვერი არ არის კონფიგურირებული ფაილ სინქრონიზაციისთვის, რადგან WebDAV ინტერფეისი შეიძლება იყოს გატეხილი.", -"Please double check the installation guides." => "გთხოვთ გადაათვალიეროთ ინსტალაციის გზამკვლევი.", "Module 'fileinfo' missing" => "მოდული 'fileinfo' არ არსებობს", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP მოდული 'fileinfo' არ არსებობს. ჩვენ გირჩევთ რომ აუცილებლად ჩართოთ ეს მოდული, რომ მიიღოთ კარგი შედეგები mime-type–ს აღმოჩენისას.", "Locale not working" => "ლოკალიზაცია არ მუშაობს", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "თქვენი ownCloud სერვერი ვერ აყენებს %s სისტემურ ენას. ეს გულისხმობს იმას რომ შეიძლება შეიქმნას პრობლემა გარკვეულ სიმბოლოებზე ფაილის სახელებში. ჩვენ გიჩევთ რომ დააინსტალიროთ საჭირო პაკეტები თქვენს სისტემაზე იმისათვის რომ იყოს %s –ის მხარდაჭერა.", "Internet connection not working" => "ინტერნეტ კავშირი არ მუშაობს", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud სერვერს არ გააჩნია ინტერნეტთან კავშირი. ეს ნიშნავს იმას რომ გარკვეული ფუნქციები როგორიცაა ექსტერნალ საცავების მონტირება, შეტყობინებები განახლების შესახებ ან სხვადასხვა 3rd აპლიკაციების ინსტალაცია არ იმუშავებს. ფაილებთან წვდომა გარე სამყაროდან და შეტყობინების იმეილებიც აგრეთვე არ იმუშავებს. ჩვენ გირჩევთ რომ ჩართოთ ინტერნეტ კავშირი ამ სერვერისთვის იმისათვის რომ გქონდეთ ownCloud–ის ყველა ფუნქცია გააქტიურებული.", "Cron" => "Cron–ი", "Execute one task with each page loaded" => "გაუშვი თითო მოქმედება ყველა ჩატვირთულ გვერდზე", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php რეგისტრირებულია webcron სერვისად. გაუშვით cron.php გვერდი რომელიც მოთავსებულია owncloud root დირექტორიაში, წუთში ერთხელ http–ით.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "გამოიყენე სისტემური cron სერვისი. გაუშვით cron.php ფაილი owncloud ფოლდერიდან სისტემურ cronjob–ში წუთში ერთხელ.", "Sharing" => "გაზიარება", "Enable Share API" => "Share API–ის ჩართვა", "Allow apps to use the Share API" => "დაუშვი აპლიკაციების უფლება Share API –ზე", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "მიეცით უფლება მომხმარებლებს რომ გააზიაროს მხოლოდ თავიანთი ჯგუფისთვის", "Security" => "უსაფრთხოება", "Enforce HTTPS" => "HTTPS–ის ჩართვა", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "ვაიძულოთ მომხმარებლები რომ დაუკავშირდნენ ownCloud დაცული კავშირით (https).", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "გთხოვთ დაუკავშირდეთ ownCloud–ს HTTPS–ით რომ შეძლოთ SSL–ის ჩართვა გამორთვა.", "Log" => "ლოგი", "Log level" => "ლოგირების დონე", "More" => "უფრო მეტი", @@ -109,3 +102,4 @@ "set new password" => "დააყენეთ ახალი პაროლი", "Default" => "საწყისი პარამეტრები" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ko.php b/settings/l10n/ko.php index 230a2185bfb0585425380f3ae8df786d0b12f526..4473a2c51263195b5aebcd34a211ca1bb42ab9f3 100644 --- a/settings/l10n/ko.php +++ b/settings/l10n/ko.php @@ -1,4 +1,5 @@ - "앱 스토어에서 목록을 가져올 수 없습니다", "Authentication error" => "인증 오류", "Your display name has been changed." => "표시 이름이 변경되었습니다.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "올바른 암호를 입력해야 함", "__language_name__" => "한국어", "Security Warning" => "보안 경고", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "데이터 디렉터리와 파일을 인터넷에서 접근할 수 있는 것 같습니다. ownCloud에서 제공한 .htaccess 파일이 작동하지 않습니다. 웹 서버를 다시 설정하여 데이터 디렉터리에 접근할 수 없도록 하거나 문서 루트 바깥쪽으로 옮기는 것을 추천합니다.", "Setup Warning" => "설정 경고", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "WebDAV 인터페이스가 제대로 작동하지 않습니다. 웹 서버에서 파일 동기화를 사용할 수 있도록 설정이 제대로 되지 않은 것 같습니다.", -"Please double check the installation guides." => "설치 가이드를 다시 한 번 확인하십시오.", "Module 'fileinfo' missing" => "모듈 'fileinfo'가 없음", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 모듈 'fileinfo'가 존재하지 않습니다. MIME 형식 감지 결과를 향상시키기 위하여 이 모듈을 활성화하는 것을 추천합니다.", "Locale not working" => "로캘이 작동하지 않음", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 서버의 시스템 로캘을 %s(으)로 설정할 수 없습니다. 파일 이름에 특정한 글자가 들어가 있는 경우 문제가 발생할 수 있습니다. %s을(를) 지원하기 위해서 시스템에 필요한 패키지를 설치하는 것을 추천합니다.", "Internet connection not working" => "인터넷에 연결할 수 없음", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud 서버에서 인터넷에 연결할 수 없습니다. 외부 저장소 마운트, 업데이트 알림, 외부 앱 설치 등이 작동하지 않을 것입니다. 외부에서 파일에 접근하거나, 알림 이메일을 보내지 못할 수도 있습니다. ownCloud의 모든 기능을 사용하려면 이 서버를 인터넷에 연결하는 것을 추천합니다.", "Cron" => "크론", "Execute one task with each page loaded" => "개별 페이지를 불러올 때마다 실행", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php가 webcron 서비스에 등록되어 있습니다. HTTP를 통하여 1분마다 ownCloud 루트에서 cron.php 페이지를 불러옵니다.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "시스템 cron 서비스를 사용합니다. 시스템 cronjob을 사용하여 ownCloud 폴더의 cron.php 파일을 1분마다 불러옵니다.", "Sharing" => "공유", "Enable Share API" => "공유 API 사용하기", "Allow apps to use the Share API" => "앱에서 공유 API를 사용할 수 있도록 허용", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "사용자가 속해 있는 그룹의 사용자와만 공유할 수 있도록 허용", "Security" => "보안", "Enforce HTTPS" => "HTTPS 강제 사용", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "클라이언트가 ownCloud에 항상 암호화된 연결로 연결하도록 강제합니다.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "SSL 강제 사용 설정을 변경하려면 ownCloud 인스턴스에 HTTPS로 연결하십시오.", "Log" => "로그", "Log level" => "로그 단계", "More" => "더 중요함", @@ -111,3 +104,4 @@ "set new password" => "새 암호 설정", "Default" => "기본값" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/ku_IQ.php b/settings/l10n/ku_IQ.php index 244aba63a2c72276b05dbcd1aa7d440f6bf85d84..4be8f212d39814eb9d39c91ff2bc2da1094b2ca1 100644 --- a/settings/l10n/ku_IQ.php +++ b/settings/l10n/ku_IQ.php @@ -1,4 +1,5 @@ - "چالاککردن", "Error" => "هه‌ڵه", "Saving..." => "پاشکه‌وتده‌کات...", @@ -8,3 +9,4 @@ "Email" => "ئیمه‌یل", "Username" => "ناوی به‌کارهێنه‌ر" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/lb.php b/settings/l10n/lb.php index 7060d41537a95d813ba742d6804dda20db85d77b..7902e37a4f92e38b378e5b4c1555f7470d7cbe6d 100644 --- a/settings/l10n/lb.php +++ b/settings/l10n/lb.php @@ -1,4 +1,5 @@ - "Konnt Lescht net vum App Store lueden", "Authentication error" => "Authentifikatioun's Fehler", "Email saved" => "E-mail gespäichert", @@ -42,3 +43,4 @@ "Other" => "Aner", "Username" => "Benotzernumm" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/lt_LT.php b/settings/l10n/lt_LT.php index 1e54dcb692676092ede0669956fe396ec1a8b034..4e419112a0200a9ae3ce3164a2d315170cedf9fd 100644 --- a/settings/l10n/lt_LT.php +++ b/settings/l10n/lt_LT.php @@ -1,4 +1,5 @@ - "Neįmanoma įkelti sąrašo iš Programų Katalogo", "Authentication error" => "Autentikacijos klaida", "Group already exists" => "Grupė jau egzistuoja", @@ -33,7 +34,6 @@ "A valid password must be provided" => "Slaptažodis turi būti tinkamas", "__language_name__" => "Kalba", "Security Warning" => "Saugumo pranešimas", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Jūsų duomenų aplankalas ir Jūsų failai turbūt yra pasiekiami per internetą. Failas .htaccess, kuris duodamas, neveikia. Mes rekomenduojame susitvarkyti savo nustatymsu taip, kad failai nebūtų pasiekiami per internetą, arba persikelti juos kitur.", "Module 'fileinfo' missing" => "Trūksta 'fileinfo' modulio", "Cron" => "Cron", "Sharing" => "Dalijimasis", @@ -73,3 +73,4 @@ "set new password" => "nustatyti naują slaptažodį", "Default" => "Numatytasis" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/lv.php b/settings/l10n/lv.php index b9836634a03aa344ef0e70af666e7c5d3d71611e..eba0f3c89abbaab237d99b1ae9445bfe9dc6a32e 100644 --- a/settings/l10n/lv.php +++ b/settings/l10n/lv.php @@ -1,4 +1,5 @@ - "Nevar lejupielādēt sarakstu no lietotņu veikala", "Authentication error" => "Autentifikācijas kļūda", "Unable to change display name" => "Nevarēja mainīt redzamo vārdu", @@ -36,20 +37,14 @@ "A valid password must be provided" => "Jānorāda derīga parole", "__language_name__" => "__valodas_nosaukums__", "Security Warning" => "Brīdinājums par drošību", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Jūsu datu direktorija un datnes visdrīzāk ir pieejamas no interneta. ownCloud nodrošinātā .htaccess datne nedarbojas. Mēs iesakām konfigurēt serveri tā, lai datu direktorija vairs nebūtu pieejama, vai arī pārvietojiet datu direktoriju ārpus tīmekļa servera dokumentu saknes.", "Setup Warning" => "Iestatīšanas brīdinājums", "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.", "Module 'fileinfo' missing" => "Trūkst modulis “fileinfo”", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Trūkst PHP modulis “fileinfo”. Mēs iesakām to aktivēt, lai pēc iespējas labāk noteiktu mime tipus.", "Locale not working" => "Lokāle nestrādā", -"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." => "Šis ownCloud serveris nevar iestatīt sistēmas lokāli uz %s. Tas nozīmē, ka varētu būt problēmas ar noteiktām rakstzīmēm datņu nosaukumos. Mēs iesakām instalēt vajadzīgās pakotnes savā sistēmā %s atbalstam.", "Internet connection not working" => "Interneta savienojums nedarbojas", -"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." => "Šim ownCloud serverim nav strādājoša interneta savienojuma. Tas nozīmē, ka dažas no šīm iespējām, piemēram, ārējas krātuves montēšana, paziņošana par atjauninājumiem vai trešās puses programmatūras instalēšana nestrādā. Varētu nestrādāt attālināta piekļuve pie datnēm un paziņojumu e-pasta vēstuļu sūtīšana. Mēs iesakām aktivēt interneta savienojumu šim serverim, ja vēlaties visas ownCloud iespējas.", "Cron" => "Cron", "Execute one task with each page loaded" => "Izpildīt vienu uzdevumu ar katru ielādēto lapu", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ir reģistrēts webcron servisā. Izsauciet cron.php lapu ownCloud saknē caur http reizi sekundē.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Izmantot sistēmas cron servisu. Izsauciet cron.php datni ownCloud mapē caur sistēmas cornjob reizi minūtē.", "Sharing" => "Dalīšanās", "Enable Share API" => "Aktivēt koplietošanas API", "Allow apps to use the Share API" => "Ļauj lietotnēm izmantot koplietošanas API", @@ -61,8 +56,6 @@ "Allow users to only share with users in their groups" => "Ļaut lietotājiem dalīties ar lietotājiem to grupās", "Security" => "Drošība", "Enforce HTTPS" => "Uzspiest HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Piespiež klientus savienoties ar ownCloud caur šifrētu savienojumu.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Lūdzu, savienojieties ar šo ownCloud pakalpojumu caur HTTPS, lai aktivētu vai deaktivētu SSL piemērošanu.", "Log" => "Žurnāls", "Log level" => "Žurnāla līmenis", "More" => "Vairāk", @@ -108,3 +101,4 @@ "set new password" => "iestatīt jaunu paroli", "Default" => "Noklusējuma" ); +$PLURAL_FORMS = "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"; diff --git a/settings/l10n/mk.php b/settings/l10n/mk.php index f36bb8c7fce9b3321b8e067d613f00275a9a718d..61f1b8b3bcdbf90387f99bd7807e4ae33b669a63 100644 --- a/settings/l10n/mk.php +++ b/settings/l10n/mk.php @@ -1,4 +1,5 @@ - "Неможам да вчитам листа од App Store", "Authentication error" => "Грешка во автентикација", "Group already exists" => "Групата веќе постои", @@ -23,7 +24,6 @@ "Delete" => "Избриши", "__language_name__" => "__language_name__", "Security Warning" => "Безбедносно предупредување", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Вашата папка со податоци и датотеките е најверојатно достапна од интернет. .htaccess датотеката што ја овозможува ownCloud не фунционира. Силно препорачуваме да го исконфигурирате вашиот сервер за вашата папка со податоци не е достапна преку интернетт или преместете ја надвор од коренот на веб серверот.", "Log" => "Записник", "Log level" => "Ниво на логирање", "More" => "Повеќе", @@ -58,3 +58,4 @@ "Other" => "Останато", "Username" => "Корисничко име" ); +$PLURAL_FORMS = "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"; diff --git a/settings/l10n/ms_MY.php b/settings/l10n/ms_MY.php index d151cba29f94560506ab13d114cbd0ea791378c9..a65afb8ada1a0c4adfbe56bec280fa64c8c758ac 100644 --- a/settings/l10n/ms_MY.php +++ b/settings/l10n/ms_MY.php @@ -1,4 +1,5 @@ - "Ralat pengesahan", "Email saved" => "Emel disimpan", "Invalid email" => "Emel tidak sah", @@ -34,3 +35,4 @@ "Other" => "Lain", "Username" => "Nama pengguna" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/my_MM.php b/settings/l10n/my_MM.php index 9459a2e53fec7506d16faea3976833a6ac39513e..f49a9c1802373491610a5fecd07d513144cf7c1f 100644 --- a/settings/l10n/my_MM.php +++ b/settings/l10n/my_MM.php @@ -1,4 +1,5 @@ - "ခွင့်ပြုချက်မအောင်မြင်", "Invalid request" => "တောင်းဆိုချက်မမှန်ကန်ပါ", "Security Warning" => "လုံခြုံရေးသတိပေးချက်", @@ -6,3 +7,4 @@ "New password" => "စကားဝှက်အသစ်", "Username" => "သုံးစွဲသူအမည်" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/nb_NO.php b/settings/l10n/nb_NO.php index 408b8570fd297ac6eb9963eefaeaa9a9c72b82e5..9048d89bad12cf36171892c162fff88c1f7ee5fd 100644 --- a/settings/l10n/nb_NO.php +++ b/settings/l10n/nb_NO.php @@ -1,4 +1,5 @@ - "Lasting av liste fra App Store feilet.", "Authentication error" => "Autentiseringsfeil", "Your display name has been changed." => "Ditt visningsnavn er blitt endret.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "Oppgi et gyldig passord", "__language_name__" => "__language_name__", "Security Warning" => "Sikkerhetsadvarsel", -"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." => "Ditt data mappe og dine filer er sannsynligvis tilgjengelig fra internet. .htaccess filene som ownCloud bruker virker ikke. Du bør konfigurere din nettserver slik at data mappa ikke lenger er tilgjengelig eller flytt data mappe ut av nettserverens dokumentområde.", "Setup Warning" => "Installasjonsadvarsel", "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.", "Module 'fileinfo' missing" => "Modulen 'fileinfo' mangler", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP modulen 'fileinfo' mangler. Vi anbefaler at du aktiverer denne modulen for å kunne detektere mime-typen korrekt.", "Locale not working" => "Språk virker ikke", -"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." => "Denne ownCloud serveren kan ikke sette systemspråk til %s. Det kan være problemer med visse tegn i filnavn. Vi foreslår at du installerer de nødvendige pakkene på ditt system for å støtte %s.", "Internet connection not working" => "Ingen internettilkopling", -"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." => "Denne ownCloud serveren har ikke tilkopling til internett. Noen funksjoner som f.eks. tilkopling til ekstern lager, melgin om oppdatering og installasjon av tredjeparts apps vil ikke virke. Vi foreslår at du aktivere en internettilkopling til denne serveren hvis du vil bruke alle funksjonene i ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Utfør en oppgave med hver side som blir lastet", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php er registrert som webcron-tjeneste. Kjør cron.php siden i ownCloud rot hvert minutt vha http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Bruk systemets crontjeneste. Kjør cron.php filen i owncloud mappa vha systemets crontjeneste hver minutt.", "Sharing" => "Deling", "Enable Share API" => "Aktiver API for Deling", "Allow apps to use the Share API" => "Tillat apps å bruke API for Deling", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "Tillat kun deling med andre brukere i samme gruppe", "Security" => "Sikkerhet", "Enforce HTTPS" => "Tving HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Tvinger klienter til å bruke ownCloud via kryptert tilkopling.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Vær vennlig, bruk denne ownCloud instansen via HTTPS for å aktivere eller deaktivere tvungen bruk av SSL.", "Log" => "Logg", "Log level" => "Loggnivå", "More" => "Mer", @@ -110,3 +103,4 @@ "set new password" => "sett nytt passord", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/nl.php b/settings/l10n/nl.php index 910e321b5f568e6246a0ebb42e50f7968ad40165..67ddafdc3c5e70032203de31a1cd2692f1fb854a 100644 --- a/settings/l10n/nl.php +++ b/settings/l10n/nl.php @@ -1,4 +1,5 @@ - "Kan de lijst niet van de App store laden", "Authentication error" => "Authenticatie fout", "Your display name has been changed." => "Uw weergavenaam is gewijzigd.", @@ -37,33 +38,32 @@ "A valid password must be provided" => "Er moet een geldig wachtwoord worden opgegeven", "__language_name__" => "Nederlands", "Security Warning" => "Beveiligingswaarschuwing", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Uw data is waarschijnlijk toegankelijk vanaf net internet. Het .htaccess bestand dat ownCloud levert werkt niet goed. U wordt aangeraden om de configuratie van uw webserver zodanig aan te passen dat de data folders niet meer publiekelijk toegankelijk zijn. U kunt ook de data folder verplaatsen naar een folder buiten de webserver document folder.", "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." => "Controleer de installatiehandleiding goed.", +"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", -"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." => "Deze ownCloud server kan de systeemtaal niet instellen op %s. Hierdoor kunnen er mogelijk problemen optreden met bepaalde tekens in bestandsnamen. Het wordt sterk aangeraden om de vereiste pakketen op uw systeem te installeren zodat %s ondersteund wordt.", "Internet connection not working" => "Internet verbinding werkt niet", -"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." => "Deze ownCloud server heeft geen actieve internet verbinding. dat betekent dat sommige functies, zoals aankoppelen van externe opslag, notificaties over updates of installatie van apps van 3e partijen niet werken. Ook het benaderen van bestanden vanaf een remote locatie en het versturen van notificatie emails kan mislukken. We adviseren om de internet verbinding voor deze server in te schakelen als u alle functies van ownCloud wilt gebruiken.", "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. Call the cron.php page in the owncloud root once a minute over http." => "cron.php is geregistreerd bij een webcron service. Roep eens per minuut de cron.php pagina aan over http in de ownCloud root.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Gebruik de systems cron service. Roep eens per minuut de cron.php file in de ownCloud map via een systeem cronjob.", +"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", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Afdwingen dat de clients alleen via versleutelde verbinding contact maken met ownCloud.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Maak via HTTPS verbinding met deze ownCloud inrichting om het afdwingen van gebruik van SSL te activeren of deactiveren.", +"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", @@ -112,3 +112,4 @@ "set new password" => "Instellen nieuw wachtwoord", "Default" => "Standaard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/nn_NO.php b/settings/l10n/nn_NO.php index 642f523006175bea4f0d23fce1f5d16b6895e9da..5c7a0756d537f0eef14ba69dd9877458e104835e 100644 --- a/settings/l10n/nn_NO.php +++ b/settings/l10n/nn_NO.php @@ -1,4 +1,5 @@ - "Klarer ikkje å lasta inn liste fra app-butikken", "Authentication error" => "Autentiseringsfeil", "Your display name has been changed." => "Visingsnamnet ditt er endra.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "Du må oppgje eit gyldig passord", "__language_name__" => "Nynorsk", "Security Warning" => "Tryggleiksåtvaring", -"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." => "Datamappa og filene dine er sannsynlegvis tilgjengelege frå Internett. Fila .htaccess som ownCloud tilbyr fungerer ikkje. Me rår sterkt til at du set opp tenaren din slik at datamappa ikkje lenger er tilgjengeleg, eller at du flyttar datamappa vekk frå dokumentrota til tenaren.", "Setup Warning" => "Oppsettsåtvaring", "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 venleg og dobbeltsjekk installasjonsrettleiinga.", "Module 'fileinfo' missing" => "Modulen «fileinfo» manglar", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen «fileinfo» manglar. Me rår sterkt til å slå på denne modulen for å best mogleg oppdaga MIME-typar.", "Locale not working" => "Regionaldata fungerer ikkje", -"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." => "Denne ownCloud-tenaren kan ikkje stilla regionen til %s. Dette tyder at det kan vera problem med visse teikn i filnamn. Me rår sterkt til å installera systempakkane som trengst for å støtta %s.", "Internet connection not working" => "Nettilkoplinga fungerer ikkje", -"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." => "Denne ownCloud-tenaren har ikkje nokon fungerande nettilkopling. Difor vil visse funksjonar, t.d. montering av ekstern lagring, varsling om oppdatering, eller installering av tredjepartsprogram ikkje fungera. Varslingsepostar og ekstern tilgang til filer vil kanskje heller ikkje fungera. Me foreslår at du slå på nettilkoplinga til denne tenaren viss du vil nytta alle funksjonane til ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Utfør éi oppgåve for kvar sidelasting", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php er registrert ved ei webcron-teneste. Last sida cron.php i ownCloud-rota ein gong i minuttet over http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Bruk cron-tenesta til systemet. Køyr fila cron.php i ownCloud-mappa frå ein cron-jobb på systemet ein gong i minuttet.", "Sharing" => "Deling", "Enable Share API" => "Slå på API-et for deling", "Allow apps to use the Share API" => "La app-ar bruka API-et til deling", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "La brukarar dela berre med brukarar i deira grupper", "Security" => "Tryggleik", "Enforce HTTPS" => "Krev HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Krev at klientar koplar til ownCloud med ei kryptert tilkopling.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Ver venleg og kopla denne ownCloud-instansen til via HTTPS for å slå av/på SSL-handhevinga.", "Log" => "Logg", "Log level" => "Log nivå", "More" => "Meir", @@ -109,3 +102,4 @@ "set new password" => "lag nytt passord", "Default" => "Standard" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/oc.php b/settings/l10n/oc.php index 34820d0349d2dd3d187f7777141e9d0cf825c16d..bcc8d2d0337ab656ac59191001f86430830c2939 100644 --- a/settings/l10n/oc.php +++ b/settings/l10n/oc.php @@ -1,4 +1,5 @@ - "Pas possible de cargar la tièra dempuèi App Store", "Authentication error" => "Error d'autentificacion", "Group already exists" => "Lo grop existís ja", @@ -25,7 +26,6 @@ "Security Warning" => "Avertiment de securitat", "Cron" => "Cron", "Execute one task with each page loaded" => "Executa un prètfach amb cada pagina cargada", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Utiliza lo servici cron de ton sistèm operatiu. Executa lo fichièr cron.php dins lo dorsier owncloud tras cronjob del sistèm cada minuta.", "Sharing" => "Al partejar", "Enable Share API" => "Activa API partejada", "Log" => "Jornal", @@ -49,3 +49,4 @@ "Other" => "Autres", "Username" => "Non d'usancièr" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/pl.php b/settings/l10n/pl.php index d5f4f5a155e531666697b875cefd0f7d8cdeaf59..2c4990b285d021f0605d2df010b8c8ffec0c6971 100644 --- a/settings/l10n/pl.php +++ b/settings/l10n/pl.php @@ -1,4 +1,5 @@ - "Nie można wczytać listy aplikacji", "Authentication error" => "Błąd uwierzytelniania", "Your display name has been changed." => "Twoje wyświetlana nazwa została zmieniona.", @@ -37,33 +38,28 @@ "A valid password must be provided" => "Należy podać prawidłowe hasło", "__language_name__" => "polski", "Security Warning" => "Ostrzeżenie o zabezpieczeniach", -"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." => "Katalog danych i twoje pliki są prawdopodobnie dostępne z Internetu. Plik .htaccess dostarczony przez ownCloud nie działa. Zalecamy skonfigurowanie serwera internetowego w taki sposób, aby katalog z danymi nie był dostępny lub przeniesienie katalogu z danymi poza katalog główny serwera internetowego.", "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." => "Sprawdź ponownie przewodniki instalacji.", +"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", -"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." => "Ten serwer ownCloud nie może włączyć ustawień regionalnych %s. Może to oznaczać, że wystąpiły problemy z niektórymi znakami w nazwach plików. Zalecamy instalację wymaganych pakietów na tym systemie w celu wsparcia %s.", "Internet connection not working" => "Połączenie internetowe nie działa", -"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." => "Ten serwer OwnCloud nie ma działającego połączenia z Internetem. Oznacza to, że niektóre z funkcji, takich jak montowanie zewnętrznych zasobów, powiadomienia o aktualizacji lub instalacja dodatkowych aplikacji nie będą działać. Dostęp do plików z zewnątrz i wysyłanie powiadomień e-mail może również nie działać. Sugerujemy, aby włączyć połączenie internetowe dla tego serwera, jeśli chcesz korzystać ze wszystkich funkcji ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Wykonuj jedno zadanie wraz z każdą wczytaną stroną", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php jest zarejestrowany w usłudze webcron. Przywołaj stronę cron.php w katalogu głównym ownCloud raz na minutę przez http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Użyj systemowej usługi cron. Przywołaj plik cron.php z katalogu ownCloud przez systemowy cronjob raz na minutę.", "Sharing" => "Udostępnianie", "Enable Share API" => "Włącz API udostępniania", "Allow apps to use the Share API" => "Zezwalaj aplikacjom na korzystanie z API udostępniania", "Allow links" => "Zezwalaj na odnośniki", "Allow users to share items to the public with links" => "Zezwalaj użytkownikom na publiczne współdzielenie zasobów za pomocą odnośników", +"Allow public uploads" => "Pozwól na publiczne wczytywanie", "Allow resharing" => "Zezwalaj na ponowne udostępnianie", "Allow users to share items shared with them again" => "Zezwalaj użytkownikom na ponowne współdzielenie zasobów już z nimi współdzielonych", "Allow users to share with anyone" => "Zezwalaj użytkownikom na współdzielenie z kimkolwiek", "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", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Wymusza na klientach na łączenie się ownCloud za pośrednictwem połączenia szyfrowanego.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Proszę połącz się do tej instancji ownCloud za pośrednictwem protokołu HTTPS, aby włączyć lub wyłączyć stosowanie protokołu SSL.", +"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", @@ -111,3 +107,4 @@ "set new password" => "ustaw nowe hasło", "Default" => "Domyślny" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/pl_PL.php b/settings/l10n/pl_PL.php index 7dcd2fdfae87ce1ef11202a4eab2c4acd05ddd4b..91ae517f236a1be1c734ba6a47d0f806ff0a9a95 100644 --- a/settings/l10n/pl_PL.php +++ b/settings/l10n/pl_PL.php @@ -1,4 +1,6 @@ - "Uaktualnienie", "Email" => "Email" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"; diff --git a/settings/l10n/pt_BR.php b/settings/l10n/pt_BR.php index a728c26689aea463545fabc8a60a003196edf5a5..a46d6e22bde0d06b02a90ca6f4333b5afbf5e372 100644 --- a/settings/l10n/pt_BR.php +++ b/settings/l10n/pt_BR.php @@ -1,4 +1,5 @@ - "Não foi possível carregar lista da App Store", "Authentication error" => "Erro de autenticação", "Your display name has been changed." => "A exibição de seu nome foi alterada.", @@ -37,20 +38,20 @@ "A valid password must be provided" => "Forneça uma senha válida", "__language_name__" => "Português (Brasil)", "Security Warning" => "Aviso de Segurança", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Seu diretório de dados e seus arquivos estão, provavelmente, acessíveis a partir da internet. O .htaccess que o ownCloud fornece não está funcionando. Nós sugerimos que você configure o seu servidor web de uma forma que o diretório de dados esteja mais acessível ou que você mova o diretório de dados para fora da raiz do servidor web.", +"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." => "Seu diretório de dados e seus arquivos são, provavelmente, acessíveis a partir da internet. O arquivo htaccess. não está funcionando. Nós sugerimos fortemente que você configure o seu servidor web de uma forma que o diretório de dados não esteja mais acessível ou mova o diretório de dados para fora do raiz do servidor.", "Setup Warning" => "Aviso de Configuração", "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 não estar funcionando.", -"Please double check the installation guides." => "Por favor, confira o guia de instalação.", +"Please double check the installation guides." => "Por favor, verifique os guias de instalação.", "Module 'fileinfo' missing" => "Módulo 'fileinfo' faltando", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O módulo PHP 'fileinfo' está faltando. Recomendamos que ative este módulo para obter uma melhor detecção do tipo de mídia (mime-type).", "Locale not working" => "Localização não funcionando", -"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." => "Este servidor ownCloud não pode configurar a localização do sistema para %s. Isto significa que pode haver problema com alguns caracteres nos nomes de arquivos. Nós recomendamos fortemente que você instale os pacotes requeridos em seu sistema para suportar %s.", +"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." => "A localidade do sistema não pode ser definida para %s. Isso significa que pode haver problemas com certos caracteres em nomes de arquivos. Nós sugerimos instalar os pacotes necessários no seu sistema para suportar %s.", "Internet connection not working" => "Sem conexão com a internet", -"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." => "Este servidor ownCloud não tem conexão com a internet. Isto significa que alguns dos recursos como montar armazenamento externo, notificar atualizações ou instalar aplicativos de terceiros não funcionam. Acesso remoto a arquivos e envio de e-mails de notificação podem também não funcionar. Sugerimos que habilite a conexão com a internet neste servidor se quiser usufruir de todos os recursos do ownCloud.", +"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." => "Este servidor não tem conexão com a internet. Isso significa que algumas das características como a montagem de armazenamento externo, notificações sobre atualizações ou instalação de aplicativos de 3ºs terceiros não funcionam. Acessar arquivos remotamente e envio de e-mails de notificação também não podem funcionar. Sugerimos permitir conexão com a internet para esse servidor, se você deseja ter todas as funcionalidades.", "Cron" => "Cron", "Execute one task with each page loaded" => "Execute uma tarefa com cada página carregada", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registrado no serviço webcron. Chame a página cron.php na raíz do owncloud a cada minuto por http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar serviço de cron do sistema. Chama o arquivo cron.php na pasta owncloud via cronjob do sistema a cada minuto.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registrado em um serviço webcron chamar cron.php uma vez por minuto usando http.", +"Use systems cron service to call the cron.php file once a minute." => "Utilizar sistema de serviços cron para chamar o arquivo cron.php uma vez por minuto.", "Sharing" => "Compartilhamento", "Enable Share API" => "Habilitar API de Compartilhamento", "Allow apps to use the Share API" => "Permitir que aplicativos usem a API de Compartilhamento", @@ -64,8 +65,8 @@ "Allow users to only share with users in their groups" => "Permitir que usuários compartilhem somente com usuários em seus grupos", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Força o cliente a conectar-se ao ownCloud por uma conexão criptografada.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor, conecte-se a esta instância do ownCloud via HTTPS para habilitar ou desabilitar 'Forçar SSL'.", +"Forces the clients to connect to %s via an encrypted connection." => "Obrigar os clientes que se conectem a %s através de uma conexão criptografada.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor, se conectar ao seu %s via HTTPS para forçar ativar ou desativar SSL.", "Log" => "Registro", "Log level" => "Nível de registro", "More" => "Mais", @@ -114,3 +115,4 @@ "set new password" => "definir nova senha", "Default" => "Padrão" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/pt_PT.php b/settings/l10n/pt_PT.php index 259b3032744af291a81a8c93fe4204a26d1b8bf4..84d70b6ae7e7e0763ae6e424be10a8ad13933c33 100644 --- a/settings/l10n/pt_PT.php +++ b/settings/l10n/pt_PT.php @@ -1,4 +1,5 @@ - "Incapaz de carregar a lista da App Store", "Authentication error" => "Erro na autenticação", "Your display name has been changed." => "O seu nome foi alterado", @@ -37,33 +38,35 @@ "A valid password must be provided" => "Uma password válida deve ser fornecida", "__language_name__" => "__language_name__", "Security Warning" => "Aviso de Segurança", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.", +"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." => "A sua pasta com os dados e os seus ficheiros estão provavelmente acessíveis a partir das internet. O seu ficheiro .htaccess não está a funcionar corretamente. Sugerimos veementemente que configure o seu servidor web de maneira a que a pasta com os dados deixe de ficar acessível, ou mova a pasta com os dados para fora da raiz de documentos do servidor web.", "Setup Warning" => "Aviso de setup", "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.", +"Please double check the installation guides." => "Por favor verifique oGuia de instalação.", "Module 'fileinfo' missing" => "Falta o módulo 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "O Módulo PHP 'fileinfo' não se encontra instalado/activado. É fortemente recomendado que active este módulo para obter os melhores resultado com a detecção dos tipos de mime.", "Locale not working" => "Internacionalização não está a funcionar", -"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." => "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s.", +"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." => "Este servidor de ownCloud não consegue definir a codificação de caracteres para %s. Isto significa que pode haver problemas com alguns caracteres nos nomes dos ficheiros. É fortemente recomendado que instale o pacote recomendado para ser possível ver caracteres codificados em %s.", "Internet connection not working" => "A ligação à internet não está a funcionar", -"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." => "Este servidor ownCloud não tem uma ligação de internet funcional. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretende obter todas as funcionalidades do ownCloud.", +"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." => "Este servidor ownCloud não tem uma ligação de internet a funcionar. Isto significa que algumas funcionalidades como o acesso a locais externos (dropbox, gdrive, etc), notificações sobre actualizções, ou a instalação de aplicações não irá funcionar. Sugerimos que active uma ligação à internet se pretender obter todas as funcionalidades do ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Executar uma tarefa com cada página carregada", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php está registado como um serviço webcron. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Usar o serviço cron do sistema. Aceda a pagina cron.php que se encontra na raiz do ownCloud uma vez por minuto utilizando o seu browser.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php está registado num serviço webcron para chamar a página cron.php por http uma vez por minuto.", +"Use systems cron service to call the cron.php file once a minute." => "Use o serviço cron do sistema para chamar o ficheiro cron.php uma vez por minuto.", "Sharing" => "Partilha", "Enable Share API" => "Activar a API de partilha", "Allow apps to use the Share API" => "Permitir que os utilizadores usem a API de partilha", "Allow links" => "Permitir links", "Allow users to share items to the public with links" => "Permitir que os utilizadores partilhem itens com o público utilizando um link.", +"Allow public uploads" => "Permitir Envios Públicos", +"Allow users to enable others to upload into their publicly shared folders" => "Permitir aos utilizadores que possam definir outros utilizadores para carregar ficheiros para as suas pastas publicas", "Allow resharing" => "Permitir repartilha", "Allow users to share items shared with them again" => "Permitir que os utilizadores partilhem itens partilhados com eles", "Allow users to share with anyone" => "Permitir que os utilizadores partilhem com todos", "Allow users to only share with users in their groups" => "Permitir que os utilizadores partilhem somente com utilizadores do seu grupo", "Security" => "Segurança", "Enforce HTTPS" => "Forçar HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Forçar clientes a ligar através de uma ligação encriptada", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Por favor ligue-se ao ownCloud através de uma ligação HTTPS para ligar/desligar o forçar da ligação por SSL", +"Forces the clients to connect to %s via an encrypted connection." => "Forçar os clientes a ligar a %s através de uma ligação encriptada", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Por favor ligue-se a %s através de uma ligação HTTPS para ligar/desligar o uso de ligação por SSL", "Log" => "Registo", "Log level" => "Nível do registo", "More" => "Mais", @@ -112,3 +115,4 @@ "set new password" => "definir nova palavra-passe", "Default" => "Padrão" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ro.php b/settings/l10n/ro.php index 5fced879701a526172122b8ff00f01ea0b478fc2..0b30001e8c1030e1ee60e2273dd53e442a6e165c 100644 --- a/settings/l10n/ro.php +++ b/settings/l10n/ro.php @@ -1,4 +1,5 @@ - "Imposibil de actualizat lista din App Store.", "Authentication error" => "Eroare la autentificare", "Your display name has been changed." => "Numele afişat a fost schimbat.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "Trebuie să furnizaţi o parolă validă", "__language_name__" => "_language_name_", "Security Warning" => "Avertisment de securitate", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Directorul tău de date și fișierele tale probabil sunt accesibile prin internet. Fișierul .htaccess oferit de ownCloud nu funcționează. Îți recomandăm să configurezi server-ul tău web într-un mod în care directorul de date să nu mai fie accesibil sau mută directorul de date în afara directorului root al server-ului web.", "Setup Warning" => "Atenţie la implementare", "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.", "Module 'fileinfo' missing" => "Modulul \"Fileinfo\" lipsește", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Modulul PHP \"Fileinfo\" lipsește. Va recomandam sa activaţi acest modul pentru a obține cele mai bune rezultate cu detectarea mime-type.", "Locale not working" => "Localizarea nu funcționează", -"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." => "Acest server ownCloud nu poate seta sistemul de localizare pentru% s. Acest lucru înseamnă că ar putea exista probleme cu anumite caractere în numele de fișiere. Vă recomandăm să instalați pachetele necesare pe sistemul dumneavoastră pentru a sprijini% s.", "Internet connection not working" => "Conexiunea la internet nu funcționează", -"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." => "Acest server ownCloud nu are nici o conexiune la internet activă. Acest lucru înseamnă că anumite caracteristici, cum ar fi montarea mediilor de stocare externe, notificări despre actualizări sau instalarea de aplicatii tereţe nu funcționează. Accesarea fișierelor de la distanță și trimiterea de e-mailuri de notificare s-ar putea, de asemenea, să nu funcționeze. Vă sugerăm să permiteţi conectarea la Internet pentru acest server, dacă doriți să aveți toate caracteristicile de oferite de ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Execută o sarcină la fiecare pagină încărcată", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php este înregistrat în serviciul webcron. Accesează pagina cron.php din root-ul owncloud odată pe minut prin http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Folosește serviciul cron al sistemului. Accesează fișierul cron.php din directorul owncloud printr-un cronjob de sistem odată la fiecare minut.", "Sharing" => "Partajare", "Enable Share API" => "Activare API partajare", "Allow apps to use the Share API" => "Permite aplicațiilor să folosească API-ul de partajare", @@ -101,3 +96,4 @@ "Storage" => "Stocare", "Default" => "Implicită" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"; diff --git a/settings/l10n/ru.php b/settings/l10n/ru.php index ed6d2075618112e9b41bc4d206e66a2531554c8f..c58fafbf27a566f115740f1a46486a0287c578ab 100644 --- a/settings/l10n/ru.php +++ b/settings/l10n/ru.php @@ -1,4 +1,5 @@ - "Не удалось загрузить список из App Store", "Authentication error" => "Ошибка аутентификации", "Your display name has been changed." => "Ваше отображаемое имя было изменено.", @@ -37,33 +38,35 @@ "A valid password must be provided" => "Укажите валидный пароль", "__language_name__" => "Русский ", "Security Warning" => "Предупреждение безопасности", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваш каталог с данными и файлы, вероятно, доступны из интернета. Файл .htaccess, предоставляемый ownCloud, не работает. Мы настоятельно рекомендуем настроить веб-сервер таким образом, чтобы каталоги данных больше не были доступны, или переместить их за пределы корневого каталога документов веб-сервера.", +"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." => "Похоже, что папка с Вашими данными и Ваши файлы доступны из интернета. Файл .htaccess не работает. Мы настойчиво предлагаем Вам сконфигурировать вебсервер таким образом, чтобы папка с Вашими данными более не была доступна или переместите папку с данными куда-нибудь в другое место вне основной папки документов вебсервера.", "Setup Warning" => "Предупреждение установки", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Веб-сервер до сих пор не настроен для возможности синхронизации файлов. Похоже что проблема в неисправности интерфейса WebDAV.", -"Please double check the installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", +"Please double check the installation guides." => "Пожалуйста, дважды просмотрите инструкции по установке.", "Module 'fileinfo' missing" => "Модуль 'fileinfo' отсутствует", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP модуль 'fileinfo' отсутствует. Мы настоятельно рекомендуем включить этот модуль для улучшения определения типов (mime-type) файлов.", "Locale not working" => "Локализация не работает", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Этот сервер ownCloud не может установить язык системы на %s. Это означает, что могут быть проблемы с некоторыми символами в именах файлов. Мы настоятельно рекомендуем установить необходимые пакеты в вашей системе для поддержки %s.", +"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." => "Системный язык не может быть установлен в %s. Это значит, что могут возникнуть проблемы с некоторыми символами в именах файлов. Мы настойчиво предлагаем установить требуемые пакеты в Вашей системе для поддержки %s.", "Internet connection not working" => "Интернет-соединение не работает", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Этот сервер ownCloud не имеет рабочего интернет-соединения. Это значит, что некоторые возможности отключены, например: подключение внешних носителей, уведомления об обновлениях, установка сторонних приложений.", +"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." => "Этот сервер не имеет подключения к сети интернет. Это значит, что некоторые возможности, такие как подключение внешних дисков, уведомления об обновлениях или установка сторонних приложений – не работают. Удалённый доступ к файлам и отправка уведомлений по электронной почте вероятнее всего тоже не будут работать. Предлагаем включить соединение с интернетом для этого сервера, если Вы хотите иметь все возможности.", "Cron" => "Планировщик задач по расписанию", "Execute one task with each page loaded" => "Выполнять одно задание с каждой загруженной страницей", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Зарегистрировать cron.php в службе webcron сервисе. Вызывает страницу cron.php в корне owncloud раз в минуту через http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Использовать системную службу cron. Вызов файла cron.php в папке owncloud через систему cronjob раз в минуту.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php зарегистрирован в сервисе webcron, чтобы cron.php вызывался раз в минуту используя http.", +"Use systems cron service to call the cron.php file once a minute." => "Использовать системный сервис cron для вызова cron.php раз в минуту.", "Sharing" => "Общий доступ", "Enable Share API" => "Включить API общего доступа", "Allow apps to use the Share API" => "Позволить приложениям использовать API общего доступа", "Allow links" => "Разрешить ссылки", "Allow users to share items to the public with links" => "Разрешить пользователям открывать в общий доступ элементы с публичной ссылкой", +"Allow public uploads" => "Разрешить открытые загрузки", +"Allow users to enable others to upload into their publicly shared folders" => "Разрешить пользователям позволять другим загружать в их открытые папки", "Allow resharing" => "Разрешить переоткрытие общего доступа", "Allow users to share items shared with them again" => "Позволить пользователям открывать общий доступ к эллементам уже открытым в общий доступ", "Allow users to share with anyone" => "Разрешить пользователя делать общий доступ любому", "Allow users to only share with users in their groups" => "Разрешить пользователям делать общий доступ только для пользователей их групп", "Security" => "Безопасность", "Enforce HTTPS" => "Принудить к HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Принудить клиентов подключаться к ownCloud через шифрованное подключение.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Пожалуйста, подключитесь к этому экземпляру ownCloud через HTTPS для включения или отключения SSL принуждения.", +"Forces the clients to connect to %s via an encrypted connection." => "Принудить клиентов подключаться к %s через шифрованное соединение.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Пожалуйста, подключитесь к %s используя HTTPS чтобы включить или отключить принудительное SSL.", "Log" => "Лог", "Log level" => "Уровень лога", "More" => "Больше", @@ -112,3 +115,4 @@ "set new password" => "установить новый пароль", "Default" => "По умолчанию" ); +$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/ru_RU.php b/settings/l10n/ru_RU.php deleted file mode 100644 index d80f7b087347d87c7be7cb79c54d5ac8ed6525c6..0000000000000000000000000000000000000000 --- a/settings/l10n/ru_RU.php +++ /dev/null @@ -1,9 +0,0 @@ - "Ошибка", -"Saving..." => "Сохранение", -"deleted" => "удалено", -"Groups" => "Группы", -"Delete" => "Удалить", -"Email" => "Email", -"Other" => "Другое" -); diff --git a/settings/l10n/si_LK.php b/settings/l10n/si_LK.php index 5fa1eaf5f43cc2f86c5d7169799f796cf13f387e..374990a2c0c926071a8890b530afdd120ab52923 100644 --- a/settings/l10n/si_LK.php +++ b/settings/l10n/si_LK.php @@ -1,4 +1,5 @@ - "සත්‍යාපන දෝෂයක්", "Group already exists" => "කණ්ඩායම දැනටමත් තිබේ", "Unable to add group" => "කාණඩයක් එක් කළ නොහැකි විය", @@ -20,7 +21,6 @@ "Group Admin" => "කාණ්ඩ පරිපාලක", "Delete" => "මකා දමන්න", "Security Warning" => "ආරක්ෂක නිවේදනයක්", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ඔබගේ දත්ත ඩිරෙක්ටරිය හා ගොනුවලට අන්තර්ජාලයෙන් පිවිසිය හැක. ownCloud සපයා ඇති .htaccess ගොනුව ක්‍රියාකරන්නේ නැත. අපි තරයේ කියා සිටිනුයේ නම්, මෙම දත්ත හා ගොනු එසේ පිවිසීමට නොහැකි වන ලෙස ඔබේ වෙබ් සේවාදායකයා වින්‍යාස කරන ලෙස හෝ එම ඩිරෙක්ටරිය වෙබ් මූලයෙන් පිටතට ගෙනයන ලෙසය.", "Sharing" => "හුවමාරු කිරීම", "Allow links" => "යොමු සලසන්න", "Allow resharing" => "යළි යළිත් හුවමාරුවට අවසර දෙමි", @@ -50,3 +50,4 @@ "Other" => "වෙනත්", "Username" => "පරිශීලක නම" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/sk_SK.php b/settings/l10n/sk_SK.php index 952df66d399cc458a677b27c40138dded28a6d5d..ad602ee860f58d71cbc033355bec96261932ba23 100644 --- a/settings/l10n/sk_SK.php +++ b/settings/l10n/sk_SK.php @@ -1,4 +1,5 @@ - "Nie je možné nahrať zoznam z App Store", "Authentication error" => "Chyba autentifikácie", "Your display name has been changed." => "Vaše zobrazované meno bolo zmenené.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "Musíte zadať platné heslo", "__language_name__" => "Slovensky", "Security Warning" => "Bezpečnostné varovanie", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Váš priečinok s dátami a Vaše súbory sú pravdepodobne dostupné z internetu. .htaccess súbor dodávaný s inštaláciou ownCloud nespĺňa úlohu. Dôrazne Vám doporučujeme nakonfigurovať webserver takým spôsobom, aby dáta v priečinku neboli verejné, alebo presuňte dáta mimo štruktúry priečinkov webservera.", "Setup Warning" => "Nastavenia oznámení", "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.", "Module 'fileinfo' missing" => "Chýba modul 'fileinfo'", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Chýba modul 'fileinfo'. Dôrazne doporučujeme ho povoliť pre dosiahnutie najlepších výsledkov zisťovania mime-typu.", "Locale not working" => "Lokalizácia nefunguje", -"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." => "Tento server ownCloud nemôže nastaviť národné prostredie systému na %s. To znamená, že by mohli byť problémy s niektorými znakmi v názvoch súborov. Veľmi odporúčame nainštalovať požadované balíky na podporu %s.", "Internet connection not working" => "Pripojenie na internet nefunguje", -"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." => "Tento server ownCloud nemá funkčné pripojenie k internetu. To znamená, že niektoré z funkcií, ako je pripojenie externého úložiska, oznámenia o aktualizáciách či inštalácia aplikácií tretích strán nefungujú. Prístup k súborom zo vzdialených miest a odosielanie oznamovacích e-mailov tiež nemusí fungovať. Odporúčame pripojiť tento server k internetu, ak chcete využívať všetky vlastnosti ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Vykonať jednu úlohu s každým načítaní stránky", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php je registrovaná u služby webcron. Zavolá cron.php stránku v koreňovom priečinku owncloud raz za minútu cez protokol HTTP.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Používať systémovú službu cron. Zavolať cron.php v priečinku owncloud cez systémovú úlohu raz za minútu", "Sharing" => "Zdieľanie", "Enable Share API" => "Povoliť API zdieľania", "Allow apps to use the Share API" => "Povoliť aplikáciám používať API na zdieľanie", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "Povoliť používateľom zdieľať len s používateľmi v ich skupinách", "Security" => "Zabezpečenie", "Enforce HTTPS" => "Vynútiť HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Vynúti pripojovanie klientov ownCloud cez šifrované pripojenie.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Pripojte sa k tejto inštancii ownCloud cez HTTPS pre povolenie alebo zakázanie vynútenia SSL.", "Log" => "Záznam", "Log level" => "Úroveň záznamu", "More" => "Viac", @@ -112,3 +105,4 @@ "set new password" => "nastaviť nové heslo", "Default" => "Predvolené" ); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/settings/l10n/sl.php b/settings/l10n/sl.php index f9b6942b97ef7e7568db84e52d20731ea19cbcd6..5ad921201b6d5f45aed584598e409e452095a617 100644 --- a/settings/l10n/sl.php +++ b/settings/l10n/sl.php @@ -1,4 +1,5 @@ - "Ni mogoče naložiti seznama iz programskega središča", "Authentication error" => "Napaka med overjanjem", "Your display name has been changed." => "Prikazano ime je bilo spremenjeno.", @@ -37,20 +38,14 @@ "A valid password must be provided" => "Navedeno mora biti veljavno geslo", "__language_name__" => "Slovenščina", "Security Warning" => "Varnostno opozorilo", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Trenutno je dostop do podatkovne mape in datotek najverjetneje omogočen vsem uporabnikom na omrežju. Datoteka .htaccess, vključena v ownCloud, namreč ni ustrezno nastavljena. Priporočljivo je nastaviti spletni strežnik tako, da mapa podatkov ne bo javno dostopna, ali pa, da jo prestavite v podrejeno mapo korenske mape spletnega strežnika.", "Setup Warning" => "Opozorilo nastavitve", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Spletni stražnik še ni ustrezno nastavljen in ne omogoča usklajevanja, saj je nastavitev WebDAV okvarjena.", -"Please double check the installation guides." => "Preverite navodila namestitve.", "Module 'fileinfo' missing" => "Manjka modul 'fileinfo'.", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Manjka modul PHP 'fileinfo'. Priporočljivo je omogočiti ta modul za popolno zaznavanje vrst MIME.", "Locale not working" => "Jezikovne prilagoditve ne delujejo.", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Na strežniku ownCloud ni mogoče nastaviti jezikovnih določil na jezik %s. Najverjetneje so težave s posebnimi znaki v imenih datotek. Priporočljivo je namestiti zahtevane pakete za podporo jeziku %s.", "Internet connection not working" => "Internetna povezava ne deluje.", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Strežnik ownCloud je brez delujoče internetne povezave. To pomeni, da bodo nekatere možnosti onemogočene. Ne bo mogoče priklapljati zunanjih priklopnih točk, ne bo obvestil o posodobitvah ali namestitvah programske opreme, prav tako najverjetneje ne bo mogoče pošiljati obvestilnih sporočil preko elektronske pošte. Za uporabo vseh zmožnosti oblaka ownCloud, mora biti internetna povezava vzpostavljena in delujoča.", "Cron" => "Periodično opravilo", "Execute one task with each page loaded" => "Izvedi eno nalogo z vsako naloženo stranjo.", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "Datoteka cron.php je vpisana pri storitvi webcron. Preko protokola HTTP je datoteka cron.php, ki se nahaja v korenski mapi ownCloud, klicana enkrat na minuto.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Uporaba sistemske storitve cron. Preko sistemskega posla cron je datoteka cron.php, ki se nahaja v mapi ownCloud, klicana enkrat na minuto.", "Sharing" => "Souporaba", "Enable Share API" => "Omogoči API souporabe", "Allow apps to use the Share API" => "Dovoli programom uporabo vmesnika API souporabe", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "Uporabnikom dovoli souporabo z ostalimi uporabniki njihove skupine", "Security" => "Varnost", "Enforce HTTPS" => "Zahtevaj uporabo HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Zahtevaj šifrirano povezovanje odjemalcev v oblak ownCloud", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Prijava mora biti vzpostavljena z uporabo protokola HTTPS za omogočanje šifriranja SSL.", "Log" => "Dnevnik", "Log level" => "Raven beleženja", "More" => "Več", @@ -111,3 +104,4 @@ "set new password" => "nastavi novo geslo", "Default" => "Privzeto" ); +$PLURAL_FORMS = "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"; diff --git a/settings/l10n/sq.php b/settings/l10n/sq.php index c81e58e2fa09280fda68306c3292171862329dcc..1a8b588c0bdc77e337a4b44a7540204bb9679caa 100644 --- a/settings/l10n/sq.php +++ b/settings/l10n/sq.php @@ -1,11 +1,11 @@ - "Veprim i gabuar gjatë vërtetimit të identitetit", "Error" => "Veprim i gabuar", "undo" => "anulo", "Delete" => "Elimino", "Security Warning" => "Paralajmërim sigurie", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Serveri web i juaji nuk është konfiguruar akoma për të lejuar sinkronizimin e skedarëve sepse ndërfaqja WebDAV mund të jetë e dëmtuar.", -"Please double check the installation guides." => "Ju lutemi kontrolloni mirë shoqëruesin e instalimit.", "Update" => "Azhurno", "Get the apps to sync your files" => "Merrni app-et për sinkronizimin e skedarëve tuaj", "Password" => "Kodi", @@ -13,3 +13,4 @@ "Email" => "Email-i", "Username" => "Përdoruesi" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/sr.php b/settings/l10n/sr.php index 1d1bcdddf5f0599b54b8442bf7d401600c76d024..b2b6538c4c3ae8f8990d5e9a9fdc33638a52c947 100644 --- a/settings/l10n/sr.php +++ b/settings/l10n/sr.php @@ -1,4 +1,5 @@ - "Грешка приликом учитавања списка из Складишта Програма", "Authentication error" => "Грешка при провери идентитета", "Unable to change display name" => "Не могу да променим име за приказ", @@ -36,10 +37,8 @@ "A valid password must be provided" => "Морате унети исправну лозинку", "__language_name__" => "__language_name__", "Security Warning" => "Сигурносно упозорење", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Тренутно су ваши подаци и датотеке доступне са интернета. Датотека .htaccess коју је обезбедио пакет ownCloud не функционише. Саветујемо вам да подесите веб сервер тако да директоријум са подацима не буде изложен или да га преместите изван коренског директоријума веб сервера.", "Setup Warning" => "Упозорење о подешавању", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш веб сервер тренутно не подржава синхронизацију датотека јер се чини да је WebDAV сучеље неисправно.", -"Please double check the installation guides." => "Погледајте водиче за инсталацију.", "Module 'fileinfo' missing" => "Недостаје модул „fileinfo“", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "Недостаје PHP модул „fileinfo“. Препоручујемо вам да га омогућите да бисте добили најбоље резултате с откривањем MIME врста.", "Locale not working" => "Локализација не ради", @@ -56,7 +55,6 @@ "Allow users to only share with users in their groups" => "Дозволи корисницима да деле само са корисницима у њиховим групама", "Security" => "Безбедност", "Enforce HTTPS" => "Наметни HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Намеће клијентима да се повежу са ownCloud-ом путем шифроване везе.", "Log" => "Бележење", "Log level" => "Ниво бележења", "More" => "Више", @@ -102,3 +100,4 @@ "set new password" => "постави нову лозинку", "Default" => "Подразумевано" ); +$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/sr@latin.php b/settings/l10n/sr@latin.php index 8e375a7f23c064099ee67bc1fd6cc0c57e9b2cac..f23e665bb27acf15dce52035d38f57ec0013694e 100644 --- a/settings/l10n/sr@latin.php +++ b/settings/l10n/sr@latin.php @@ -1,4 +1,5 @@ - "Greška pri autentifikaciji", "Language changed" => "Jezik je izmenjen", "Invalid request" => "Neispravan zahtev", @@ -16,3 +17,4 @@ "Other" => "Drugo", "Username" => "Korisničko ime" ); +$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/sv.php b/settings/l10n/sv.php index 7a9f341e4dd0878e422619bd65e3128a8484c5da..ad1660e25c9e840ab949591c1f587fef4b67a26a 100644 --- a/settings/l10n/sv.php +++ b/settings/l10n/sv.php @@ -1,4 +1,5 @@ - "Kan inte ladda listan från App Store", "Authentication error" => "Fel vid autentisering", "Your display name has been changed." => "Ditt visningsnamn har ändrats.", @@ -37,33 +38,35 @@ "A valid password must be provided" => "Ett giltigt lösenord måste anges", "__language_name__" => "__language_name__", "Security Warning" => "Säkerhetsvarning", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Din datakatalog och dina filer är förmodligen tillgängliga från Internet. Den .htaccess-fil som ownCloud tillhandahåller fungerar inte. Vi rekommenderar starkt att du konfigurerar webbservern så att datakatalogen inte längre är tillgänglig eller att du flyttar datakatalogen utanför webbserverns dokument-root.", +"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." => "Din datakatalog och dina filer är förmodligen åtkomliga från internet. Filen .htaccess fungerar inte. Vi rekommenderar starkt att du konfigurerar din webbserver så att datakatalogen inte längre är åtkomlig eller du flyttar datakatalogen utanför webbserverns rotkatalog.", "Setup Warning" => "Installationsvarning", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Din webbserver är inte korrekt konfigurerad för att tillåta filsynkronisering eftersom WebDAV inte verkar fungera.", -"Please double check the installation guides." => "Var god kontrollera installationsguiden.", +"Please double check the installation guides." => "Vänligen dubbelkolla igenom installationsguiden.", "Module 'fileinfo' missing" => "Modulen \"fileinfo\" saknas", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP-modulen 'fileinfo' saknas. Vi rekommenderar starkt att aktivera den här modulen för att kunna upptäcka korrekt mime-typ.", "Locale not working" => "Locale fungerar inte", -"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." => "Denna ownCloud server kan inte sätta system locale till %s. Det innebär att det kan vara problem med vissa tecken i filnamnet. Vi vill verkligen rekommendera att du installerar nödvändiga paket på ditt system för att stödja %s.", +"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." => "Systemets språk kan inte sättas till %s. Detta innebär att det kan vara problem med vissa tecken i filnamn. Det är starkt rekommenderat att installera nödvändiga paket så att systemet får stöd för %s.", "Internet connection not working" => "Internetförbindelsen fungerar inte", -"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." => "Den här ownCloudservern har ingen fungerande internetförbindelse. Det innebär att några funktioner som t.ex. att montera externa lagringsplatser, meddelanden om uppdateringar eller installation av tredjepartsappar inte fungerar. Det kan vara så att det inte går att få fjärråtkomst till filer och att e-post inte fungerar. Vi rekommenderar att du tillåter internetåtkomst för den här servern om du vill ha tillgång till alla funktioner hos ownCloud", +"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." => "Servern har ingen fungerande internetanslutning. Detta innebär att en del av de funktioner som montering av extern lagring, notifieringar om uppdateringar eller installation av 3: e part appar inte fungerar. Åtkomst till filer och skicka e-postmeddelanden fungerar troligen inte heller. Vi rekommenderar starkt att aktivera en internetuppkoppling för denna server om du vill ha alla funktioner.", "Cron" => "Cron", "Execute one task with each page loaded" => "Exekvera en uppgift vid varje sidladdning", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php är registrerad som en webcron-tjänst. Anropa cron.php sidan i ownCloud en gång i minuten över HTTP.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Använd system-tjänsten cron. Anropa filen cron.php i ownCloud-mappen via ett cronjobb varje minut.", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php är registrerad som en webcron-tjänst för att anropa cron.php varje minut över http.", +"Use systems cron service to call the cron.php file once a minute." => "Använd system-tjänsten cron för att anropa cron.php varje minut.", "Sharing" => "Dela", "Enable Share API" => "Aktivera delat API", "Allow apps to use the Share API" => "Tillåt applikationer att använda delat API", "Allow links" => "Tillåt länkar", "Allow users to share items to the public with links" => "Tillåt delning till allmänheten via publika länkar", +"Allow public uploads" => "Tillåt offentlig uppladdning", +"Allow users to enable others to upload into their publicly shared folders" => "Tillåt användare att aktivera\nTillåt användare att göra det möjligt för andra att ladda upp till sina offentligt delade mappar", "Allow resharing" => "Tillåt vidaredelning", "Allow users to share items shared with them again" => "Tillåt användare att dela vidare filer som delats med dem", "Allow users to share with anyone" => "Tillåt delning med alla", "Allow users to only share with users in their groups" => "Tillåt bara delning med användare i egna grupper", "Security" => "Säkerhet", "Enforce HTTPS" => "Kräv HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Tvingar klienter att ansluta till ownCloud via en krypterad förbindelse.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Vänligen anslut till denna instans av ownCloud via HTTPS för att aktivera/avaktivera SSL", +"Forces the clients to connect to %s via an encrypted connection." => "Tvingar klienterna att ansluta till %s via en krypterad anslutning.", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "Anslut till din %s via HTTPS för att aktivera/deaktivera SSL", "Log" => "Logg", "Log level" => "Nivå på loggning", "More" => "Mer", @@ -112,3 +115,4 @@ "set new password" => "ange nytt lösenord", "Default" => "Förvald" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/ta_LK.php b/settings/l10n/ta_LK.php index 64e9cb85aa7ed03a3d0a0f35145b3884246c3de2..0dc206c7993efd4a2ac4c4c01bcb9a4fb2ac1fb5 100644 --- a/settings/l10n/ta_LK.php +++ b/settings/l10n/ta_LK.php @@ -1,4 +1,5 @@ - "செயலி சேமிப்பிலிருந்து பட்டியலை ஏற்றமுடியாதுள்ளது", "Authentication error" => "அத்தாட்சிப்படுத்தலில் வழு", "Group already exists" => "குழு ஏற்கனவே உள்ளது", @@ -22,7 +23,6 @@ "Delete" => "நீக்குக", "__language_name__" => "_மொழி_பெயர்_", "Security Warning" => "பாதுகாப்பு எச்சரிக்கை", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "உங்களுடைய தரவு அடைவு மற்றும் உங்களுடைய கோப்புக்களை பெரும்பாலும் இணையத்தினூடாக அணுகலாம். ownCloud இனால் வழங்கப்படுகின்ற .htaccess கோப்பு வேலை செய்யவில்லை. தரவு அடைவை நீண்ட நேரத்திற்கு அணுகக்கூடியதாக உங்களுடைய வலைய சேவையகத்தை தகவமைக்குமாறு நாங்கள் உறுதியாக கூறுகிறோம் அல்லது தரவு அடைவை வலைய சேவையக மூல ஆவணத்திலிருந்து வெளியே அகற்றுக. ", "More" => "மேலதிக", "Less" => "குறைவான", "Developed by the ownCloud community, the source code is licensed under the AGPL." => "Developed by the ownCloud community, the source code is licensed under the AGPL.", @@ -48,3 +48,4 @@ "Other" => "மற்றவை", "Username" => "பயனாளர் பெயர்" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/te.php b/settings/l10n/te.php index 3a85a015205ced09c4e5bc9a889c9f113f8b2bbe..21caa79912afd487a477a4e59a4665711dc520bf 100644 --- a/settings/l10n/te.php +++ b/settings/l10n/te.php @@ -1,4 +1,5 @@ - "పొరపాటు", "Delete" => "తొలగించు", "More" => "మరిన్ని", @@ -9,3 +10,4 @@ "Language" => "భాష", "Username" => "వాడుకరి పేరు" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/th_TH.php b/settings/l10n/th_TH.php index 9725df23c243c716e286b883dd87e82953c334ab..505e9ff29cb21a7e2786da9a847fdd83dd5162a6 100644 --- a/settings/l10n/th_TH.php +++ b/settings/l10n/th_TH.php @@ -1,4 +1,5 @@ - "ไม่สามารถโหลดรายการจาก App Store ได้", "Authentication error" => "เกิดข้อผิดพลาดในสิทธิ์การเข้าใช้งาน", "Group already exists" => "มีกลุ่มดังกล่าวอยู่ในระบบอยู่แล้ว", @@ -30,11 +31,8 @@ "Delete" => "ลบ", "__language_name__" => "ภาษาไทย", "Security Warning" => "คำเตือนเกี่ยวกับความปลอดภัย", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "ไดเร็กทอรี่ข้อมูลและไฟล์ของคุณสามารถเข้าถึงได้จากอินเทอร์เน็ต ไฟล์ .htaccess ที่ ownCloud มีให้ไม่สามารถทำงานได้อย่างเหมาะสม เราขอแนะนำให้คุณกำหนดค่าเว็บเซิร์ฟเวอร์ใหม่ในรูปแบบที่ไดเร็กทอรี่เก็บข้อมูลไม่สามารถเข้าถึงได้อีกต่อไป หรือคุณได้ย้ายไดเร็กทอรี่ที่ใช้เก็บข้อมูลไปอยู่ภายนอกตำแหน่ง root ของเว็บเซิร์ฟเวอร์แล้ว", "Cron" => "Cron", "Execute one task with each page loaded" => "ประมวลคำสั่งหนึ่งงานในแต่ละครั้งที่มีการโหลดหน้าเว็บ", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php ได้รับการลงทะเบียนแล้วกับเว็บผู้ให้บริการ webcron เรียกหน้าเว็บ cron.php ที่ตำแหน่ง root ของ owncloud หลังจากนี้สักครู่ผ่านทาง http", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "ใช้บริการ cron จากระบบ เรียกไฟล์ cron.php ในโฟลเดอร์ owncloud ผ่านทาง cronjob ของระบบหลังจากนี้สักครู่", "Sharing" => "การแชร์ข้อมูล", "Enable Share API" => "เปิดใช้งาน API สำหรับคุณสมบัติแชร์ข้อมูล", "Allow apps to use the Share API" => "อนุญาตให้แอปฯสามารถใช้ API สำหรับแชร์ข้อมูลได้", @@ -88,3 +86,4 @@ "set new password" => "ตั้งค่ารหัสผ่านใหม่", "Default" => "ค่าเริ่มต้น" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/tr.php b/settings/l10n/tr.php index 0f33eb036cf2931e55a4c1b6790106f137656e88..0e7fa8bc3c1fe633511cb13f5ee804276963c2c1 100644 --- a/settings/l10n/tr.php +++ b/settings/l10n/tr.php @@ -1,4 +1,5 @@ - "App Store'dan liste yüklenemiyor", "Authentication error" => "Kimlik doğrulama hatası", "Your display name has been changed." => "Görüntülenen isminiz değiştirildi.", @@ -37,33 +38,34 @@ "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 that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "data dizininiz ve dosyalarınız büyük ihtimalle internet üzerinden erişilebilir. Owncloud tarafından sağlanan .htaccess dosyası çalışmıyor. Web sunucunuzu yapılandırarak data dizinine erişimi kapatmanızı veya data dizinini web sunucu döküman dizini dışına almanızı şiddetle tavsiye ederiz.", +"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ı iki kez kontrol edin.", +"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.", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Bu ownCloud sunucusu sistem yerelini %s olarak değiştiremedi. Bu, dosya adlarındaki bazı karakterler ile sorun yaşanabileceği anlamına gelir. %s yerelini desteklemek için gerekli paketleri kurmanızı şiddetle öneririz.", +"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 ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "ownCloud sunucusunun internet bağlantısı yok. Bu nedenle harici depolama bağlantısı, güncelleştirme bildirimleri veya 3. parti uygulama kurma gibi bazı özellikler çalışmayacaktır. Uzak dosyalara erişim ve e-posta ile bildirim gönderme çalışmayacak. Eğer ownCloud tüm özelliklerini kullanmak istiyorsanız, internet bağlantısı gerekmektedir.", +"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. Call the cron.php page in the owncloud root once a minute over http." => "cron.php bir webcron hizmetinde kaydedilir. Owncloud kökündeki cron.php sayfasını http üzerinden dakikada bir çağır.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Sistemin cron hizmetini kullan. Bir sistem cronjob'ı ile owncloud klasöründeki cron.php dosyasını dakikada bir çağır.", +"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", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "İstemcileri ownCloud'a şifreli bir bağlantı ile bağlanmaya zorlar.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "SSL zorlamasını etkinleştirmek ya da devre dışı bırakmak için lütfen bu ownCloud örneğine HTTPS ile bağlanın.", +"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", @@ -112,3 +114,4 @@ "set new password" => "yeni parola belirle", "Default" => "Varsayılan" ); +$PLURAL_FORMS = "nplurals=2; plural=(n > 1);"; diff --git a/settings/l10n/ug.php b/settings/l10n/ug.php index abed87ef0d419443c9b1989dec2e689d1b92a3ba..d182d9198dee529439f43747c7b2181c7655ce5b 100644 --- a/settings/l10n/ug.php +++ b/settings/l10n/ug.php @@ -1,4 +1,5 @@ - "ئەپ بازىرىدىن تىزىمنى يۈكلىيەلمىدى", "Authentication error" => "سالاھىيەت دەلىللەش خاتالىقى", "Your display name has been changed." => "كۆرسىتىدىغان ئىسمىڭىز ئۆزگەردى.", @@ -70,3 +71,4 @@ "set new password" => "يېڭى ئىم تەڭشە", "Default" => "كۆڭۈلدىكى" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/uk.php b/settings/l10n/uk.php index 8b567f3995aa24bd9cbaca5d0528c32964256052..c6a9ab28624827dbc3bdd5b9581d852efad6bce9 100644 --- a/settings/l10n/uk.php +++ b/settings/l10n/uk.php @@ -1,4 +1,5 @@ - "Не вдалося завантажити список з App Store", "Authentication error" => "Помилка автентифікації", "Unable to change display name" => "Не вдалося змінити зображене ім'я", @@ -36,20 +37,14 @@ "A valid password must be provided" => "Потрібно задати вірний пароль", "__language_name__" => "__language_name__", "Security Warning" => "Попередження про небезпеку", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Ваш каталог з даними та Ваші файли можливо доступні з Інтернету. Файл .htaccess, наданий з ownCloud, не працює. Ми наполегливо рекомендуємо Вам налаштувати свій веб-сервер таким чином, щоб каталог data більше не був доступний, або перемістити каталог data за межі кореневого каталогу документів веб-сервера.", "Setup Warning" => "Попередження при Налаштуванні", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "Ваш Web-сервер ще не налаштований належним чином для того, щоб дозволити синхронізацію файлів, через те що інтерфейс WebDAV, здається, зламаний.", -"Please double check the installation guides." => "Будь ласка, перевірте інструкції по встановленню.", "Module 'fileinfo' missing" => "Модуль 'fileinfo' відсутній", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP модуль 'fileinfo' відсутній. Ми наполегливо рекомендуємо увімкнути цей модуль, щоб отримати кращі результати при виявленні MIME-типів.", "Locale not working" => "Локалізація не працює", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "Цей сервер ownCloud не може встановити мову системи %s. Це означає, що можуть бути проблеми з деякими символами в іменах файлів. Ми наполегливо рекомендуємо встановити необхідні пакети у вашій системі для підтримки %s.", "Internet connection not working" => "Інтернет-з'єднання не працює", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "Цей сервер ownCloud не має під'єднання до Інтернету. Це означає, що деякі функції, такі як монтування зовнішніх накопичувачів, повідомлення про оновлення або встановлення допоміжних програм не працюють. Доступ до файлів ​​віддалено та відправка повідомлень електронною поштою також може не працювати. Ми пропонуємо увімкнути під'єднання до Інтернету для даного сервера, якщо ви хочете мати всі можливості ownCloud.", "Cron" => "Cron", "Execute one task with each page loaded" => "Виконати одне завдання для кожної завантаженої сторінки ", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php зареєстрований в службі webcron. Викликає cron.php сторінку в кореневому каталозі owncloud кожну хвилину по http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Використовується системний cron сервіс. Виклик cron.php файла з owncloud теки за допомогою системного cronjob раз на хвилину.", "Sharing" => "Спільний доступ", "Enable Share API" => "Увімкнути API спільного доступу", "Allow apps to use the Share API" => "Дозволити програмам використовувати API спільного доступу", @@ -61,8 +56,6 @@ "Allow users to only share with users in their groups" => "Дозволити користувачам відкривати спільний доступ лише для користувачів з їхньої групи", "Security" => "Безпека", "Enforce HTTPS" => "Примусове застосування HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "Зобов'язати клієнтів під'єднуватись до ownCloud через шифроване з'єднання.", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "Будь ласка, під'єднайтесь до цього ownCloud за допомогою HTTPS, щоб увімкнути або вимкнути використання SSL.", "Log" => "Протокол", "Log level" => "Рівень протоколювання", "More" => "Більше", @@ -108,3 +101,4 @@ "set new password" => "встановити новий пароль", "Default" => "За замовчуванням" ); +$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/ur_PK.php b/settings/l10n/ur_PK.php index ce1d425c9703ca19b532c34a8b9a34e4a6e35052..ff3eb3d11ca413d48ee22b236dc521cee8394220 100644 --- a/settings/l10n/ur_PK.php +++ b/settings/l10n/ur_PK.php @@ -1,6 +1,8 @@ - "ایرر", "Password" => "پاسورڈ", "New password" => "نیا پاسورڈ", "Username" => "یوزر نیم" ); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/settings/l10n/vi.php b/settings/l10n/vi.php index 4768e9b243e6f2f0a111871f450ec1774a264296..4607229b4d9b50202284c07f3adec728c8fcffec 100644 --- a/settings/l10n/vi.php +++ b/settings/l10n/vi.php @@ -1,4 +1,5 @@ - "Không thể tải danh sách ứng dụng từ App Store", "Authentication error" => "Lỗi xác thực", "Unable to change display name" => "Không thể thay đổi tên hiển thị", @@ -31,11 +32,8 @@ "Delete" => "Xóa", "__language_name__" => "__Ngôn ngữ___", "Security Warning" => "Cảnh bảo bảo mật", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "Thư mục dữ liệu và những tập tin của bạn có thể dễ dàng bị truy cập từ mạng. Tập tin .htaccess do ownCloud cung cấp không hoạt động. Chúng tôi đề nghị bạn nên cấu hình lại máy chủ web để thư mục dữ liệu không còn bị truy cập hoặc bạn nên di chuyển thư mục dữ liệu ra bên ngoài thư mục gốc của máy chủ.", "Cron" => "Cron", "Execute one task with each page loaded" => "Thực thi tác vụ mỗi khi trang được tải", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php đã được đăng ký tại một dịch vụ webcron. Gọi trang cron.php mỗi phút một lần thông qua giao thức http.", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "Sử dụng dịch vụ cron của hệ thống. Gọi tệp tin cron.php mỗi phút một lần.", "Sharing" => "Chia sẻ", "Enable Share API" => "Bật chia sẻ API", "Allow apps to use the Share API" => "Cho phép các ứng dụng sử dụng chia sẻ API", @@ -89,3 +87,4 @@ "set new password" => "đặt mật khẩu mới", "Default" => "Mặc định" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_CN.GB2312.php b/settings/l10n/zh_CN.GB2312.php index 789c93de23bc7722b5bd1ed2aec53fc7cb8f0a5f..46c024762356cb5b0591f3793e820f50868051d6 100644 --- a/settings/l10n/zh_CN.GB2312.php +++ b/settings/l10n/zh_CN.GB2312.php @@ -1,4 +1,5 @@ - "不能从App Store 中加载列表", "Authentication error" => "验证错误", "Your display name has been changed." => "您的显示名称已修改", @@ -37,33 +38,35 @@ "A valid password must be provided" => "请填写有效密码", "__language_name__" => "Chinese", "Security Warning" => "安全警告", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。", +"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." => "您的数据文件夹和您的文件或许能够从互联网访问。ownCloud 提供的 .htaccesss 文件未其作用。我们强烈建议您配置网络服务器以使数据文件夹不能从互联网访问,或将移动数据文件夹移出网络服务器文档根目录。", "Setup Warning" => "配置注意", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "因WebDAV接口故障,您的网络服务器好像并未允许文件同步。", -"Please double check the installation guides." => "请双击安装向导。", +"Please double check the installation guides." => "请双击安装向导。", "Module 'fileinfo' missing" => "模块“fileinfo”丢失。", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP 模块“fileinfo”丢失。我们强烈建议打开此模块来获得 mine 类型检测的最佳结果。", "Locale not working" => "区域设置未运作", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 服务器不能把系统区域设置到 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的包来支持“%s”。", +"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." => "ownCloud 服务器不能把系统区域设置为 %s。这意味着文件名可内可能含有某些引起问题的字符。我们强烈建议在您的系统上安装必要的区域/语言支持包来支持 “%s” 。", "Internet connection not working" => "互联网连接未运作", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "服务器没有可用的Internet连接。这意味着像挂载外部储存、更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。建议开启服务器的英特网网络。", +"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." => "服务器没有可用的Internet连接。这意味着像挂载外部储存、版本更新提示和安装第三方插件等功能会失效。远程访问文件和发送邮件提醒也可能会失效。如果您需要这些功能,建议开启服务器的英特网连接。", "Cron" => "Cron", "Execute one task with each page loaded" => "在每个页面载入时执行一项任务", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 根用户将通过 http 协议每分钟调用一次 cron.php。", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已作为 webcron 服务注册。owncloud 将通过 http 协议每分钟调用一次 cron.php。", +"Use systems cron service to call the cron.php file once a minute." => "使用系统 cron 服务。通过系统 cronjob 每分钟调用一次 owncloud 文件夹下的 cron.php", "Sharing" => "分享", "Enable Share API" => "开启分享API", "Allow apps to use the Share API" => "允许应用使用分享API", "Allow links" => "允许链接", "Allow users to share items to the public with links" => "允许用户通过链接共享内容", +"Allow public uploads" => "允许公众账户上传", +"Allow users to enable others to upload into their publicly shared folders" => "允许其它人向用户的公众共享文件夹里上传文件", "Allow resharing" => "允许转帖", "Allow users to share items shared with them again" => "允许用户再次共享已共享的内容", "Allow users to share with anyone" => "允许用户向任何人分享", "Allow users to only share with users in their groups" => "只允许用户向所在群组中的其他用户分享", "Security" => "安全", "Enforce HTTPS" => "强制HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "强制客户端通过加密连接与ownCloud连接", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "请先使用HTTPS访问本站以设置强制SSL的开关。", +"Forces the clients to connect to %s via an encrypted connection." => "强制客户端通过加密连接与%s连接", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "请通过HTTPS协议连接到 %s,需要启用或者禁止强制SSL的开关。", "Log" => "日志", "Log level" => "日志等级", "More" => "更多", @@ -112,3 +115,4 @@ "set new password" => "设置新的密码", "Default" => "默认" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_CN.php b/settings/l10n/zh_CN.php index 7a11845404f40fcf3c8b1b6a4b0b7cfdaf5f0c40..5a42bf0675449165328bbb09fa53d857f7d7f035 100644 --- a/settings/l10n/zh_CN.php +++ b/settings/l10n/zh_CN.php @@ -1,4 +1,5 @@ - "无法从应用商店载入列表", "Authentication error" => "认证出错", "Your display name has been changed." => "您的显示名字已经改变", @@ -37,20 +38,14 @@ "A valid password must be provided" => "必须提供合法的密码", "__language_name__" => "简体中文", "Security Warning" => "安全警告", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的数据文件夹和文件可由互联网访问。OwnCloud提供的.htaccess文件未生效。我们强烈建议您配置服务器,以使数据文件夹不可被访问,或者将数据文件夹移到web服务器根目录以外。", "Setup Warning" => "设置警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的Web服务器尚未正确设置以允许文件同步, 因为WebDAV的接口似乎已损坏.", -"Please double check the installation guides." => "请认真检查安装指南.", "Module 'fileinfo' missing" => "模块'文件信息'丢失", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "PHP模块'文件信息'丢失. 我们强烈建议启用此模块以便mime类型检测取得最佳结果.", "Locale not working" => "本地化无法工作", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "此ownCloud服务器无法设置系统本地化到%s. 这意味着可能文件名中有一些字符引起问题. 我们强烈建议在你系统上安装所需的软件包来支持%s", "Internet connection not working" => "因特网连接无法工作", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "此ownCloud服务器上没有可用的因特网连接. 这意味着某些特性例如挂载外部存储器, 提醒更新或安装第三方应用无法工作. 从远程访问文件和发送提醒电子邮件可能也无法工作. 如果你想要ownCloud的所有特性, 我们建议启用此服务器的因特网连接.", "Cron" => "计划任务", "Execute one task with each page loaded" => "每个页面加载后执行一个任务", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php已被注册到网络定时任务服务。通过http每分钟调用owncloud根目录的cron.php网页。", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系统定时任务服务。每分钟通过系统定时任务调用owncloud文件夹中的cron.php文件", "Sharing" => "共享", "Enable Share API" => "启用共享API", "Allow apps to use the Share API" => "允许应用软件使用共享API", @@ -62,8 +57,6 @@ "Allow users to only share with users in their groups" => "允许用户只向同组用户共享", "Security" => "安全", "Enforce HTTPS" => "强制使用 HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "强制客户端通过加密连接连接到 ownCloud。", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "请经由HTTPS连接到这个ownCloud实例来启用或禁用强制SSL.", "Log" => "日志", "Log level" => "日志级别", "More" => "更多", @@ -111,3 +104,4 @@ "set new password" => "设置新密码", "Default" => "默认" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_HK.php b/settings/l10n/zh_HK.php index 8da974627517e40a7cf227d628884a6548eb8cdf..f9bdb44956dabc0308e05c7dd66c410029f236a9 100644 --- a/settings/l10n/zh_HK.php +++ b/settings/l10n/zh_HK.php @@ -1,4 +1,5 @@ - "錯誤", "Groups" => "群組", "Delete" => "刪除", @@ -7,3 +8,4 @@ "Email" => "電郵", "Username" => "用戶名稱" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/l10n/zh_TW.php b/settings/l10n/zh_TW.php index 937347d5a14ca9475163f3be87d71ea7ea9cd538..0a0fcf84e2d1b5f39f12fbb64a878b8fb3f7fbb3 100644 --- a/settings/l10n/zh_TW.php +++ b/settings/l10n/zh_TW.php @@ -1,4 +1,5 @@ - "無法從 App Store 讀取清單", "Authentication error" => "認證錯誤", "Your display name has been changed." => "已更改顯示名稱", @@ -37,33 +38,35 @@ "A valid password must be provided" => "一定要提供一個有效的密碼", "__language_name__" => "__language_name__", "Security Warning" => "安全性警告", -"Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root." => "您的資料目錄 (Data Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", +"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 Directory) 和檔案可能可以由網際網路上面公開存取。Owncloud 所提供的 .htaccess 設定檔並未生效,我們強烈建議您設定您的網頁伺服器以防止資料目錄被公開存取,或將您的資料目錄移出網頁伺服器的 document root 。", "Setup Warning" => "設定警告", "Your web server is not yet properly setup to allow files synchronization because the WebDAV interface seems to be broken." => "您的網頁伺服器尚未被正確設定來進行檔案同步,因為您的 WebDAV 界面似乎無法使用。", -"Please double check the installation guides." => "請參考安裝指南。", +"Please double check the installation guides." => "請參考安裝指南。", "Module 'fileinfo' missing" => "遺失 'fileinfo' 模組", "The PHP module 'fileinfo' is missing. We strongly recommend to enable this module to get best results with mime-type detection." => "未偵測到 PHP 模組 'fileinfo'。我們強烈建議啟用這個模組以取得最好的 mime-type 支援。", "Locale not working" => "語系無法運作", -"This ownCloud server can't set system locale to %s. This means that there might be problems with certain characters in file names. We strongly suggest to install the required packages on your system to support %s." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。", +"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." => "ownCloud 伺服器無法將系統語系設為 %s ,可能有一些檔名中的字元有問題,建議您安裝所有所需的套件以支援 %s 。", "Internet connection not working" => "無網際網路存取", -"This ownCloud server has no working internet connection. This means that some of the features like mounting of external storage, notifications about updates or installation of 3rd party apps don´t work. Accessing files from remote and sending of notification emails might also not work. We suggest to enable internet connection for this server if you want to have all features of ownCloud." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", +"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." => "這臺 ownCloud 伺服器沒有連接到網際網路,因此有些功能像是掛載外部儲存空間、更新 ownCloud 或應用程式的通知沒有辦法運作。透過網際網路存取檔案還有電子郵件通知可能也無法運作。如果想要 ownCloud 完整的功能,建議您將這臺伺服器連接至網際網路。", "Cron" => "Cron", "Execute one task with each page loaded" => "當頁面載入時,執行", -"cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http." => "cron.php 已經在 webcron 服務當中註冊,請每分鐘透過 HTTP 呼叫 ownCloud 根目錄當中的 cron.php 一次。", -"Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute." => "使用系統的 cron 服務,每分鐘執行一次 owncloud 資料夾中的 cron.php 。", +"cron.php is registered at a webcron service to call cron.php once a minute over http." => "cron.php 已經註冊 webcron 服務,webcron 每分鐘會呼叫 cron.php 一次。", +"Use systems cron service to call the cron.php file once a minute." => "使用系統的 cron 服務來呼叫 cron.php 每分鐘一次。", "Sharing" => "分享", "Enable Share API" => "啟用分享 API", "Allow apps to use the Share API" => "允許 apps 使用分享 API", "Allow links" => "允許連結", "Allow users to share items to the public with links" => "允許使用者以結連公開分享檔案", +"Allow public uploads" => "允許任何人上傳", +"Allow users to enable others to upload into their publicly shared folders" => "允許使用者將他們公開分享的資料夾設定為「任何人皆可上傳」", "Allow resharing" => "允許轉貼分享", "Allow users to share items shared with them again" => "允許使用者分享其他使用者分享給他的檔案", "Allow users to share with anyone" => "允許使用者與任何人分享檔案", "Allow users to only share with users in their groups" => "僅允許使用者在群組內分享", "Security" => "安全性", "Enforce HTTPS" => "強制啟用 HTTPS", -"Enforces the clients to connect to ownCloud via an encrypted connection." => "強制用戶端使用加密的連線連接到 ownCloud", -"Please connect to this ownCloud instance via HTTPS to enable or disable the SSL enforcement." => "請使用 HTTPS 連線到 ownCloud,或是關閉強制使用 SSL 的選項。", +"Forces the clients to connect to %s via an encrypted connection." => "強迫用戶端使用加密連線連接到 %s", +"Please connect to your %s via HTTPS to enable or disable the SSL enforcement." => "請使用 HTTPS 連線到 %s 以啓用或停用強制 SSL 加密。", "Log" => "紀錄", "Log level" => "紀錄層級", "More" => "更多", @@ -112,3 +115,4 @@ "set new password" => "設定新密碼", "Default" => "預設" ); +$PLURAL_FORMS = "nplurals=1; plural=0;"; diff --git a/settings/languageCodes.php b/settings/languageCodes.php index 40213b3a7e5edca6f9a9a64bc6db9f417c247e7d..3613ee4fe971d5a7422fd12adc45cd0c0bd9a0e0 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 2b14c1460d6b538316c50dc9c98c170a1079dee0..e54586b80dfa15f4c91ff7a897aa433be745a942 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/settings/templates/personal.php b/settings/templates/personal.php index b9d9b09f5d0149b7416a1eef743991a1a9cf346f..7d677bdd4557e07733509993e86df49b82f6cd3e 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -4,7 +4,7 @@ * See the COPYING-README file. */?> -
+ diff --git a/tests/data/l10n/cs.php b/tests/data/l10n/cs.php new file mode 100644 index 0000000000000000000000000000000000000000..1c5907bc148d7c83ee3afde3d6e09293a322c60e --- /dev/null +++ b/tests/data/l10n/cs.php @@ -0,0 +1,5 @@ + array("%n okno", "%n okna", "%n oken") +); +$PLURAL_FORMS = "nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;"; diff --git a/tests/data/l10n/de.php b/tests/data/l10n/de.php new file mode 100644 index 0000000000000000000000000000000000000000..858ec8af49c60834e5e1b377a8b55975ea6fa74c --- /dev/null +++ b/tests/data/l10n/de.php @@ -0,0 +1,5 @@ + array("%n Datei", "%n Dateien") +); +$PLURAL_FORMS = "nplurals=2; plural=(n != 1);"; diff --git a/tests/data/l10n/ru.php b/tests/data/l10n/ru.php new file mode 100644 index 0000000000000000000000000000000000000000..dd46293db6cdde30cd3c704d38adb5e73499a1b6 --- /dev/null +++ b/tests/data/l10n/ru.php @@ -0,0 +1,5 @@ + array("%n файл", "%n файла", "%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);"; diff --git a/tests/data/testimage.gif b/tests/data/testimage.gif new file mode 100644 index 0000000000000000000000000000000000000000..3026395c5e652cb617d6124df386683edf4166e5 Binary files /dev/null and b/tests/data/testimage.gif differ diff --git a/tests/data/testimage.jpg b/tests/data/testimage.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2f51a2a6cdd462c682072980223fb076b1d258e4 Binary files /dev/null and b/tests/data/testimage.jpg differ diff --git a/tests/data/testimage.png b/tests/data/testimage.png new file mode 100644 index 0000000000000000000000000000000000000000..257598f04f5e8fd0dc795136c16fde2b6ec0c17e Binary files /dev/null and b/tests/data/testimage.png differ diff --git a/tests/lib/db.php b/tests/lib/db.php index e817a2db5edc3dd9ca53ccdfb0d6654be639f244..51edbf7b309bdfd9c6608aa7ebbb23311511ed2e 100644 --- a/tests/lib/db.php +++ b/tests/lib/db.php @@ -71,7 +71,19 @@ class Test_DB extends PHPUnit_Framework_TestCase { $result = $query->execute(array('uri_3')); $this->assertTrue((bool)$result); } - + + public function testLastInsertId() { + $query = OC_DB::prepare('INSERT INTO `*PREFIX*'.$this->table2.'` (`fullname`,`uri`) VALUES (?,?)'); + $result1 = OC_DB::executeAudited($query, array('insertid 1','uri_1')); + $id1 = OC_DB::insertid('*PREFIX*'.$this->table2); + + // we don't know the id we should expect, so insert another row + $result2 = OC_DB::executeAudited($query, array('insertid 2','uri_2')); + $id2 = OC_DB::insertid('*PREFIX*'.$this->table2); + // now we can check if the two ids are in correct order + $this->assertGreaterThan($id1, $id2); + } + public function testinsertIfNotExist() { $categoryentries = array( array('user' => 'test', 'type' => 'contact', 'category' => 'Family', 'expectedResult' => 1), diff --git a/tests/lib/db/mdb2schemareader.php b/tests/lib/db/mdb2schemareader.php new file mode 100644 index 0000000000000000000000000000000000000000..b9b241194fda920ba423e16d7a892fd3e0b2e90e --- /dev/null +++ b/tests/lib/db/mdb2schemareader.php @@ -0,0 +1,80 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\DB; + +use Doctrine\DBAL\Platforms\MySqlPlatform; + +class MDB2SchemaReader extends \PHPUnit_Framework_TestCase { + /** + * @var \OC\DB\MDB2SchemaReader $reader + */ + protected $reader; + + /** + * @return \OC\Config + */ + protected function getConfig() { + $config = $this->getMockBuilder('\OC\Config') + ->disableOriginalConstructor() + ->getMock(); + $config->expects($this->any()) + ->method('getValue') + ->will($this->returnValueMap(array( + array('dbname', 'owncloud', 'testDB'), + array('dbtableprefix', 'oc_', 'test_') + ))); + return $config; + } + + public function testRead() { + $reader = new \OC\DB\MDB2SchemaReader($this->getConfig(), new MySqlPlatform()); + $schema = $reader->loadSchemaFromFile(__DIR__ . '/testschema.xml'); + $this->assertCount(1, $schema->getTables()); + + $table = $schema->getTable('test_table'); + $this->assertCount(7, $table->getColumns()); + + $this->assertEquals(4, $table->getColumn('integerfield')->getLength()); + $this->assertTrue($table->getColumn('integerfield')->getAutoincrement()); + $this->assertNull($table->getColumn('integerfield')->getDefault()); + $this->assertTrue($table->getColumn('integerfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\IntegerType', $table->getColumn('integerfield')->getType()); + + $this->assertSame(10, $table->getColumn('integerfield_default')->getDefault()); + + $this->assertEquals(32, $table->getColumn('textfield')->getLength()); + $this->assertFalse($table->getColumn('textfield')->getAutoincrement()); + $this->assertSame('foo', $table->getColumn('textfield')->getDefault()); + $this->assertTrue($table->getColumn('textfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\StringType', $table->getColumn('textfield')->getType()); + + $this->assertNull($table->getColumn('clobfield')->getLength()); + $this->assertFalse($table->getColumn('clobfield')->getAutoincrement()); + $this->assertSame('', $table->getColumn('clobfield')->getDefault()); + $this->assertTrue($table->getColumn('clobfield')->getNotnull()); + $this->assertInstanceOf('Doctrine\DBAL\Types\TextType', $table->getColumn('clobfield')->getType()); + + $this->assertNull($table->getColumn('booleanfield')->getLength()); + $this->assertFalse($table->getColumn('booleanfield')->getAutoincrement()); + $this->assertFalse($table->getColumn('booleanfield')->getDefault()); + $this->assertInstanceOf('Doctrine\DBAL\Types\BooleanType', $table->getColumn('booleanfield')->getType()); + + $this->assertTrue($table->getColumn('booleanfield_true')->getDefault()); + $this->assertFalse($table->getColumn('booleanfield_false')->getDefault()); + + $this->assertCount(2, $table->getIndexes()); + $this->assertEquals(array('integerfield'), $table->getIndex('primary')->getUnquotedColumns()); + $this->assertTrue($table->getIndex('primary')->isPrimary()); + $this->assertTrue($table->getIndex('primary')->isUnique()); + $this->assertEquals(array('booleanfield'), $table->getIndex('index_boolean')->getUnquotedColumns()); + $this->assertFalse($table->getIndex('index_boolean')->isPrimary()); + $this->assertFalse($table->getIndex('index_boolean')->isUnique()); + } +} diff --git a/tests/lib/db/testschema.xml b/tests/lib/db/testschema.xml new file mode 100644 index 0000000000000000000000000000000000000000..509b55ee81fd400ea1e2b38aded90a4ebe47dfce --- /dev/null +++ b/tests/lib/db/testschema.xml @@ -0,0 +1,77 @@ + + + + *dbname* + true + false + + utf8 + + + + *dbprefix*table + + + + integerfield + integer + 0 + true + 1 + 4 + + + integerfield_default + integer + 10 + true + 4 + + + textfield + text + foo + true + 32 + + + clobfield + clob + true + + + booleanfield + boolean + + + booleanfield_true + boolean + true + + + booleanfield_false + boolean + false + + + + index_primary + true + true + + integerfield + ascending + + + + + index_boolean + false + + booleanfield + ascending + + + +
+
diff --git a/tests/lib/files/cache/cache.php b/tests/lib/files/cache/cache.php index 527c1d1b2a13c84092ab68175393dedb7b5f4698..247373a5cb9fd641b8e8e07a1f2f793650313bd7 100644 --- a/tests/lib/files/cache/cache.php +++ b/tests/lib/files/cache/cache.php @@ -127,6 +127,11 @@ class Cache extends \PHPUnit_Framework_TestCase { $this->assertEquals(1025, $this->cache->calculateFolderSize($file1)); + $this->cache->remove($file2); + $this->cache->remove($file3); + $this->cache->remove($file4); + $this->assertEquals(0, $this->cache->calculateFolderSize($file1)); + $this->cache->remove('folder'); $this->assertFalse($this->cache->inCache('folder/foo')); $this->assertFalse($this->cache->inCache('folder/bar')); diff --git a/tests/lib/files/cache/scanner.php b/tests/lib/files/cache/scanner.php index 263ceadccc7deeb0497e6fbb92860253b1d2fef7..f6deb93a49e1a37215878327bd7cd056b1078af4 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/storage/storage.php b/tests/lib/files/storage/storage.php index fbf502fbc1c41e5efb426ecfb57e60531db0e5e3..3f339a10016a29b716a9c49d24b702f84c35b7e8 100644 --- a/tests/lib/files/storage/storage.php +++ b/tests/lib/files/storage/storage.php @@ -176,68 +176,21 @@ abstract class Storage extends \PHPUnit_Framework_TestCase { $this->assertEquals(filesize($textFile), $this->instance->filesize('/lorem.txt')); $stat = $this->instance->stat('/lorem.txt'); - //only size and mtime are requered in the result + //only size and mtime are required in the result $this->assertEquals($stat['size'], $this->instance->filesize('/lorem.txt')); $this->assertEquals($stat['mtime'], $mTime); - $mtimeStart = time(); - $supportsTouch = $this->instance->touch('/lorem.txt'); - $mtimeEnd = time(); - if ($supportsTouch !== false) { + if ($this->instance->touch('/lorem.txt', 100) !== false) { $mTime = $this->instance->filemtime('/lorem.txt'); - $this->assertTrue(($mtimeStart - 5) <= $mTime); - $this->assertTrue($mTime <= ($mtimeEnd + 5)); - - $this->assertTrue($this->instance->hasUpdated('/lorem.txt', $mtimeStart - 5)); - - if ($this->instance->touch('/lorem.txt', 100) !== false) { - $mTime = $this->instance->filemtime('/lorem.txt'); - $this->assertEquals($mTime, 100); - } + $this->assertEquals($mTime, 100); } $mtimeStart = time(); - $fh = $this->instance->fopen('/lorem.txt', 'a'); - fwrite($fh, ' '); - fclose($fh); - clearstatcache(); - $mtimeEnd = time(); - $mTime = $this->instance->filemtime('/lorem.txt'); - $this->assertTrue(($mtimeStart - 5) <= $mTime); - $this->assertTrue($mTime <= ($mtimeEnd + 5)); $this->instance->unlink('/lorem.txt'); $this->assertTrue($this->instance->hasUpdated('/', $mtimeStart - 5)); } - public function testSearch() { - $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; - $this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile, 'r')); - $pngFile = \OC::$SERVERROOT . '/tests/data/logo-wide.png'; - $this->instance->file_put_contents('/logo-wide.png', file_get_contents($pngFile, 'r')); - $svgFile = \OC::$SERVERROOT . '/tests/data/logo-wide.svg'; - $this->instance->file_put_contents('/logo-wide.svg', file_get_contents($svgFile, 'r')); - $result = $this->instance->search('logo'); - $this->assertEquals(2, count($result)); - $this->assertContains('/logo-wide.svg', $result); - $this->assertContains('/logo-wide.png', $result); - } - - public function testSearchInSubFolder() { - $this->instance->mkdir('sub'); - $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; - $this->instance->file_put_contents('/sub/lorem.txt', file_get_contents($textFile, 'r')); - $pngFile = \OC::$SERVERROOT . '/tests/data/logo-wide.png'; - $this->instance->file_put_contents('/sub/logo-wide.png', file_get_contents($pngFile, 'r')); - $svgFile = \OC::$SERVERROOT . '/tests/data/logo-wide.svg'; - $this->instance->file_put_contents('/sub/logo-wide.svg', file_get_contents($svgFile, 'r')); - - $result = $this->instance->search('logo'); - $this->assertEquals(2, count($result)); - $this->assertContains('/sub/logo-wide.svg', $result); - $this->assertContains('/sub/logo-wide.png', $result); - } - public function testFOpen() { $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt'; diff --git a/tests/lib/files/utils/scanner.php b/tests/lib/files/utils/scanner.php new file mode 100644 index 0000000000000000000000000000000000000000..a021d215ae5f683e30d5021a66b6ce57703dd1f1 --- /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/image.php b/tests/lib/image.php new file mode 100644 index 0000000000000000000000000000000000000000..0583c300075b87c88faf0b42689bdefad27e91ed --- /dev/null +++ b/tests/lib/image.php @@ -0,0 +1,221 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Image extends PHPUnit_Framework_TestCase { + + public function testGetMimeTypeForFile() { + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals('image/png', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals('image/jpeg', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals('image/gif', $mimetype); + + $mimetype = \OC_Image::getMimeTypeForFile(null); + $this->assertEquals('', $mimetype); + } + + public function testConstructDestruct() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $imgcreate = imagecreatefromjpeg(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $img = new \OC_Image($imgcreate); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $base64 = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif')); + $img = new \OC_Image($base64); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + + $img = new \OC_Image(null); + $this->assertInstanceOf('\OC_Image', $img); + unset($img); + } + + public function testValid() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->valid()); + + $text = base64_encode("Lorem ipsum dolor sir amet …"); + $img = new \OC_Image($text); + $this->assertFalse($img->valid()); + + $img = new \OC_Image(null); + $this->assertFalse($img->valid()); + } + + public function testMimeType() { + $this->markTestSkipped("When loading from data or base64, imagetype is always image/png, see #4258."); + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals('image/png', $img->mimeType()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertEquals('image/jpeg', $img->mimeType()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $this->assertEquals('image/gif', $img->mimeType()); + + $img = new \OC_Image(null); + $this->assertEquals('', $img->mimeType()); + } + + public function testWidth() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals(128, $img->width()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertEquals(1680, $img->width()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $this->assertEquals(64, $img->width()); + + $img = new \OC_Image(null); + $this->assertEquals(-1, $img->width()); + } + + public function testHeight() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals(128, $img->height()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertEquals(1050, $img->height()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $this->assertEquals(64, $img->height()); + + $img = new \OC_Image(null); + $this->assertEquals(-1, $img->height()); + } + + public function testSave() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $img->resize(16); + $img->save(OC::$SERVERROOT.'/tests/data/testimage2.png'); + $this->assertEquals(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage2.png'), $img->data()); + } + + public function testData() { + $this->markTestSkipped("\OC_Image->data() converts to png before outputting data, see #4258."); + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertEquals($expected, $img->data()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg'); + $this->assertEquals($expected, $img->data()); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $expected = file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $this->assertEquals($expected, $img->data()); + } + + public function testToString() { + $this->markTestSkipped("\OC_Image->data() converts to png before outputting data, see #4258."); + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.png')); + $this->assertEquals($expected, (string)$img); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertEquals($expected, (string)$img); + + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.gif'); + $expected = base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif')); + $this->assertEquals($expected, (string)$img); + } + + public function testResize() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->resize(32)); + $this->assertEquals(32, $img->width()); + $this->assertEquals(32, $img->height()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertTrue($img->resize(840)); + $this->assertEquals(840, $img->width()); + $this->assertEquals(525, $img->height()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $this->assertTrue($img->resize(100)); + $this->assertEquals(100, $img->width()); + $this->assertEquals(100, $img->height()); + } + + public function testPreciseResize() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->preciseResize(128, 512)); + $this->assertEquals(128, $img->width()); + $this->assertEquals(512, $img->height()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertTrue($img->preciseResize(64, 840)); + $this->assertEquals(64, $img->width()); + $this->assertEquals(840, $img->height()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $this->assertTrue($img->preciseResize(1000, 1337)); + $this->assertEquals(1000, $img->width()); + $this->assertEquals(1337, $img->height()); + } + + public function testCenterCrop() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $img->centerCrop(); + $this->assertEquals(128, $img->width()); + $this->assertEquals(128, $img->height()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $img->centerCrop(); + $this->assertEquals(1050, $img->width()); + $this->assertEquals(1050, $img->height()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $img->centerCrop(512); + $this->assertEquals(512, $img->width()); + $this->assertEquals(512, $img->height()); + } + + public function testCrop() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->crop(0, 0, 50, 20)); + $this->assertEquals(50, $img->width()); + $this->assertEquals(20, $img->height()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertTrue($img->crop(500, 700, 550, 300)); + $this->assertEquals(550, $img->width()); + $this->assertEquals(300, $img->height()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $this->assertTrue($img->crop(10, 10, 15, 15)); + $this->assertEquals(15, $img->width()); + $this->assertEquals(15, $img->height()); + } + + public function testFitIn() { + $img = new \OC_Image(OC::$SERVERROOT.'/tests/data/testimage.png'); + $this->assertTrue($img->fitIn(200, 100)); + $this->assertEquals(100, $img->width()); + $this->assertEquals(100, $img->height()); + + $img = new \OC_Image(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.jpg')); + $this->assertTrue($img->fitIn(840, 840)); + $this->assertEquals(840, $img->width()); + $this->assertEquals(525, $img->height()); + + $img = new \OC_Image(base64_encode(file_get_contents(OC::$SERVERROOT.'/tests/data/testimage.gif'))); + $this->assertTrue($img->fitIn(200, 250)); + $this->assertEquals(200, $img->width()); + $this->assertEquals(200, $img->height()); + } +} diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php new file mode 100644 index 0000000000000000000000000000000000000000..12eac818f84c5c7520c122c122dd2a23343e2282 --- /dev/null +++ b/tests/lib/l10n.php @@ -0,0 +1,67 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_L10n extends PHPUnit_Framework_TestCase { + + public function testGermanPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/de.php'; + + $l->load($transFile); + $this->assertEquals('1 Datei', (string)$l->n('%n file', '%n files', 1)); + $this->assertEquals('2 Dateien', (string)$l->n('%n file', '%n files', 2)); + } + + public function testRussianPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/ru.php'; + + $l->load($transFile); + $this->assertEquals('1 файл', (string)$l->n('%n file', '%n files', 1)); + $this->assertEquals('2 файла', (string)$l->n('%n file', '%n files', 2)); + $this->assertEquals('6 файлов', (string)$l->n('%n file', '%n files', 6)); + $this->assertEquals('21 файл', (string)$l->n('%n file', '%n files', 21)); + $this->assertEquals('22 файла', (string)$l->n('%n file', '%n files', 22)); + $this->assertEquals('26 файлов', (string)$l->n('%n file', '%n files', 26)); + + /* + 1 file 1 файл 1 папка + 2-4 files 2-4 файла 2-4 папки + 5-20 files 5-20 файлов 5-20 папок + 21 files 21 файл 21 папка + 22-24 files 22-24 файла 22-24 папки + 25-30 files 25-30 файлов 25-30 папок + etc + 100 files 100 файлов, 100 папок + 1000 files 1000 файлов 1000 папок + */ + } + + public function testCzechPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/cs.php'; + + $l->load($transFile); + $this->assertEquals('1 okno', (string)$l->n('%n window', '%n windows', 1)); + $this->assertEquals('2 okna', (string)$l->n('%n window', '%n windows', 2)); + $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)); + } +} diff --git a/tests/lib/memcache/apc.php b/tests/lib/memcache/apc.php index 6b2a49470ba21d7391ae6920c2f83e33ff27222a..e5d753a4fa5e27381651fd1643238bc0eaacadd4 100644 --- a/tests/lib/memcache/apc.php +++ b/tests/lib/memcache/apc.php @@ -15,6 +15,10 @@ class APC extends Cache { $this->markTestSkipped('The apc extension is not available.'); return; } + if(\OC\Memcache\APCu::isAvailable()) { + $this->markTestSkipped('The apc extension is emulated by ACPu.'); + return; + } $this->instance=new \OC\Memcache\APC(uniqid()); } } diff --git a/tests/lib/memcache/apcu.php b/tests/lib/memcache/apcu.php new file mode 100644 index 0000000000000000000000000000000000000000..7b99e7cd5e0fcd95fe2d03ff22f2aeedf23b95a4 --- /dev/null +++ b/tests/lib/memcache/apcu.php @@ -0,0 +1,20 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +namespace Test\Memcache; + +class APCu extends Cache { + public function setUp() { + if(!\OC\Memcache\APCu::isAvailable()) { + $this->markTestSkipped('The APCu extension is not available.'); + return; + } + $this->instance=new \OC\Memcache\APCu(uniqid()); + } +} diff --git a/tests/lib/preferences.php b/tests/lib/preferences.php new file mode 100644 index 0000000000000000000000000000000000000000..612cc81926ba8e33302513f89b5dde73d42e2617 --- /dev/null +++ b/tests/lib/preferences.php @@ -0,0 +1,126 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_Preferences extends PHPUnit_Framework_TestCase { + public static function setUpBeforeClass() { + $query = \OC_DB::prepare('INSERT INTO `*PREFIX*preferences` VALUES(?, ?, ?, ?)'); + $query->execute(array("Someuser", "someapp", "somekey", "somevalue")); + + $query->execute(array("Someuser", "getusersapp", "somekey", "somevalue")); + $query->execute(array("Anotheruser", "getusersapp", "somekey", "someothervalue")); + $query->execute(array("Anuser", "getusersapp", "somekey", "somevalue")); + + $query->execute(array("Someuser", "getappsapp", "somekey", "somevalue")); + + $query->execute(array("Someuser", "getkeysapp", "firstkey", "somevalue")); + $query->execute(array("Someuser", "getkeysapp", "anotherkey", "somevalue")); + $query->execute(array("Someuser", "getkeysapp", "key-tastic", "somevalue")); + + $query->execute(array("Someuser", "getvalueapp", "key", "a value for a key")); + + $query->execute(array("Deleteuser", "deleteapp", "deletekey", "somevalue")); + $query->execute(array("Deleteuser", "deleteapp", "somekey", "somevalue")); + $query->execute(array("Deleteuser", "someapp", "somekey", "somevalue")); + } + + public static function tearDownAfterClass() { + $query = \OC_DB::prepare('DELETE FROM `*PREFIX*preferences` WHERE `userid` = ?'); + $query->execute(array('Someuser')); + $query->execute(array('Anotheruser')); + $query->execute(array('Anuser')); + } + + public function testGetUsers() { + $query = \OC_DB::prepare('SELECT DISTINCT `userid` FROM `*PREFIX*preferences`'); + $result = $query->execute(); + $expected = array(); + while ($row = $result->fetchRow()) { + $expected[] = $row['userid']; + } + + $this->assertEquals($expected, \OC_Preferences::getUsers()); + } + + public function testGetApps() { + $query = \OC_DB::prepare('SELECT DISTINCT `appid` FROM `*PREFIX*preferences` WHERE `userid` = ?'); + $result = $query->execute(array('Someuser')); + $expected = array(); + while ($row = $result->fetchRow()) { + $expected[] = $row['appid']; + } + + $this->assertEquals($expected, \OC_Preferences::getApps('Someuser')); + } + + public function testGetKeys() { + $query = \OC_DB::prepare('SELECT DISTINCT `configkey` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?'); + $result = $query->execute(array('Someuser', 'getkeysapp')); + $expected = array(); + while ($row = $result->fetchRow()) { + $expected[] = $row['configkey']; + } + + $this->assertEquals($expected, \OC_Preferences::getKeys('Someuser', 'getkeysapp')); + } + + public function testGetValue() { + $this->assertNull(\OC_Preferences::getValue('nonexistant', 'nonexistant', 'nonexistant')); + + $this->assertEquals('default', \OC_Preferences::getValue('nonexistant', 'nonexistant', 'nonexistant', 'default')); + + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Someuser', 'getvalueapp', 'key')); + $row = $result->fetchRow(); + $expected = $row['configvalue']; + $this->assertEquals($expected, \OC_Preferences::getValue('Someuser', 'getvalueapp', 'key')); + } + + public function testSetValue() { + $this->assertTrue(\OC_Preferences::setValue('Someuser', 'setvalueapp', 'newkey', 'newvalue')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Someuser', 'setvalueapp', 'newkey')); + $row = $result->fetchRow(); + $value = $row['configvalue']; + $this->assertEquals('newvalue', $value); + + $this->assertTrue(\OC_Preferences::setValue('Someuser', 'setvalueapp', 'newkey', 'othervalue')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Someuser', 'setvalueapp', 'newkey')); + $row = $result->fetchRow(); + $value = $row['configvalue']; + $this->assertEquals('othervalue', $value); + } + + public function testDeleteKey() { + $this->assertTrue(\OC_Preferences::deleteKey('Deleteuser', 'deleteapp', 'deletekey')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ? AND `configkey` = ?'); + $result = $query->execute(array('Deleteuser', 'deleteapp', 'deletekey')); + $this->assertEquals(0, $result->numRows()); + } + + public function testDeleteApp() { + $this->assertTrue(\OC_Preferences::deleteApp('Deleteuser', 'deleteapp')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ? AND `appid` = ?'); + $result = $query->execute(array('Deleteuser', 'deleteapp')); + $this->assertEquals(0, $result->numRows()); + } + + public function testDeleteUser() { + $this->assertTrue(\OC_Preferences::deleteUser('Deleteuser')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `userid` = ?'); + $result = $query->execute(array('Deleteuser')); + $this->assertEquals(0, $result->numRows()); + } + + public function testDeleteAppFromAllUsers() { + $this->assertTrue(\OC_Preferences::deleteAppFromAllUsers('someapp')); + $query = \OC_DB::prepare('SELECT `configvalue` FROM `*PREFIX*preferences` WHERE `appid` = ?'); + $result = $query->execute(array('someapp')); + $this->assertEquals(0, $result->numRows()); + } +} diff --git a/tests/lib/util.php b/tests/lib/util.php index 9742d57ac7a9ba57d7783966d1b50bdece147908..13aa49c8c6f606164a657e08ad1664e4c588bd82 100644 --- a/tests/lib/util.php +++ b/tests/lib/util.php @@ -7,13 +7,27 @@ */ class Test_Util extends PHPUnit_Framework_TestCase { + public function testGetVersion() { + $version = \OC_Util::getVersion(); + $this->assertTrue(is_array($version)); + foreach ($version as $num) { + $this->assertTrue(is_int($num)); + } + } - // Constructor - function Test_Util() { - date_default_timezone_set("UTC"); + public function testGetVersionString() { + $version = \OC_Util::getVersionString(); + $this->assertTrue(is_string($version)); + } + + public function testGetEditionString() { + $edition = \OC_Util::getEditionString(); + $this->assertTrue(is_string($edition)); } function testFormatDate() { + date_default_timezone_set("UTC"); + $result = OC_Util::formatDate(1350129205); $expected = 'October 13, 2012 11:53'; $this->assertEquals($expected, $result); @@ -44,6 +58,19 @@ class Test_Util extends PHPUnit_Framework_TestCase { $this->assertEquals("/%C2%A7%23%40test%25%26%5E%C3%A4/-child", $result); } + public function testFileInfoLoaded() { + $expected = function_exists('finfo_open'); + $this->assertEquals($expected, \OC_Util::fileInfoLoaded()); + } + + public function testIsInternetConnectionEnabled() { + \OC_Config::setValue("has_internet_connection", false); + $this->assertFalse(\OC_Util::isInternetConnectionEnabled()); + + \OC_Config::setValue("has_internet_connection", true); + $this->assertTrue(\OC_Util::isInternetConnectionEnabled()); + } + function testGenerate_random_bytes() { $result = strlen(OC_Util::generate_random_bytes(59)); $this->assertEquals(59, $result); @@ -61,8 +88,28 @@ class Test_Util extends PHPUnit_Framework_TestCase { OC_Config::deleteKey('mail_domain'); } - function testGetInstanceIdGeneratesValidId() { - OC_Config::deleteKey('instanceid'); - $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); - } + function testGetInstanceIdGeneratesValidId() { + OC_Config::deleteKey('instanceid'); + $this->assertStringStartsWith('oc', OC_Util::getInstanceId()); + } + + /** + * @dataProvider baseNameProvider + */ + public function testBaseName($expected, $file) + { + $base = \OC_Util::basename($file); + $this->assertEquals($expected, $base); + } + + public function baseNameProvider() + { + return array( + array('public_html', '/home/user/public_html/'), + array('public_html', '/home/user/public_html'), + array('', '/'), + array('public_html', 'public_html'), + array('442aa682de2a64db1e010f50e60fd9c9', 'local::C:\Users\ADMINI~1\AppData\Local\Temp\2/442aa682de2a64db1e010f50e60fd9c9/') + ); + } } diff --git a/tests/phpunit-autotest.xml b/tests/phpunit-autotest.xml index 23b2d6c0060f293df7de59ce17f587d7182c2324..a893e96ad9722525ac382b3b13c514d8f94e2433 100644 --- a/tests/phpunit-autotest.xml +++ b/tests/phpunit-autotest.xml @@ -1,6 +1,7 @@